HomeSort by relevance Sort by last modified time
    Searched defs:charcode (Results 1 - 19 of 19) sorted by null

  /external/freetype/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/freetype/src/autofit/
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/pdfium/third_party/freetype/src/type1/
t1load.c 1266 FT_Int charcode; local
2221 FT_Int charcode, idx, min_char, max_char; 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/fpdfapi/fpdf_edit/
fpdf_edit_doc.cpp 894 int charcode; local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font_cid.cpp 16 extern FX_LPCSTR GetAdobeCharName(int iBaseEncoding, const CFX_ByteString* pCharNames, int charcode);
349 extern FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode);
432 FX_WORD CPDF_CMap::CIDFromCharCode(FX_DWORD charcode) const
435 return (FX_WORD)charcode;
438 return FPDFAPI_CIDFromCharCode(m_pEmbedMap, charcode);
441 return (FX_WORD)charcode;
443 if (charcode >> 16) {
445 void* found = FXSYS_bsearch(&charcode, m_pAddMapping + 4, *(FX_DWORD*)m_pAddMapping, 8, compareCID);
448 return m_pUseMap->CIDFromCharCode(charcode);
452 return (FX_WORD)(((FX_DWORD*)found)[1] % 65536 + charcode - * (FX_DWORD*)found)
521 FX_DWORD charcode = 0; local
    [all...]
fpdf_font.cpp 163 void CPDF_Font::AppendChar(CFX_ByteString& str, FX_DWORD charcode) const
166 int len = AppendChar(buf, charcode);
173 CFX_WideString CPDF_Font::UnicodeFromCharCode(FX_DWORD charcode) const
179 CFX_WideString wsRet = m_pToUnicodeMap->Lookup(charcode);
184 FX_WCHAR unicode = _UnicodeFromCharCode(charcode);
196 FX_DWORD charcode = m_pToUnicodeMap->ReverseLookup(unicode); local
197 if (charcode) {
198 return charcode;
211 FX_DWORD charcode = GetNextChar(src_buf, src_len, src_pos); local
212 CFX_WideString unicode = UnicodeFromCharCode(charcode);
229 FX_DWORD charcode = CharCodeFromUnicode(src_buf[src_pos]); local
377 FX_DWORD charcode = GetNextChar(pString, size, offset); local
1455 int charcode = 0; local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 150 void CPDF_TextObject::GetCharInfo(int index, FX_DWORD& charcode, FX_FLOAT& kerning) const
153 charcode = (FX_DWORD)(FX_UINTPTR)m_pCharCodes;
161 charcode = m_pCharCodes[i];
181 FX_DWORD charcode = m_pCharCodes[i]; local
182 if (charcode == (FX_DWORD) - 1) {
318 FX_FLOAT CPDF_TextObject::GetCharWidth(FX_DWORD charcode) const
328 return pFont->GetCharWidthF(charcode, 0) * fontsize;
330 FX_WORD CID = pCIDFont->CIDFromCharCode(charcode);
337 FX_DWORD charCode = m_TextState.GetFont()->CharCodeFromUnicode(32);
338 if (charCode != (FX_DWORD) - 1)
363 FX_DWORD charcode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[i]; local
407 FX_DWORD charcode = m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)m_pCharCodes : m_pCharCodes[i]; local
534 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);
390 FX_DWORD charcode = pChars[iChar]; local
391 if (charcode == (FX_DWORD) - 1) {
394 CPDF_Type3Char* pType3Char = pType3Font->LoadChar(charcode);
457 CFX_GlyphBitmap* pBitmap = pCache->LoadGlyph(charcode, &matrix, sa, sd)
611 FX_DWORD charcode; local
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_ap.cpp 123 FX_DWORD charcode = pPDFFont->CharCodeFromUnicode(word); local
124 if (charcode != -1) {
125 return pPDFFont->GetCharWidthF(charcode);
    [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 78 FX_DWORD charcode = pText->m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pText->m_pCharCodes : pText->m_pCharCodes[i]; local
79 if (charcode == (FX_DWORD) - 1) {
83 pFont->GetCharBBox(charcode, char_box);
93 pFont->AppendChar(str, charcode);
116 FX_DWORD charcode = pText->m_nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pText->m_pCharCodes : pText->m_pCharCodes[i]; local
117 if (charcode == (FX_DWORD) - 1) {
140 pFont->AppendChar(segment, charcode);
  /external/pdfium/third_party/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/fpdfsdk/src/javascript/
Document.cpp 1772 FX_DWORD charcode = -1; local
1807 FX_DWORD charcode = -1; local
    [all...]
  /external/pdfium/public/
fpdf_fwlevent.h 269 FPDF_DWORD charcode; member in union:FWL_EVENT_KEY::__anon17667
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 1364 long charcode = 0; local
    [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 154 FX_DWORD charcode = word; local
157 charcode = pPDFFont->CharCodeFromUnicode(word);
159 charcode = m_pFontMap->CharCodeFromUnicode(nFontIndex, word);
161 if (charcode != -1)
162 return pPDFFont->GetCharWidthF(charcode);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 

Completed in 1356 milliseconds