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

Side by Side Diff: core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp

Issue 1868533002: Move core/include/fxge to core/fxge/include. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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/fpdfapi/fpdf_font/cpdf_font.cpp ('k') | core/fpdfapi/fpdf_font/cpdf_simplefont.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/fpdf_font/include/cpdf_fontencoding.h" 7 #include "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h"
8 8
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
13 #include "core/include/fxge/fx_freetype.h"
14 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h" 13 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h"
14 #include "core/fxge/include/fx_freetype.h"
15 15
16 namespace { 16 namespace {
17 17
18 const uint16_t MSSymbolEncoding[256] = { 18 const uint16_t MSSymbolEncoding[256] = {
19 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 19 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
20 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 20 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
21 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 21 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
22 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 32, 33, 8704, 35, 22 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 32, 33, 8704, 35,
23 8707, 37, 38, 8715, 40, 41, 8727, 43, 44, 23 8707, 37, 38, 8715, 40, 41, 8727, 43, 44,
24 8722, 46, 47, 48, 49, 50, 51, 52, 53, 24 8722, 46, 47, 48, 49, 50, 51, 52, 53,
(...skipping 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after
1806 return MacExpertEncoding[(uint8_t)charcode]; 1806 return MacExpertEncoding[(uint8_t)charcode];
1807 case FXFT_ENCODING_ADOBE_LATIN_1: 1807 case FXFT_ENCODING_ADOBE_LATIN_1:
1808 return AdobeWinAnsiEncoding[(uint8_t)charcode]; 1808 return AdobeWinAnsiEncoding[(uint8_t)charcode];
1809 case FXFT_ENCODING_APPLE_ROMAN: 1809 case FXFT_ENCODING_APPLE_ROMAN:
1810 return MacRomanEncoding[(uint8_t)charcode]; 1810 return MacRomanEncoding[(uint8_t)charcode];
1811 case PDFFONT_ENCODING_PDFDOC: 1811 case PDFFONT_ENCODING_PDFDOC:
1812 return PDFDocEncoding[(uint8_t)charcode]; 1812 return PDFDocEncoding[(uint8_t)charcode];
1813 } 1813 }
1814 return 0; 1814 return 0;
1815 } 1815 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_font/cpdf_font.cpp ('k') | core/fpdfapi/fpdf_font/cpdf_simplefont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698