Searched refs:char_code (Results 1 - 11 of 11) sorted by relevance

/external/freetype/src/psaux/
H A Dt1cmap.c64 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/
H A Dcffcmap.c56 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/
H A Dttcmap.c119 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
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/
H A Dpsmodule.c445 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/
H A Dstring.js65 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);
H A Druntime.js477 var char_code = %_FastCharCodeAt(this, pos);
478 if (!%_IsSmi(char_code)) {
481 return %CharFromCode(char_code);
H A Druntime.cc1454 static Object* CharFromCode(Object* char_code) { argument
1456 if (Array::IndexFromObject(char_code, &code)) {
2153 static inline int CharOccurrence(int char_code) {
2155 return bad_char_occurrence[char_code];
2158 if (char_code > String::kMaxAsciiCharCode) {
2161 return bad_char_occurrence[char_code];
2163 return bad_char_occurrence[char_code % kBMAlphabetSize];
/external/freetype/include/freetype/
H A Dftcache.h615 * char_code ::
626 FT_UInt32 char_code );
H A Dfreetype.h2319 /* char_code :: The glyph's character code, according to the */
2336 FT_ULong char_code,
3091 /* current charmap of a given face following the value `char_code', */
3096 /* char_code :: The starting character code. */
3115 FT_ULong char_code,
/external/freetype/include/freetype/internal/
H A Dftobjs.h158 FT_UInt32 char_code );
167 FT_UInt32 char_code,
172 FT_UInt32 char_code,
182 FT_UInt32 char_code );
/external/freetype/src/base/
H A Dftobjs.c794 FT_ULong char_code,
803 glyph_index = (FT_UInt)char_code;
805 glyph_index = FT_Get_Char_Index( face, char_code );

Completed in 175 milliseconds