HomeSort by relevance Sort by last modified time
    Searched refs:char_index (Results 1 - 15 of 15) sorted by null

  /external/libchrome/base/strings/
utf_string_conversion_utils.cc 16 int32_t* char_index,
22 CBU8_NEXT(src, *char_index, src_len, code_point);
27 (*char_index)--;
35 int32_t* char_index,
37 if (CBU16_IS_SURROGATE(src[*char_index])) {
38 if (!CBU16_IS_SURROGATE_LEAD(src[*char_index]) ||
39 *char_index + 1 >= src_len ||
40 !CBU16_IS_TRAIL(src[*char_index + 1])) {
46 *code_point = CBU16_GET_SUPPLEMENTARY(src[*char_index],
47 src[*char_index + 1])
    [all...]
utf_string_conversion_utils.h 38 // |*code_point|. |src| represents the entire string to read, and |*char_index|
39 // is the character offset within the string to start reading at. |*char_index|
46 int32_t* char_index,
52 int32_t* char_index,
59 int32_t* char_index,
string_util.cc 364 int32_t char_index = truncation_length - 1; local
371 while (char_index >= 0) {
372 int32_t prev = char_index;
374 CBU8_NEXT(data, char_index, truncation_length, code_point);
377 char_index = prev - 1;
383 if (char_index >= 0 )
384 *output = input.substr(0, char_index);
517 int32_t char_index = 0; local
519 while (char_index < src_len) {
521 CBU8_NEXT(src, char_index, src_len, code_point)
    [all...]
  /external/freetype/include/freetype/internal/
t1types.h 69 * char_index ::
81 FT_UShort* char_index; member in struct:T1_EncodingRecRec_
ftobjs.h 215 FT_CMap_CharIndexFunc char_index; member in struct:FT_CMap_ClassRec_
    [all...]
  /external/freetype/src/type42/
t42objs.c 108 /* The index is then stored in type1.encoding.char_index, and */
120 type1->encoding.char_index[charcode] = 0;
131 type1->encoding.char_index[charcode] = (FT_UShort)idx;
439 FT_FREE( type1->encoding.char_index );
t42parse.c 356 if ( encode->char_index )
358 FT_FREE( encode->char_index );
365 if ( FT_NEW_ARRAY( encode->char_index, count ) ||
    [all...]
  /external/freetype/src/psaux/
t1cmap.c 141 (FT_CMap_CharIndexFunc)t1_cmap_std_char_index, /* char_index */
170 (FT_CMap_CharIndexFunc)t1_cmap_std_char_index, /* char_index */
202 cmap->indices = encoding->char_index;
270 (FT_CMap_CharIndexFunc)t1_cmap_custom_char_index, /* char_index */
360 (FT_CMap_CharIndexFunc)t1_cmap_unicode_char_index, /* char_index */
  /external/freetype/src/type1/
t1load.c     [all...]
t1objs.c 256 FT_FREE( type1->encoding.char_index );
  /external/libpng/
png.c 2848 png_size_t char_index=0; local
    [all...]
  /external/pdfium/third_party/libpng16/
png.c 2810 png_size_t char_index=0; local
    [all...]
  /external/u-boot/drivers/video/
stb_truetype.h 485 int char_index, // character to display
489 // Call GetBakedQuad with char_index = 'character - first_char', and it
585 int char_index, // character to display
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 189 (FT_CMap_CharIndexFunc)tt_cmap0_char_index, /* char_index */
603 (FT_CMap_CharIndexFunc)tt_cmap2_char_index, /* char_index */
    [all...]
  /external/freetype/src/base/
ftobjs.c     [all...]

Completed in 1011 milliseconds