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

1 2 3

  /external/chromium_org/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/src/fpdfapi/fpdf_font/
fpdf_font.cpp 164 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const
167 int len = AppendChar(buf, charcode);
174 CFX_WideString CPDF_Font::UnicodeFromCharCode(FX_DWORD charcode) const
180 CFX_WideString wsRet = m_pToUnicodeMap->Lookup(charcode);
185 FX_WCHAR unicode = _UnicodeFromCharCode(charcode);
197 FX_DWORD charcode = m_pToUnicodeMap->ReverseLookup(unicode); local
198 if (charcode) {
199 return charcode;
212 FX_DWORD charcode = GetNextChar(src_buf, src_pos); local
213 CFX_WideString unicode = UnicodeFromCharCode(charcode);
230 FX_DWORD charcode = CharCodeFromUnicode(src_buf[src_pos]); local
378 FX_DWORD charcode = GetNextChar(pString, offset); local
1467 int charcode = 0; local
    [all...]
fpdf_font_cid.cpp 19 extern FX_LPCSTR GetAdobeCharName(int iBaseEncoding, const CFX_ByteString* pCharNames, int charcode);
383 extern FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode);
514 FX_WORD CPDF_CMap::CIDFromCharCode(FX_DWORD charcode) const
517 return (FX_WORD)charcode;
520 return FPDFAPI_CIDFromCharCode(m_pEmbedMap, charcode);
523 return (FX_WORD)charcode;
525 if (charcode >> 16) {
527 void* found = FXSYS_bsearch(&charcode, m_pAddMapping + 4, *(FX_DWORD*)m_pAddMapping, 8, compareCID);
530 return m_pUseMap->CIDFromCharCode(charcode);
534 return (FX_WORD)(((FX_DWORD*)found)[1] % 65536 + charcode - * (FX_DWORD*)found);
603 FX_DWORD charcode = 0; local
    [all...]
font_int.h 98 FX_WORD CIDFromCharCode(FX_DWORD charcode) const;
100 int GetCharSize(FX_DWORD charcode) const;
103 int AppendChar(FX_LPSTR str, FX_DWORD charcode) const;
189 CFX_WideString Lookup(FX_DWORD charcode);
fpdf_font_charset.cpp     [all...]
  /external/pdfium/core/src/fxge/ge/
text_int.h 51 virtual FX_DWORD GlyphFromCharCodeEx(FX_DWORD charcode, int encoding = ENCODING_UNICODE);
54 virtual FX_DWORD GlyphFromCharCode(FX_DWORD charcode);
55 virtual CFX_WideString UnicodeFromCharCode(FX_DWORD charcode) const
57 return CFX_WideString((FX_WCHAR)charcode);
fx_ge_font.cpp 412 FX_DWORD CFX_UnicodeEncoding::GlyphFromCharCode(FX_DWORD charcode)
416 return charcode;
419 return FXFT_Get_Char_Index(face, charcode);
424 index = FXFT_Get_Char_Index(face, charcode);
427 return FXFT_Get_Char_Index(face, charcode);
430 return charcode;
432 FX_DWORD CFX_UnicodeEncoding::GlyphFromCharCodeEx(FX_DWORD charcode, int encoding)
436 return charcode;
439 return GlyphFromCharCode(charcode);
451 return FXFT_Get_Char_Index(face, charcode);
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 157 void AppendChar(CFX_ByteString& str, FX_DWORD charcode) const;
159 virtual int AppendChar(FX_LPSTR buf, FX_DWORD charcode) const
161 *buf = (FX_CHAR)charcode;
165 virtual int GetCharSize(FX_DWORD charcode) const
173 virtual int GlyphFromCharCode(FX_DWORD charcode, FX_BOOL *pVertGlyph = NULL) = 0;
174 virtual int GlyphFromCharCodeExt(FX_DWORD charcode)
176 return GlyphFromCharCode(charcode);
179 CFX_WideString UnicodeFromCharCode(FX_DWORD charcode) const;
222 virtual int GetCharWidthF(FX_DWORD charcode, int level = 0) = 0;
224 virtual int GetCharTypeWidth(FX_DWORD charcode);
    [all...]
  /external/freetype/src/autofit/
hbshim.h 45 FT_ULong charcode,
hbshim.c 422 FT_ULong charcode,
436 in_idx = FT_Get_Char_Index( metrics->globals->face, charcode );
449 uint32_t c = (uint32_t)charcode;
523 FT_ULong charcode,
535 *codepoint = FT_Get_Char_Index( face, 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 )
  /external/chromium_org/third_party/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
fpdf_cmaps.cpp 79 FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode)
81 if (charcode >> 16) {
84 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 8, compareDWordRange);
86 return found[3] + (FX_WORD)charcode - found[1];
89 FX_WORD* found = (FX_WORD*)FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 6, compareDWordSingle);
101 FX_WORD code = (FX_WORD)charcode;
  /external/chromium_org/third_party/freetype/src/sfnt/
