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

  /external/freetype/src/cff/
cffload.h 32 cff_get_standard_encoding( FT_UInt charcode ); variable
  /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/pdfium/core/fpdfapi/font/
cpdf_truetypefont.cpp 74 int charcode = 0; local
75 for (; charcode < nStartChar; charcode++)
76 m_GlyphIndex[charcode] = 0;
77 uint16_t nGlyph = charcode - nStartChar + 3;
78 for (; charcode < 256; charcode++, nGlyph++)
79 m_GlyphIndex[charcode] = nGlyph;
95 for (int charcode = 0; charcode < 256; charcode++)
    [all...]
cpdf_cmap.cpp 208 uint32_t charcode,
215 codes[2] = static_cast<uint8_t>(charcode >> 8 & 0xFF);
216 codes[3] = static_cast<uint8_t>(charcode);
315 uint16_t CPDF_CMap::CIDFromCharCode(uint32_t charcode) const {
317 return static_cast<uint16_t>(charcode);
320 return FPDFAPI_CIDFromCharCode(m_pEmbedMap, charcode);
323 return static_cast<uint16_t>(charcode);
325 if (charcode < 0x10000)
326 return m_DirectCharcodeToCIDTable[charcode];
329 m_AdditionalCharcodeToCIDMappings.end(), charcode,
368 uint32_t charcode = 0; local
    [all...]
cpdf_font.cpp 129 int CPDF_Font::GlyphFromCharCodeExt(uint32_t charcode) {
130 return GlyphFromCharCode(charcode, nullptr);
138 int CPDF_Font::AppendChar(char* buf, uint32_t charcode) const {
139 *buf = static_cast<char>(charcode);
143 void CPDF_Font::AppendChar(ByteString* str, uint32_t charcode) const {
145 int len = AppendChar(buf, charcode);
149 WideString CPDF_Font::UnicodeFromCharCode(uint32_t charcode) const {
153 return m_pToUnicodeMap ? m_pToUnicodeMap->Lookup(charcode) : WideString();
292 uint32_t charcode = GetNextChar(pString, size, offset); local
293 width += GetCharWidthF(charcode);
    [all...]
cpdf_cidfont.cpp 145 uint32_t charcode) {
149 uint16_t cid = FPDFAPI_CIDFromCharCode(pEmbedMap, charcode);
175 uint32_t charCode = FPDFAPI_CharCodeFromCID(pEmbedMap, i);
176 if (charCode)
177 return charCode;
239 uint16_t CPDF_CIDFont::CIDFromCharCode(uint32_t charcode) const {
240 return m_pCMap ? m_pCMap->CIDFromCharCode(charcode)
241 : static_cast<uint16_t>(charcode);
248 WideString CPDF_CIDFont::UnicodeFromCharCode(uint32_t charcode) const {
249 WideString str = CPDF_Font::UnicodeFromCharCode(charcode);
289 uint32_t charcode = CPDF_Font::CharCodeFromUnicode(unicode); local
    [all...]
  /external/freetype/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/freetype/src/pcf/
pcfdrivr.c 105 FT_UInt32 charcode )
124 if ( charcode == code )
130 if ( charcode < code )
147 FT_ULong charcode = *acharcode + 1; local
162 if ( charcode == code )
168 if ( charcode < code )
174 charcode = 0;
177 charcode = (FT_ULong)encodings[min].enc;
182 if ( charcode > 0xFFFFFFFFUL )
184 FT_TRACE1(( "pcf_cmap_char_next: charcode 0x%x > 32bit API" ))
    [all...]
  /external/freetype/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...]
t42parse.c 378 /* ... charcode /charname ... */
425 FT_Int charcode; local
429 charcode = n;
432 charcode = (FT_Int)T1_ToInt( parser );
435 /* protect against invalid charcode */
461 parser->root.error = T1_Add_Table( char_table, charcode,
465 char_table->elements[charcode][len] = '\0';
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 60 for (uint32_t charcode : m_CharCodes) {
61 if (charcode != CPDF_Font::kInvalidCharCode)
68 uint32_t* charcode,
76 *charcode = m_CharCodes[i];
91 uint32_t charcode = m_CharCodes[i]; local
92 if (charcode == CPDF_Font::kInvalidCharCode)
178 float CPDF_TextObject::GetCharWidth(uint32_t charcode) const {
186 return pFont->GetCharWidthF(charcode) * fontsize;
188 uint16_t CID = pCIDFont->CIDFromCharCode(charcode);
214 uint32_t charcode = m_CharCodes[i] local
    [all...]
  /external/freetype/src/type1/
t1load.c 1426 FT_Int charcode; local
2444 FT_Int charcode, idx, min_char, max_char; local
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 148 FT_UInt32 charcode = *pchar_code; local
154 while ( ++charcode < 256 )
156 gindex = table[charcode];
159 result = charcode;
223 /***** assume that the value `charcode' fulfills the following. *****/
225 /***** - For one byte characters, `charcode' is simply the *****/
228 /***** - For two byte characters, `charcode' is the 2-byte *****/
231 /***** (charcode >> 8) is the first byte value *****/
232 /***** (charcode & 0xFF) is the second byte value *****/
234 /***** Note that not all values of `charcode' are valid according *****
502 FT_UInt32 charcode = *pcharcode + 1; local
789 FT_UInt charcode; local
1092 FT_UInt32 charcode = *pcharcode; local
1226 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_variabletext.cpp 44 uint32_t charcode = pPDFFont->CharCodeFromUnicode(word); local
45 if (charcode != CPDF_Font::kInvalidCharCode)
46 return pPDFFont->GetCharWidthF(charcode);
  /external/pdfium/fpdfsdk/pwl/
cpwl_edit_impl.cpp 131 uint32_t charcode = word; local
134 charcode = pPDFFont->CharCodeFromUnicode(word);
136 charcode = m_pFontMap->CharCodeFromUnicode(nFontIndex, word);
138 if (charcode != CPDF_Font::kInvalidCharCode)
139 return pPDFFont->GetCharWidthF(charcode);
    [all...]
  /external/pdfium/fxjs/
cjs_document.cpp 1337 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
1369 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
    [all...]
  /external/pdfium/public/
fpdf_fwlevent.h 263 FPDF_DWORD charcode; member in union:FWL_EVENT_KEY::__anon31339
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 1364 long charcode = 0; local
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_renderstatus.cpp 1868 uint32_t charcode = textobj->GetCharCodes()[iChar]; local
    [all...]
  /external/annotation-tools/asmx/test/lib/
saxon7.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /prebuilts/tools/common/m2/repository/net/sf/saxon/Saxon-HE/9.8.0-5/
Saxon-HE-9.8.0-5.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 

Completed in 738 milliseconds