HomeSort by relevance Sort by last modified time
    Searched full:charcode (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/pdfium/core/fpdfapi/cmaps/
cmap_int.h 30 uint16_t FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, uint32_t charcode);
fpdf_cmaps.cpp 74 uint16_t FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, uint32_t charcode) {
75 if (charcode >> 16) {
79 FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 8,
82 return found[3] + (uint16_t)charcode - found[1];
86 FXSYS_bsearch(&charcode, pMap->m_pDWordMap, pMap->m_DWordCount, 6,
99 uint16_t code = (uint16_t)charcode;
  /external/pdfium/core/fpdfapi/font/
font_int.h 149 uint16_t CIDFromCharCode(uint32_t charcode) const;
150 int GetCharSize(uint32_t charcode) const;
153 int AppendChar(FX_CHAR* str, uint32_t charcode) const;
194 CFX_WideString Lookup(uint32_t charcode) const;
cpdf_fontencoding.cpp     [all...]
fpdf_font.cpp 99 CFX_WideString CPDF_ToUnicodeMap::Lookup(uint32_t charcode) const {
100 auto it = m_Map.find(charcode);
123 return m_pBaseMap->UnicodeFromCID((uint16_t)charcode);
  /external/pdfium/core/fxge/
cfx_unicodeencodingex.h 25 uint32_t GlyphFromCharCode(uint32_t charcode) override;
cfx_unicodeencoding.h 40 virtual uint32_t GlyphFromCharCode(uint32_t charcode);
  /external/pdfium/core/fpdfapi/render/
cpdf_type3cache.cpp 88 CFX_GlyphBitmap* CPDF_Type3Cache::LoadGlyph(uint32_t charcode,
105 auto it2 = pSizeCache->m_GlyphMap.find(charcode);
110 RenderGlyph(pSizeCache, charcode, pMatrix, retinaScaleX, retinaScaleY);
111 pSizeCache->m_GlyphMap[charcode] = pGlyphBitmap;
116 uint32_t charcode,
120 const CPDF_Type3Char* pChar = m_pFont->LoadChar(charcode);
  /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/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
BIG5Tool.java 192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " "
209 charList.add(new Integer(c.charCode));
238 int charCode;
242 charCode = c;
246 // Equals needs to work with a map, with the charCode as the key.
250 return o.charCode == this.charCode;
256 return charCode;
EUCTool.java 192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " "
209 charList.add(new Integer(c.charCode));
238 int charCode;
242 charCode = c;
246 // Equals needs to work with a map, with the charCode as the key.
250 return o.charCode == this.charCode;
256 return charCode;
  /external/fonttools/Lib/fontTools/ttLib/tables/
_c_m_a_p.py 301 # The first byte of a charcode is mapped through the subHeaderKeys, to select
305 # Then assume that the subsequent byte is the first byte of the next charcode,and repeat.
322 # first byte of charcode = 129; selects subheader 1.
324 # second byte of charCode = 66
328 # [256], [0]=1 from charcode [129, 64]
329 # [257], [1]=2 from charcode [129, 65]
330 # [258], [2]=3 from charcode [129, 66]
331 # [259], [3]=4 from charcode [129, 67]
346 charCode = firstByte
353 cmap[charCode] = g
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /external/freetype/src/cff/
cffload.h 32 cff_get_standard_encoding( FT_UInt charcode ); variable
cffgload.h 137 FT_Int charcode );
  /external/pdfium/third_party/freetype/src/cff/
cffload.h 30 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/skia/src/core/
SkGlyphCache.cpp 73 SkGlyphID SkGlyphCache::unicharToGlyph(SkUnichar charCode) {
75 SkPackedUnicharID packedUnicharID(charCode);
84 SkGlyphID glyphID = fScalerContext->charToGlyphID(charCode);
104 const SkGlyph& SkGlyphCache::getUnicharAdvance(SkUnichar charCode) {
106 return *this->lookupByChar(charCode, kJustAdvance_MetricsType);
117 const SkGlyph& SkGlyphCache::getUnicharMetrics(SkUnichar charCode) {
119 return *this->lookupByChar(charCode, kFull_MetricsType);
122 const SkGlyph& SkGlyphCache::getUnicharMetrics(SkUnichar charCode, SkFixed x, SkFixed y) {
124 return *this->lookupByChar(charCode, kFull_MetricsType, x, y);
139 SkGlyph* SkGlyphCache::lookupByChar(SkUnichar charCode, MetricsType type, SkFixed x, SkFixed y)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
UserData.java 117 int charCode = charToAscii.get(str.charAt(i), -1);
118 if (charCode == -1) return null;
119 result[i] = (byte)charCode;
  /external/autotest/client/cros/
touch_events_test_page.html 191 if ('charCode' in event)
192 msg += ' charCode=' + event.charCode;
  /external/skia/src/fonts/
SkTestScalerContext.h 36 int codeToIndex(SkUnichar charCode) const;
  /external/freetype/src/cache/
ftccmap.c 52 #define FTC_CMAP_HASH( faceid, index, charcode ) \
54 ( (charcode) / FTC_CMAP_INDICES_MAX ) )
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 239 * @param charCode A character code
242 private boolean insertCharToComposingText(int charCode) {
243 if (charCode == 0) {
246 insertCharToComposingText(Character.toChars(charCode));
602 int charCode = ev.getUnicodeChar(MetaKeyKeyListener.META_SHIFT_ON | MetaKeyKeyListener.META_ALT_ON);
603 if (charCode == 0 || (charCode & KeyCharacterMap.COMBINING_ACCENT) != 0 || charCode == PRIVATE_AREA_CODE) {
    [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/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator.cpp 270 for (uint32_t charcode : pTextObj->m_CharCodes) {
271 if (charcode == CPDF_Font::kInvalidCharCode)
273 pFont->AppendChar(text, charcode);
  /external/pdfium/core/fpdftext/
cpdf_textpage.h 145 int GetCharWidth(uint32_t charCode, CPDF_Font* pFont) const;

Completed in 2201 milliseconds

12 3 4 5