Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp

Issue 1776913007: Split fpdf_parser_objects.cpp into per-class .cpp/.h files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Address comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | core/src/fpdfapi/fpdf_page/fpdf_page.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/src/fpdfapi/fpdf_font/font_int.h" 7 #include "core/src/fpdfapi/fpdf_font/font_int.h"
8 8
9 #include "core/include/fpdfapi/cpdf_array.h"
10 #include "core/include/fpdfapi/cpdf_dictionary.h"
9 #include "core/include/fpdfapi/cpdf_simple_parser.h" 11 #include "core/include/fpdfapi/cpdf_simple_parser.h"
10 #include "core/include/fpdfapi/fpdf_module.h" 12 #include "core/include/fpdfapi/fpdf_module.h"
11 #include "core/include/fpdfapi/fpdf_page.h" 13 #include "core/include/fpdfapi/fpdf_page.h"
12 #include "core/include/fpdfapi/fpdf_resource.h" 14 #include "core/include/fpdfapi/fpdf_resource.h"
13 #include "core/include/fxcrt/fx_ext.h" 15 #include "core/include/fxcrt/fx_ext.h"
14 #include "core/include/fxge/fx_freetype.h" 16 #include "core/include/fxge/fx_freetype.h"
15 #include "core/include/fxge/fx_ge.h" 17 #include "core/include/fxge/fx_ge.h"
16 #include "core/src/fpdfapi/fpdf_cmaps/cmap_int.h" 18 #include "core/src/fpdfapi/fpdf_cmaps/cmap_int.h"
17 #include "core/src/fpdfapi/fpdf_font/ttgsubtable.h" 19 #include "core/src/fpdfapi/fpdf_font/ttgsubtable.h"
18 20
(...skipping 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after
1743 1745
1744 const uint8_t* CPDF_CIDFont::GetCIDTransform(FX_WORD CID) const { 1746 const uint8_t* CPDF_CIDFont::GetCIDTransform(FX_WORD CID) const {
1745 if (m_Charset != CIDSET_JAPAN1 || m_pFontFile) 1747 if (m_Charset != CIDSET_JAPAN1 || m_pFontFile)
1746 return nullptr; 1748 return nullptr;
1747 1749
1748 const struct CIDTransform* found = (const struct CIDTransform*)FXSYS_bsearch( 1750 const struct CIDTransform* found = (const struct CIDTransform*)FXSYS_bsearch(
1749 &CID, g_Japan1_VertCIDs, FX_ArraySize(g_Japan1_VertCIDs), 1751 &CID, g_Japan1_VertCIDs, FX_ArraySize(g_Japan1_VertCIDs),
1750 sizeof(g_Japan1_VertCIDs[0]), CompareCIDTransform); 1752 sizeof(g_Japan1_VertCIDs[0]), CompareCIDTransform);
1751 return found ? &found->a : nullptr; 1753 return found ? &found->a : nullptr;
1752 } 1754 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | core/src/fpdfapi/fpdf_page/fpdf_page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698