HomeSort by relevance Sort by last modified time
    Searched refs:charcode (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font.cpp 128 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const {
130 int len = AppendChar(buf, charcode);
137 CFX_WideString CPDF_Font::UnicodeFromCharCode(FX_DWORD charcode) const {
142 CFX_WideString wsRet = m_pToUnicodeMap->Lookup(charcode);
147 FX_WCHAR unicode = _UnicodeFromCharCode(charcode);
158 FX_DWORD charcode = m_pToUnicodeMap->ReverseLookup(unicode); local
159 if (charcode) {
160 return charcode;
172 FX_DWORD charcode = GetNextChar(src_buf, src_len, src_pos); local
173 CFX_WideString unicode = UnicodeFromCharCode(charcode);
189 FX_DWORD charcode = CharCodeFromUnicode(src_buf[src_pos]); local
338 FX_DWORD charcode = GetNextChar(pString, size, offset); local
1436 int charcode = 0; local
    [all...]
fpdf_font_cid.cpp 237 int GetCharSizeImpl(FX_DWORD charcode,
245 codes[2] = (uint8_t)(charcode >> 8 & 0xFF);
246 codes[3] = (uint8_t)charcode;
303 FX_DWORD CharCode = FPDFAPI_CharCodeFromCID(pEmbedMap, i);
304 if (CharCode != 0) {
305 return CharCode;
315 FX_DWORD charcode) {
319 FX_WORD cid = FPDFAPI_CIDFromCharCode(pEmbedMap, charcode);
844 FX_WORD CPDF_CMap::CIDFromCharCode(FX_DWORD charcode) const {
846 return (FX_WORD)charcode;
906 FX_DWORD charcode = 0; local
    [all...]
font_int.h 131 FX_WORD CIDFromCharCode(FX_DWORD charcode) const;
133 int GetCharSize(FX_DWORD charcode) const;
136 int AppendChar(FX_CHAR* str, FX_DWORD charcode) const;
195 CFX_WideString Lookup(FX_DWORD charcode);
fpdf_font_charset.cpp     [all...]
  /external/v8/test/webkit/fast/js/kde/
encode_decode_uri.js 79 for (var charcode = 1; charcode < 0xD7FF; charcode += resolution)
80 checkEncodeDecode(encodeFunction, decodeFunction, charcode);
82 for (var charcode = 0xE001; charcode < 0xFFFD; charcode += resolution)
83 checkEncodeDecode(encodeFunction, decodeFunction, charcode);
85 for (var charcode = 0xDC01; charcode < 0xDFFF; charcode += resolution
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 46 uint8_t charcode);
48 FX_WCHAR FT_UnicodeFromCharCode(int encoding, FX_DWORD charcode);
53 int charcode);
165 void AppendChar(CFX_ByteString& str, FX_DWORD charcode) const;
167 virtual int AppendChar(FX_CHAR* buf, FX_DWORD charcode) const {
168 *buf = (FX_CHAR)charcode;
172 virtual int GetCharSize(FX_DWORD charcode) const { return 1; }
174 virtual int GlyphFromCharCode(FX_DWORD charcode,
176 virtual int GlyphFromCharCodeExt(FX_DWORD charcode) {
177 return GlyphFromCharCode(charcode);
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
hbshim.h 45 FT_ULong charcode,
afglobal.c 187 FT_ULong charcode = range->first; local
191 gindex = FT_Get_Char_Index( face, charcode );
200 charcode = FT_Get_Next_Char( face, charcode, &gindex );
202 if ( gindex == 0 || charcode > range->last )
216 FT_ULong charcode = range->first; local
220 gindex = FT_Get_Char_Index( face, charcode );
229 charcode = FT_Get_Next_Char( face, charcode, &gindex );
231 if ( gindex == 0 || charcode > range->last
    [all...]
hbshim.c 423 FT_ULong charcode,
437 in_idx = FT_Get_Char_Index( metrics->globals->face, charcode );
450 uint32_t c = (uint32_t)charcode;
524 FT_ULong charcode,
536 *codepoint = FT_Get_Char_Index( face, charcode );
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
cmap_int.h 29 FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode);
fpdf_cmaps.cpp 81 FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode) {
82 if (charcode >> 16) {
86 (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap,
89 return found[3] + (FX_WORD)charcode - found[1];
93 (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap,
106 FX_WORD code = (FX_WORD)charcode;
  /external/freetype/src/autofit/
afglobal.c 188 FT_ULong charcode = range->first; local
192 gindex = FT_Get_Char_Index( face, charcode );
201 charcode = FT_Get_Next_Char( face, charcode, &gindex );
203 if ( gindex == 0 || charcode > range->last )
217 FT_ULong charcode = range->first; local
221 gindex = FT_Get_Char_Index( face, charcode );
230 charcode = FT_Get_Next_Char( face, charcode, &gindex );
232 if ( gindex == 0 || charcode > range->last
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 146 FT_UInt32 charcode = *pchar_code; local
152 while ( ++charcode < 256 )
154 gindex = table[charcode];
157 result = charcode;
219 /***** assume that the value `charcode' fulfills the following. *****/
221 /***** - For one byte characters, `charcode' is simply the *****/
224 /***** - For two byte characters, `charcode' is the 2-byte *****/
227 /***** (charcode >> 8) is the first byte value *****/
228 /***** (charcode & 0xFF) is the second byte value *****/
230 /***** Note that not all values of `charcode' are valid according *****
498 FT_UInt32 charcode = *pcharcode + 1; local
769 FT_UInt charcode; local
1072 FT_UInt32 charcode = *pcharcode; local
1206 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/pdfium/third_party/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttcmap.c 146 FT_UInt32 charcode = *pchar_code; local
152 while ( ++charcode < 256 )
154 gindex = table[charcode];
157 result = charcode;
219 /***** assume that the value `charcode' fulfills the following. *****/
221 /***** - For one byte characters, `charcode' is simply the *****/
224 /***** - For two byte characters, `charcode' is the 2-byte *****/
227 /***** (charcode >> 8) is the first byte value *****/
228 /***** (charcode & 0xFF) is the second byte value *****/
230 /***** Note that not all values of `charcode' are valid according *****
498 FT_UInt32 charcode = *pcharcode + 1; local
766 FT_UInt charcode; local
1045 FT_UInt32 charcode = *pcharcode; local
1176 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.c 146 FT_UInt32 charcode = *pchar_code; local
152 while ( ++charcode < 256 )
154 gindex = table[charcode];
157 result = charcode;
219 /***** assume that the value `charcode' fulfills the following. *****/
221 /***** - For one byte characters, `charcode' is simply the *****/
224 /***** - For two byte characters, `charcode' is the 2-byte *****/
227 /***** (charcode >> 8) is the first byte value *****/
228 /***** (charcode & 0xFF) is the second byte value *****/
230 /***** Note that not all values of `charcode' are valid according *****
498 FT_UInt32 charcode = *pcharcode + 1; local
766 FT_UInt charcode; local
1045 FT_UInt32 charcode = *pcharcode; local
1176 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pcf/
pcfdrivr.c 103 FT_UInt32 charcode )
122 if ( charcode == code )
128 if ( charcode < code )
145 FT_ULong charcode = *acharcode + 1; local
160 if ( charcode == code )
166 if ( charcode < code )
172 charcode = 0;
175 charcode = (FT_ULong)encodings[min].enc;
180 if ( charcode > 0xFFFFFFFFUL )
182 FT_TRACE1(( "pcf_cmap_char_next: charcode 0x%x > 32bit API" ))
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 144 FX_DWORD& charcode,
147 charcode = (FX_DWORD)(uintptr_t)m_pCharCodes;
155 charcode = m_pCharCodes[i];
175 FX_DWORD charcode = m_pCharCodes[i]; local
176 if (charcode == (FX_DWORD)-1) {
315 FX_FLOAT CPDF_TextObject::GetCharWidth(FX_DWORD charcode) const {
324 return pFont->GetCharWidthF(charcode, 0) * fontsize;
326 FX_WORD CID = pCIDFont->CIDFromCharCode(charcode);
332 FX_DWORD charCode = m_TextState.GetFont()->CharCodeFromUnicode(32);
333 if (charCode != (FX_DWORD)-1)
359 FX_DWORD charcode = local
410 FX_DWORD charcode = local
538 FX_DWORD charcode = local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type42/
t42objs.c 101 FT_Int charcode, idx, min_char, max_char; local
114 charcode = 0;
115 for ( ; charcode < loader.encoding_table.max_elems; charcode++ )
120 type1->encoding.char_index[charcode] = 0;
121 type1->encoding.char_name [charcode] = (char *)".notdef";
123 char_name = loader.encoding_table.elements[charcode];
131 type1->encoding.char_index[charcode] = (FT_UShort)idx;
132 type1->encoding.char_name [charcode] = (char*)glyph_name;
139 if ( charcode < min_char
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
bdfdrivr.c 92 FT_UInt32 charcode )
111 if ( charcode == code )
119 if ( charcode < code )
137 FT_ULong charcode = *acharcode + 1; local
151 if ( charcode == code )
159 if ( charcode < code )
165 charcode = 0;
168 charcode = (FT_ULong)encodings[min].enc;
173 if ( charcode > 0xFFFFFFFFUL )
175 FT_TRACE1(( "bdf_cmap_char_next: charcode 0x%x > 32bit API" ))
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 20 CFX_GlyphBitmap* CPDF_Type3Cache::LoadGlyph(FX_DWORD charcode,
37 auto it2 = pSizeCache->m_GlyphMap.find(charcode);
42 RenderGlyph(pSizeCache, charcode, pMatrix, retinaScaleX, retinaScaleY);
43 pSizeCache->m_GlyphMap[charcode] = pGlyphBitmap;
122 FX_DWORD charcode,
126 const CPDF_Type3Char* pChar = m_pFont->LoadChar(charcode);
381 FX_DWORD charcode = pChars[iChar]; local
382 if (charcode == (FX_DWORD)-1) {
385 CPDF_Type3Char* pType3Char = pType3Font->LoadChar(charcode);
454 CFX_GlyphBitmap* pBitmap = pCache->LoadGlyph(charcode, &matrix, sa, sd)
642 FX_DWORD charcode; local
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_font.cpp 465 FX_DWORD CFX_UnicodeEncoding::GlyphFromCharCode(FX_DWORD charcode) {
468 return charcode;
471 return FXFT_Get_Char_Index(face, charcode);
476 index = FXFT_Get_Char_Index(face, charcode);
478 return FXFT_Get_Char_Index(face, charcode);
480 return charcode;
492 FX_DWORD CFX_UnicodeEncodingEx::GlyphFromCharCode(FX_DWORD charcode) {
494 FT_UInt nIndex = FXFT_Get_Char_Index(face, charcode);
510 nIndex = FXFT_Get_Char_Index(face, charcode);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 1364 long charcode = 0; local
    [all...]

Completed in 729 milliseconds

1 2 3