| 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 "../../../include/fpdfapi/fpdf_page.h" | 7 #include "../../../include/fpdfapi/fpdf_page.h" |
| 8 #include "../../../include/fpdfapi/fpdf_parser.h" | 8 #include "../../../include/fpdfapi/fpdf_parser.h" |
| 9 #include "../../../include/fpdfapi/fpdf_resource.h" | 9 #include "../../../include/fpdfapi/fpdf_resource.h" |
| 10 #include "../../../include/fxge/fx_freetype.h" | 10 #include "../../../include/fxge/fx_freetype.h" |
| (...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1771 } | 1771 } |
| 1772 FX_DWORD PDF_PredefinedCharCodeFromUnicode(int encoding, FX_WCHAR unicode) { | 1772 FX_DWORD PDF_PredefinedCharCodeFromUnicode(int encoding, FX_WCHAR unicode) { |
| 1773 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode); | 1773 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode); |
| 1774 } | 1774 } |
| 1775 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) { | 1775 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) { |
| 1776 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF); | 1776 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF); |
| 1777 } | 1777 } |
| 1778 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) { | 1778 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) { |
| 1779 char glyph_name[64]; | 1779 char glyph_name[64]; |
| 1780 FXFT_adobe_name_from_unicode(glyph_name, unicode); | 1780 FXFT_adobe_name_from_unicode(glyph_name, unicode); |
| 1781 return CFX_ByteString(glyph_name, -1); | 1781 return CFX_ByteString(glyph_name); |
| 1782 } | 1782 } |
| OLD | NEW |