OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "core/fpdfapi/font/font_int.h" | 7 #include "core/fpdfapi/font/font_int.h" |
8 | 8 |
9 #include "core/fpdfapi/cmaps/cmap_int.h" | 9 #include "core/fpdfapi/cmaps/cmap_int.h" |
10 #include "core/fpdfapi/cpdf_modulemgr.h" | 10 #include "core/fpdfapi/cpdf_modulemgr.h" |
11 #include "core/fpdfapi/font/ttgsubtable.h" | 11 #include "core/fpdfapi/font/ttgsubtable.h" |
12 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" | |
13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 12 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
14 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 13 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" |
15 #include "core/fpdfapi/fpdf_parser/cpdf_simple_parser.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_simple_parser.h" |
| 15 #include "core/fpdfapi/page/cpdf_pagemodule.h" |
16 #include "core/fxcrt/fx_ext.h" | 16 #include "core/fxcrt/fx_ext.h" |
17 #include "core/fxge/fx_freetype.h" | 17 #include "core/fxge/fx_freetype.h" |
18 | 18 |
19 namespace { | 19 namespace { |
20 | 20 |
21 const FX_CHAR* const g_CharsetNames[CIDSET_NUM_SETS] = { | 21 const FX_CHAR* const g_CharsetNames[CIDSET_NUM_SETS] = { |
22 nullptr, "GB1", "CNS1", "Japan1", "Korea1", "UCS"}; | 22 nullptr, "GB1", "CNS1", "Japan1", "Korea1", "UCS"}; |
23 | 23 |
24 class CPDF_PredefinedCMap { | 24 class CPDF_PredefinedCMap { |
25 public: | 25 public: |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 m_EmbeddedCount = pFontGlobals->m_EmbeddedToUnicodes[charset].m_Count; | 774 m_EmbeddedCount = pFontGlobals->m_EmbeddedToUnicodes[charset].m_Count; |
775 } | 775 } |
776 | 776 |
777 CIDSet CharsetFromOrdering(const CFX_ByteStringC& ordering) { | 777 CIDSet CharsetFromOrdering(const CFX_ByteStringC& ordering) { |
778 for (size_t charset = 1; charset < FX_ArraySize(g_CharsetNames); ++charset) { | 778 for (size_t charset = 1; charset < FX_ArraySize(g_CharsetNames); ++charset) { |
779 if (ordering == g_CharsetNames[charset]) | 779 if (ordering == g_CharsetNames[charset]) |
780 return CIDSetFromSizeT(charset); | 780 return CIDSetFromSizeT(charset); |
781 } | 781 } |
782 return CIDSET_UNKNOWN; | 782 return CIDSET_UNKNOWN; |
783 } | 783 } |
OLD | NEW |