/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);
|
/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/fonttools/Lib/fontTools/ |
unicode.py | 24 def __getitem__(self, charCode): 26 return self.codes[charCode] 32 def __getitem__(self, charCode): 35 return unicodedata.name(unichr(charCode))
|
/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/v8/test/mjsunit/ |
string-case.js | 38 function charCodeToLower(charCode) { 39 if (A_CODE <= charCode && charCode <= Z_CODE) { 40 return charCode + a_CODE - A_CODE; 42 return charCode; 45 function charCodeToUpper(charCode) { 46 if (a_CODE <= charCode && charCode <= z_CODE) { 47 return charCode - (a_CODE - A_CODE); 49 return charCode; [all...] |
/external/chromium-trace/catapult/third_party/vinn/vinn/ |
base64_compat.js | 28 var block, charCode, idx = 0, map = chars, output = ''; 35 charCode = str.charCodeAt(idx += 3 / 4); 36 if (charCode > 0xFF) { 41 block = block << 8 | charCode;
|
/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/freetype/src/sfnt/ |
ttcmap.c | 139 FT_UInt32 charcode = *pchar_code; local 145 while ( ++charcode < 256 ) 147 gindex = table[charcode]; 150 result = charcode; 212 /***** assume that the value "charcode" correspond to following: *****/ 214 /***** - For one byte characters, "charcode" is simply the *****/ 217 /***** - For two byte characters, "charcode" is the 2-byte *****/ 220 /***** (charcode >> 8) is the first byte value *****/ 221 /***** (charcode & 0xFF) is the second byte value *****/ 223 /***** Note that not all values of "charcode" are valid according ***** 489 FT_UInt32 charcode = *pcharcode + 1; local 757 FT_UInt charcode; local 1032 FT_UInt32 charcode = *pcharcode; local 1121 FT_UInt charcode = (FT_UInt)*pcharcode; local [all...] |
/external/skia/src/fonts/ |
SkTestScalerContext.cpp | 50 int SkTestFont::codeToIndex(SkUnichar charCode) const { 54 if (charCode >= ' ' && charCode <= '~') { 55 int bitOffset = charCode - ' '; 59 while (fDebugOverage[index] != 0 && fDebugOverage[index] != charCode 65 fDebugOverage[index] = charCode; 71 if (fCharCodes[index] == (unsigned) charCode) { 75 SkDEBUGF(("missing '%c' (%d) from %s %d\n", (char) charCode, charCode,
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
rhino-python.prog | 18 var charCode, data=[]; 19 while ((charCode = isr.read()) >= 0) { 20 data.push(String.fromCharCode(charCode));
|
/external/freetype/src/autofit/ |
hbshim.h | 45 FT_ULong charcode,
|
/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...] |
/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/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/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/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/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);
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/ |
BIG5Tool.java | 190 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " 207 charList.add(new Integer(c.charCode)); 236 int charCode; 240 charCode = c; 244 // Equals needs to work with a map, with the charCode as the key. 248 return o.charCode == this.charCode; 254 return charCode;
|
EUCTool.java | 190 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " 207 charList.add(new Integer(c.charCode)); 236 int charCode; 240 charCode = c; 244 // Equals needs to work with a map, with the charCode as the key. 248 return o.charCode == this.charCode; 254 return charCode;
|
/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...] |