ttcmap.c 133 FT_UInt32 charcode = *pchar_code; local
139 while ( ++charcode < 256 )
141 gindex = table[charcode];
144 result = charcode;
206 /***** assume that the value "charcode" correspond to following: *****/
208 /***** - For one byte characters, "charcode" is simply the *****/
211 /***** - For two byte characters, "charcode" is the 2-byte *****/
214 /***** (charcode >> 8) is the first byte value *****/
215 /***** (charcode & 0xFF) is the second byte value *****/
217 /***** Note that not all values of "charcode" are valid according *****
474 FT_UInt32 charcode = *pcharcode + 1; local
742 FT_UInt charcode; local
1010 FT_UInt32 charcode = *pcharcode; local
1099 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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttcmap.c 133 FT_UInt32 charcode = *pchar_code; local
139 while ( ++charcode < 256 )
141 gindex = table[charcode];
144 result = charcode;
206 /***** assume that the value "charcode" correspond to following: *****/
208 /***** - For one byte characters, "charcode" is simply the *****/
211 /***** - For two byte characters, "charcode" is the 2-byte *****/
214 /***** (charcode >> 8) is the first byte value *****/
215 /***** (charcode & 0xFF) is the second byte value *****/
217 /***** Note that not all values of "charcode" are valid according *****
474 FT_UInt32 charcode = *pcharcode + 1; local
742 FT_UInt charcode; local
1010 FT_UInt32 charcode = *pcharcode; local
1099 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.c 98 FT_ULong charcode = range->first; local
102 gindex = FT_Get_Char_Index( face, charcode );
111 charcode = FT_Get_Next_Char( face, charcode, &gindex );
113 if ( gindex == 0 || charcode > range->last )
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 151 void CPDF_TextObject::GetCharInfo(int index, FX_DWORD& charcode, FX_FLOAT& kerning) const
154 charcode = (FX_DWORD)(FX_UINTPTR)m_pCharCodes;
162 charcode = m_pCharCodes[i];
182 FX_DWORD charcode = m_pCharCodes[i]; local
183 if (charcode == (FX_DWORD) - 1) {
321 FX_FLOAT CPDF_TextObject::GetCharWidth(FX_DWORD charcode) const
331 return pFont->GetCharWidthF(charcode, 0) * fontsize;
333 FX_WORD CID = pCIDFont->CIDFromCharCode(charcode);
340 FX_DWORD charCode = m_TextState.GetFont()->CharCodeFromUnicode(32);
341 if (charCode != (FX_DWORD) - 1) {
367 FX_DWORD charcode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[i]; local
411 FX_DWORD charcode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[i]; local
540 FX_DWORD charcode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[i]; local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 24 CFX_GlyphBitmap* CPDF_Type3Cache::LoadGlyph(FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY)
36 if(pSizeCache->m_GlyphMap.Lookup((FX_LPVOID)(FX_UINTPTR)charcode, (void*&)pGlyphBitmap)) {
39 pGlyphBitmap = RenderGlyph(pSizeCache, charcode, pMatrix, retinaScaleX, retinaScaleY);
40 pSizeCache->m_GlyphMap.SetAt((FX_LPVOID)(FX_UINTPTR)charcode, pGlyphBitmap);
125 CFX_GlyphBitmap* CPDF_Type3Cache::RenderGlyph(CPDF_Type3Glyphs* pSize, FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY)
127 CPDF_Type3Char* pChar = m_pFont->LoadChar(charcode);
403 FX_DWORD charcode = pChars[iChar]; local
404 if (charcode == (FX_DWORD) - 1) {
407 CPDF_Type3Char* pType3Char = pType3Font->LoadChar(charcode);
470 CFX_GlyphBitmap* pBitmap = pCache->LoadGlyph(charcode, &matrix, sa, sd);
625 FX_DWORD charcode; local
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
ftdriver.h 72 FT_Long charcode );
76 FT_Long charcode );
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
ftdriver.h 72 FT_Long charcode );
76 FT_Long charcode );
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 1364 long charcode = 0; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1load.c 1268 FT_Int charcode; local
2216 FT_Int charcode, idx, min_char, max_char; local
    [all...]

Completed in 516 milliseconds

1 2 3