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

  /external/pdfium/third_party/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /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 75 int charcode = 0; local
76 for (; charcode < nStartChar; charcode++) {
77 m_GlyphIndex[charcode] = 0;
79 uint16_t nGlyph = charcode - nStartChar + 3;
80 for (; charcode < 256; charcode++, nGlyph++) {
81 m_GlyphIndex[charcode] = nGlyph;
98 for (int charcode = 0; charcode < 256; charcode++)
    [all...]
cpdf_font.cpp 125 int CPDF_Font::GlyphFromCharCodeExt(uint32_t charcode) {
126 return GlyphFromCharCode(charcode, nullptr);
134 int CPDF_Font::AppendChar(FX_CHAR* buf, uint32_t charcode) const {
135 *buf = static_cast<FX_CHAR>(charcode);
139 void CPDF_Font::AppendChar(CFX_ByteString& str, uint32_t charcode) const {
141 int len = AppendChar(buf, charcode);
149 CFX_WideString CPDF_Font::UnicodeFromCharCode(uint32_t charcode) const {
153 return m_pToUnicodeMap ? m_pToUnicodeMap->Lookup(charcode) : CFX_WideString();
288 uint32_t charcode = GetNextChar(pString, size, offset); local
289 width += GetCharWidthF(charcode);
    [all...]
fpdf_font_cid.cpp 246 int GetCharSizeImpl(uint32_t charcode,
254 codes[2] = (uint8_t)(charcode >> 8 & 0xFF);
255 codes[3] = (uint8_t)charcode;
589 uint16_t CPDF_CMap::CIDFromCharCode(uint32_t charcode) const {
591 return (uint16_t)charcode;
594 return FPDFAPI_CIDFromCharCode(m_pEmbedMap, charcode);
597 return (uint16_t)charcode;
599 if (charcode >> 16) {
601 void* found = FXSYS_bsearch(&charcode, m_pAddMapping + 4,
605 return (uint16_t)(((uint32_t*)found)[1] % 65536 + charcode
642 uint32_t charcode = 0; local
    [all...]
cpdf_cidfont.cpp 137 uint32_t charcode) {
141 uint16_t cid = FPDFAPI_CIDFromCharCode(pEmbedMap, charcode);
161 uint32_t CharCode = FPDFAPI_CharCodeFromCID(pEmbedMap, i);
162 if (CharCode)
163 return CharCode;
225 uint16_t CPDF_CIDFont::CIDFromCharCode(uint32_t charcode) const {
226 return m_pCMap ? m_pCMap->CIDFromCharCode(charcode)
227 : static_cast<uint16_t>(charcode);
234 CFX_WideString CPDF_CIDFont::UnicodeFromCharCode(uint32_t charcode) const {
235 CFX_WideString str = CPDF_Font::UnicodeFromCharCode(charcode);
275 uint32_t charcode = CPDF_Font::CharCodeFromUnicode(unicode); local
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 54 for (uint32_t charcode : m_CharCodes) {
55 if (charcode != CPDF_Font::kInvalidCharCode)
62 uint32_t* charcode,
70 *charcode = m_CharCodes[i];
84 uint32_t charcode = m_CharCodes[i]; local
85 if (charcode == CPDF_Font::kInvalidCharCode)
169 FX_FLOAT CPDF_TextObject::GetCharWidth(uint32_t charcode) const {
177 return pFont->GetCharWidthF(charcode) * fontsize;
179 uint16_t CID = pCIDFont->CIDFromCharCode(charcode);
205 uint32_t charcode = m_CharCodes[i] local
    [all...]
  /external/pdfium/third_party/freetype/src/type1/
t1load.c 1301 FT_Int charcode; local
2262 FT_Int charcode, idx, min_char, max_char; local
    [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;
221 /***** assume that the value `charcode' fulfills the following. *****/
223 /***** - For one byte characters, `charcode' is simply the *****/
226 /***** - For two byte characters, `charcode' is the 2-byte *****/
229 /***** (charcode >> 8) is the first byte value *****/
230 /***** (charcode & 0xFF) is the second byte value *****/
232 /***** Note that not all values of `charcode' are valid according *****
500 FT_UInt32 charcode = *pcharcode + 1; local
773 FT_UInt charcode; local
1076 FT_UInt32 charcode = *pcharcode; local
1210 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_variabletext.cpp 42 uint32_t charcode = pPDFFont->CharCodeFromUnicode(word); local
43 if (charcode != CPDF_Font::kInvalidCharCode)
44 return pPDFFont->GetCharWidthF(charcode);
    [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/pdfium/fpdfsdk/fxedit/
fxet_edit.cpp 163 uint32_t charcode = word; local
166 charcode = pPDFFont->CharCodeFromUnicode(word);
168 charcode = m_pFontMap->CharCodeFromUnicode(nFontIndex, word);
170 if (charcode != CPDF_Font::kInvalidCharCode)
171 return pPDFFont->GetCharWidthF(charcode);
    [all...]
  /external/pdfium/fpdfsdk/javascript/
Document.cpp 1470 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
1503 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
    [all...]
  /external/pdfium/public/
fpdf_fwlevent.h 263 FPDF_DWORD charcode; member in union:FWL_EVENT_KEY::__anon29259
  /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 1829 uint32_t charcode = textobj->m_CharCodes[iChar]; local
    [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 362 milliseconds