Searched refs:glyph_code (Results 1 – 6 of 6) sorted by relevance
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | index_sub_table_format4.cc | 90 IndexSubTableFormat4::CodeOffsetPair::CodeOffsetPair(int32_t glyph_code, in CodeOffsetPair() argument 92 : glyph_code_(glyph_code), offset_(offset) { in CodeOffsetPair() 100 int32_t glyph_code, int32_t offset) in CodeOffsetPairBuilder() argument 101 : CodeOffsetPair(glyph_code, offset) { in CodeOffsetPairBuilder() 106 return lhs.glyph_code() < rhs.glyph_code(); in operator ()() 247 size += new_data->WriteUShort(size, b->glyph_code()); in SubSerialize() 298 int32_t glyph_code = data->ReadUShort(offset + in Initialize() local 303 CodeOffsetPairBuilder pair_builder(glyph_code, glyph_offset); in Initialize() 317 if (glyph_id < pair->glyph_code()) { in FindCodeOffsetPair() 320 } else if (glyph_id > pair->glyph_code()) { in FindCodeOffsetPair() [all …]
|
D | index_sub_table_format4.h | 29 int32_t glyph_code() const { return glyph_code_; } in glyph_code() function 33 CodeOffsetPair(int32_t glyph_code, int32_t offset); 43 CodeOffsetPairBuilder(int32_t glyph_code, int32_t offset);
|
D | composite_bitmap_glyph.h | 31 int32_t glyph_code() { return glyph_code_; } in glyph_code() function 40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
|
D | composite_bitmap_glyph.cc | 83 CompositeBitmapGlyph::Component::Component(int32_t glyph_code, in Component() argument 86 : glyph_code_(glyph_code), x_offset_(x_offset), y_offset_(y_offset) { in Component()
|
/external/freetype/src/cff/ |
D | cffload.c | 1636 FT_UInt glyph_code; in cff_encoding_load() local 1695 glyph_code = *p++; in cff_encoding_load() 1701 encoding->codes[glyph_code] = (FT_UShort)j; in cff_encoding_load() 1704 encoding->sids[glyph_code] = charset->sids[j]; in cff_encoding_load() 1725 if ( FT_READ_BYTE( glyph_code ) ) in cff_encoding_load() 1740 for ( k = i; k < nleft + i; k++, glyph_code++ ) in cff_encoding_load() 1743 if ( k < num_glyphs && glyph_code < 256 ) in cff_encoding_load() 1746 encoding->codes[glyph_code] = (FT_UShort)k; in cff_encoding_load() 1749 encoding->sids[glyph_code] = charset->sids[k]; in cff_encoding_load() 1779 if ( FT_READ_BYTE( glyph_code ) ) in cff_encoding_load() [all …]
|
/external/freetype/include/freetype/internal/ |
D | tttypes.h | 808 FT_UShort glyph_code; member
|