HomeSort by relevance Sort by last modified time
    Searched full:char_code (Results 1 - 13 of 13) sorted by null

  /external/freetype/src/psaux/
t1cmap.c 64 FT_UInt32 char_code )
69 if ( char_code < 256 )
76 code = cmap->code_to_sid[char_code];
103 FT_UInt32 char_code = *pchar_code + 1; local
106 while ( char_code < 256 )
108 result = t1_cmap_std_char_index( cmap, char_code );
112 char_code++;
114 char_code = 0;
117 *pchar_code = char_code;
203 FT_UInt32 char_code )
221 FT_UInt32 char_code = *pchar_code; local
    [all...]
  /external/freetype/src/cff/
cffcmap.c 56 FT_UInt32 char_code )
61 if ( char_code < 256 )
62 result = cmap->gids[char_code];
73 FT_UInt32 char_code = *pchar_code; local
78 if ( char_code < 255 )
80 FT_UInt code = (FT_UInt)(char_code + 1);
184 FT_UInt32 char_code )
191 return psnames->unicodes_char_index( unicodes, char_code );
  /external/freetype/src/sfnt/
ttcmap.c 119 FT_UInt32 char_code )
124 return char_code < 256 ? table[6 + char_code] : 0;
376 FT_UInt32 char_code )
381 if ( char_code < 0x10000UL )
383 FT_UInt char_lo = (FT_UInt)( char_code & 0xFF );
384 FT_UInt char_hi = (FT_UInt)( char_code >> 8 );
427 FT_UInt32 char_code )
434 subheader = tt_cmap2_get_subheader( table, char_code );
438 FT_UInt idx = (FT_UInt)(char_code & 0xFF)
1490 FT_UInt32 char_code = *pchar_code + 1; local
1742 FT_UInt32 char_code = *pchar_code + 1; local
1900 FT_UInt32 char_code = *pchar_code + 1; local
2077 FT_ULong start, end, start_id, char_code; local
2127 FT_UInt32 char_code = *pchar_code; local
2397 FT_ULong start, end, glyph_id, char_code; local
2447 FT_UInt32 char_code = *pchar_code; local
    [all...]
  /external/freetype/src/psnames/
psmodule.c 445 FT_UInt32 char_code = *unicode + 1; local
461 if ( map->unicode == char_code )
469 if ( base_glyph == char_code )
472 if ( base_glyph < char_code )
482 char_code = 0;
488 char_code = BASE_GLYPH( map->unicode );
493 *unicode = char_code;
  /external/v8/src/
string.js 65 var char_code = %_FastCharCodeAt(this, pos);
66 if (!%_IsSmi(char_code)) {
70 char_code = %StringCharCodeAt(subject, index);
72 return %CharFromCode(char_code);
183 var char_code = %_FastCharCodeAt(string, start);
184 if (!%_IsSmi(char_code)) {
185 char_code = %StringCharCodeAt(string, start);
187 return %CharFromCode(char_code);
macros.py 111 python macro CHAR_CODE(str) = ord(str[1]);
runtime.js 477 var char_code = %_FastCharCodeAt(this, pos);
478 if (!%_IsSmi(char_code)) {
481 return %CharFromCode(char_code);
runtime.cc     [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardSourceDetector.java 44 private static String TYPE_FOMA_CHARSET_SIGN = "X-SD-CHAR_CODE";
  /external/freetype/include/freetype/internal/
ftobjs.h 158 FT_UInt32 char_code );
167 FT_UInt32 char_code,
172 FT_UInt32 char_code,
182 FT_UInt32 char_code );
    [all...]
  /external/freetype/include/freetype/
ftcache.h 615 * char_code ::
626 FT_UInt32 char_code );
    [all...]
freetype.h     [all...]
  /external/freetype/src/base/
ftobjs.c 794 FT_ULong char_code,
803 glyph_index = (FT_UInt)char_code;
805 glyph_index = FT_Get_Char_Index( face, char_code );
    [all...]

Completed in 1717 milliseconds