HomeSort by relevance Sort by last modified time
    Searched full:char_index (Results 1 - 25 of 37) sorted by null

1 2

  /external/libchrome/base/strings/
utf_string_conversion_utils.cc 15 int32_t* char_index,
21 CBU8_NEXT(src, *char_index, src_len, code_point);
26 (*char_index)--;
34 int32_t* char_index,
36 if (CBU16_IS_SURROGATE(src[*char_index])) {
37 if (!CBU16_IS_SURROGATE_LEAD(src[*char_index]) ||
38 *char_index + 1 >= src_len ||
39 !CBU16_IS_TRAIL(src[*char_index + 1])) {
45 *code_point = CBU16_GET_SUPPLEMENTARY(src[*char_index],
46 src[*char_index + 1])
    [all...]
utf_string_conversion_utils.h 37 // |*code_point|. |src| represents the entire string to read, and |*char_index|
38 // is the character offset within the string to start reading at. |*char_index|
45 int32_t* char_index,
51 int32_t* char_index,
58 int32_t* char_index,
string_util.cc 363 int32_t char_index = truncation_length - 1; local
370 while (char_index >= 0) {
371 int32_t prev = char_index;
373 CBU8_NEXT(data, char_index, truncation_length, code_point);
376 char_index = prev - 1;
382 if (char_index >= 0 )
383 *output = input.substr(0, char_index);
522 int32_t char_index = 0; local
524 while (char_index < src_len) {
526 CBU8_NEXT(src, char_index, src_len, code_point)
    [all...]
  /external/libweave/third_party/chromium/base/strings/
utf_string_conversion_utils.cc 15 int32_t* char_index,
21 CBU8_NEXT(src, *char_index, src_len, code_point);
26 (*char_index)--;
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,
53 int32_t* char_index,
string_util.cc 234 int32_t char_index = 0; local
236 while (char_index < src_len) {
238 CBU8_NEXT(src, char_index, src_len, code_point);
  /external/freetype/include/freetype/internal/
t1types.h 66 /* char_index :: An array of corresponding glyph indices. */
76 FT_UShort* char_index; member in struct:T1_EncodingRecRec_
ftobjs.h 198 FT_CMap_CharIndexFunc char_index; member in struct:FT_CMap_ClassRec_
273 clazz->char_index = char_index_; \
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
t1types.h 65 /* char_index :: An array of corresponding glyph indices. */
75 FT_UShort* char_index; member in struct:T1_EncodingRecRec_
ftobjs.h 198 FT_CMap_CharIndexFunc char_index; member in struct:FT_CMap_ClassRec_
273 clazz->char_index = char_index_; \
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/internal/
t1types.h 65 /* char_index :: An array of corresponding glyph indices. */
75 FT_UShort* char_index; member in struct:T1_EncodingRecRec_
ftobjs.h 198 FT_CMap_CharIndexFunc char_index; member in struct:FT_CMap_ClassRec_
273 clazz->char_index = char_index_; \
    [all...]
  /external/freetype/src/sfnt/
ttcmap.h 117 clazz->clazz.char_index = char_index_; \
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttcmap.h 117 clazz->clazz.char_index = char_index_; \
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.h 117 clazz->clazz.char_index = char_index_; \
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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;
448 FT_FREE( type1->encoding.char_index );
t42parse.c 349 if ( encode->char_index )
351 FT_FREE( encode->char_index );
358 if ( FT_NEW_ARRAY( encode->char_index, count ) ||
    [all...]
  /external/freetype/src/psaux/
t1cmap.c 194 cmap->indices = encoding->char_index;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psaux/
t1cmap.c 194 cmap->indices = encoding->char_index;
  /external/pdfium/third_party/freetype/src/psaux/
t1cmap.c 194 cmap->indices = encoding->char_index;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
t1load.c     [all...]
t1objs.c 254 FT_FREE( type1->encoding.char_index );
  /external/pdfium/third_party/freetype/src/type1/
t1load.c     [all...]
t1objs.c 254 FT_FREE( type1->encoding.char_index );
  /toolchain/binutils/binutils-2.25/gas/doc/
c-tic54x.texi 144 @item @code{:@var{symbol}(@var{char_index}):}
145 Evaluates to a single-character string, the character at @var{char_index}.

Completed in 827 milliseconds

1 2