Home
last modified time | relevance | path

Searched refs:glyph_code (Results 1 – 7 of 7) sorted by relevance

/external/sfntly/cpp/src/sfntly/table/bitmap/
Dindex_sub_table_format4.cc90 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 …]
Dindex_sub_table_format4.h29 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);
Dcomposite_bitmap_glyph.h31 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);
Dcomposite_bitmap_glyph.cc83 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/
Dcffload.c1642 FT_UInt glyph_code; in cff_encoding_load() local
1701 glyph_code = *p++; in cff_encoding_load()
1707 encoding->codes[glyph_code] = (FT_UShort)j; in cff_encoding_load()
1710 encoding->sids[glyph_code] = charset->sids[j]; in cff_encoding_load()
1731 if ( FT_READ_BYTE( glyph_code ) ) in cff_encoding_load()
1746 for ( k = i; k < nleft + i; k++, glyph_code++ ) in cff_encoding_load()
1749 if ( k < num_glyphs && glyph_code < 256 ) in cff_encoding_load()
1752 encoding->codes[glyph_code] = (FT_UShort)k; in cff_encoding_load()
1755 encoding->sids[glyph_code] = charset->sids[k]; in cff_encoding_load()
1785 if ( FT_READ_BYTE( glyph_code ) ) in cff_encoding_load()
[all …]
/external/pdfium/fxbarcode/oned/
DBC_OneDimWriter.cpp121 int32_t glyph_code = encoding->GlyphFromCharCode(charcodes[i]); in CalcTextInfo() local
122 uint32_t glyph_value = cFont->GetGlyphWidth(glyph_code); in CalcTextInfo()
/external/freetype/include/freetype/internal/
Dtttypes.h717 FT_UShort glyph_code; member