/external/sfntly/cpp/src/sfntly/table/truetype/ |
D | loca_table.cc | 26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 27 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphOffset() 33 return Loca(glyph_id); in GlyphOffset() 36 int32_t LocaTable::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphLength() 43 return Loca(glyph_id + 1) - Loca(glyph_id); in GlyphLength() 124 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 125 if (CheckGlyphRange(glyph_id) == -1) { in GlyphOffset() 128 return GetLocaList()->at(glyph_id); in GlyphOffset() 131 int32_t LocaTable::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument [all …]
|
D | loca_table.h | 77 int32_t GlyphOffset(int32_t glyph_id); 80 int32_t GlyphLength(int32_t glyph_id); 125 int32_t CheckGlyphRange(int32_t glyph_id); 153 int32_t GlyphOffset(int32_t glyph_id); 156 int32_t GlyphLength(int32_t glyph_id);
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/ |
D | loca_table.cc | 26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 27 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphOffset() 33 return Loca(glyph_id); in GlyphOffset() 36 int32_t LocaTable::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphLength() 43 return Loca(glyph_id + 1) - Loca(glyph_id); in GlyphLength() 124 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 125 if (CheckGlyphRange(glyph_id) == -1) { in GlyphOffset() 128 return GetLocaList()->at(glyph_id); in GlyphOffset() 131 int32_t LocaTable::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument [all …]
|
D | loca_table.h | 77 int32_t GlyphOffset(int32_t glyph_id); 80 int32_t GlyphLength(int32_t glyph_id); 125 int32_t CheckGlyphRange(int32_t glyph_id); 153 int32_t GlyphOffset(int32_t glyph_id); 156 int32_t GlyphLength(int32_t glyph_id);
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | bitmap_size_table.cc | 87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); in GlyphOffset() 92 return subtable->GlyphOffset(glyph_id); in GlyphOffset() 95 int32_t BitmapSizeTable::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); in GlyphLength() 100 return subtable->GlyphLength(glyph_id); in GlyphLength() 103 CALLER_ATTACH BitmapGlyphInfo* BitmapSizeTable::GlyphInfo(int32_t glyph_id) { in GlyphInfo() argument 104 IndexSubTable* sub_table = SearchIndexSubTables(glyph_id); in GlyphInfo() 108 return sub_table->GlyphInfo(glyph_id); in GlyphInfo() 111 int32_t BitmapSizeTable::GlyphFormat(int32_t glyph_id) { in GlyphFormat() argument [all …]
|
D | index_sub_table.cc | 30 CALLER_ATTACH BitmapGlyphInfo* IndexSubTable::GlyphInfo(int32_t glyph_id) { in GlyphInfo() argument 31 int32_t loca = CheckGlyphRange(glyph_id); in GlyphInfo() 35 if (GlyphStartOffset(glyph_id) == -1) { in GlyphInfo() 38 BitmapGlyphInfoPtr output = new BitmapGlyphInfo(glyph_id, in GlyphInfo() 40 GlyphStartOffset(glyph_id), in GlyphInfo() 41 GlyphLength(glyph_id), in GlyphInfo() 46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 47 int32_t glyph_start_offset = GlyphStartOffset(glyph_id); in GlyphOffset() 79 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id) { in CheckGlyphRange() argument 80 return CheckGlyphRange(glyph_id, first_glyph_index(), last_glyph_index()); in CheckGlyphRange() [all …]
|
D | bitmap_size_table.h | 100 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 101 int32_t GlyphOffset(int32_t glyph_id); 102 int32_t GlyphLength(int32_t glyph_id); 103 int32_t GlyphFormat(int32_t glyph_id); 117 IndexSubTable::Builder* SearchIndexSubTables(int32_t glyph_id); 118 IndexSubTable::Builder* LinearSearchIndexSubTables(int32_t glyph_id); 119 IndexSubTable::Builder* BinarySearchIndexSubTables(int32_t glyph_id); 145 int32_t GlyphOffset(int32_t glyph_id); 146 int32_t GlyphLength(int32_t glyph_id); 147 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); [all …]
|
D | index_sub_table.h | 61 CALLER_ATTACH virtual BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 66 virtual int32_t GlyphOffset(int32_t glyph_id); 72 virtual int32_t GlyphStartOffset(int32_t glyph_id) = 0; 77 virtual int32_t GlyphLength(int32_t glyph_id) = 0; 118 int32_t CheckGlyphRange(int32_t glyph_id); 137 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 138 virtual int32_t GlyphOffset(int32_t glyph_id); 139 virtual int32_t GlyphStartOffset(int32_t glyph_id) = 0; 140 virtual int32_t GlyphLength(int32_t glyph_id) = 0; 157 int32_t CheckGlyphRange(int32_t glyph_id); [all …]
|
D | index_sub_table_format4.cc | 32 int32_t IndexSubTableFormat4::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 33 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 37 int32_t pair_index = FindCodeOffsetPair(glyph_id); in GlyphStartOffset() 47 int32_t IndexSubTableFormat4::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 48 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() 53 int32_t pair_index = FindCodeOffsetPair(glyph_id); in GlyphLength() 73 int32_t IndexSubTableFormat4::FindCodeOffsetPair(int32_t glyph_id) { in FindCodeOffsetPair() argument 77 glyph_id); in FindCodeOffsetPair() 119 int32_t IndexSubTableFormat4::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 120 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() [all …]
|
D | bitmap_glyph_info.cc | 21 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, in BitmapGlyphInfo() argument 26 : glyph_id_(glyph_id), in BitmapGlyphInfo() 34 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, in BitmapGlyphInfo() argument 38 : glyph_id_(glyph_id), in BitmapGlyphInfo() 58 glyph_id_ == rhs->glyph_id() && in operator ==()
|
D | index_sub_table_format3.cc | 32 int32_t IndexSubTableFormat3::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 33 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 40 int32_t IndexSubTableFormat3::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 41 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() 43 return Loca(glyph_id + 1) - Loca(glyph_id); in GlyphLength() 81 int32_t IndexSubTableFormat3::Builder::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 82 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 89 int32_t IndexSubTableFormat3::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 90 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength()
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/ |
D | bitmap_size_table.cc | 87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); in GlyphOffset() 92 return subtable->GlyphOffset(glyph_id); in GlyphOffset() 95 int32_t BitmapSizeTable::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); in GlyphLength() 100 return subtable->GlyphLength(glyph_id); in GlyphLength() 103 CALLER_ATTACH BitmapGlyphInfo* BitmapSizeTable::GlyphInfo(int32_t glyph_id) { in GlyphInfo() argument 104 IndexSubTable* sub_table = SearchIndexSubTables(glyph_id); in GlyphInfo() 108 return sub_table->GlyphInfo(glyph_id); in GlyphInfo() 111 int32_t BitmapSizeTable::GlyphFormat(int32_t glyph_id) { in GlyphFormat() argument [all …]
|
D | index_sub_table.cc | 30 CALLER_ATTACH BitmapGlyphInfo* IndexSubTable::GlyphInfo(int32_t glyph_id) { in GlyphInfo() argument 31 int32_t loca = CheckGlyphRange(glyph_id); in GlyphInfo() 35 if (GlyphStartOffset(glyph_id) == -1) { in GlyphInfo() 38 BitmapGlyphInfoPtr output = new BitmapGlyphInfo(glyph_id, in GlyphInfo() 40 GlyphStartOffset(glyph_id), in GlyphInfo() 41 GlyphLength(glyph_id), in GlyphInfo() 46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument 47 int32_t glyph_start_offset = GlyphStartOffset(glyph_id); in GlyphOffset() 79 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id) { in CheckGlyphRange() argument 80 return CheckGlyphRange(glyph_id, first_glyph_index(), last_glyph_index()); in CheckGlyphRange() [all …]
|
D | bitmap_size_table.h | 100 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 101 int32_t GlyphOffset(int32_t glyph_id); 102 int32_t GlyphLength(int32_t glyph_id); 103 int32_t GlyphFormat(int32_t glyph_id); 117 IndexSubTable::Builder* SearchIndexSubTables(int32_t glyph_id); 118 IndexSubTable::Builder* LinearSearchIndexSubTables(int32_t glyph_id); 119 IndexSubTable::Builder* BinarySearchIndexSubTables(int32_t glyph_id); 145 int32_t GlyphOffset(int32_t glyph_id); 146 int32_t GlyphLength(int32_t glyph_id); 147 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); [all …]
|
D | index_sub_table.h | 61 CALLER_ATTACH virtual BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 66 virtual int32_t GlyphOffset(int32_t glyph_id); 72 virtual int32_t GlyphStartOffset(int32_t glyph_id) = 0; 77 virtual int32_t GlyphLength(int32_t glyph_id) = 0; 118 int32_t CheckGlyphRange(int32_t glyph_id); 137 CALLER_ATTACH BitmapGlyphInfo* GlyphInfo(int32_t glyph_id); 138 virtual int32_t GlyphOffset(int32_t glyph_id); 139 virtual int32_t GlyphStartOffset(int32_t glyph_id) = 0; 140 virtual int32_t GlyphLength(int32_t glyph_id) = 0; 157 int32_t CheckGlyphRange(int32_t glyph_id); [all …]
|
D | index_sub_table_format4.cc | 32 int32_t IndexSubTableFormat4::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 33 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 37 int32_t pair_index = FindCodeOffsetPair(glyph_id); in GlyphStartOffset() 47 int32_t IndexSubTableFormat4::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 48 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() 53 int32_t pair_index = FindCodeOffsetPair(glyph_id); in GlyphLength() 73 int32_t IndexSubTableFormat4::FindCodeOffsetPair(int32_t glyph_id) { in FindCodeOffsetPair() argument 77 glyph_id); in FindCodeOffsetPair() 119 int32_t IndexSubTableFormat4::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 120 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() [all …]
|
D | bitmap_glyph_info.cc | 21 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, in BitmapGlyphInfo() argument 26 : glyph_id_(glyph_id), in BitmapGlyphInfo() 34 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, in BitmapGlyphInfo() argument 38 : glyph_id_(glyph_id), in BitmapGlyphInfo() 58 glyph_id_ == rhs->glyph_id() && in operator ==()
|
D | index_sub_table_format3.cc | 32 int32_t IndexSubTableFormat3::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 33 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 40 int32_t IndexSubTableFormat3::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 41 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength() 43 return Loca(glyph_id + 1) - Loca(glyph_id); in GlyphLength() 81 int32_t IndexSubTableFormat3::Builder::GlyphStartOffset(int32_t glyph_id) { in GlyphStartOffset() argument 82 int32_t loca = CheckGlyphRange(glyph_id); in GlyphStartOffset() 89 int32_t IndexSubTableFormat3::Builder::GlyphLength(int32_t glyph_id) { in GlyphLength() argument 90 int32_t loca = CheckGlyphRange(glyph_id); in GlyphLength()
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
D | hb-ot-layout-gdef-table.hh | 49 inline unsigned int get_attach_points (hb_codepoint_t glyph_id, in get_attach_points() 54 unsigned int index = (this+coverage).get_coverage (glyph_id); in get_attach_points() 99 …et_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const in get_caret_value() 121 …sition_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const in get_caret_value() 124 if (font->get_glyph_contour_point_for_origin (glyph_id, caretValuePoint, direction, &x, &y)) in get_caret_value() 146 …et_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const in get_caret_value() 171 …sition_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const in get_caret_value() 174 case 1: return u.format1.get_caret_value (font, direction, glyph_id); in get_caret_value() 175 case 2: return u.format2.get_caret_value (font, direction, glyph_id); in get_caret_value() 176 case 3: return u.format3.get_caret_value (font, direction, glyph_id); in get_caret_value() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-gdef-table.hh | 49 inline unsigned int get_attach_points (hb_codepoint_t glyph_id, in get_attach_points() 54 unsigned int index = (this+coverage).get_coverage (glyph_id); in get_attach_points() 99 …et_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const in get_caret_value() 121 …sition_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const in get_caret_value() 124 if (font->get_glyph_contour_point_for_origin (glyph_id, caretValuePoint, direction, &x, &y)) in get_caret_value() 146 …et_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const in get_caret_value() 171 …sition_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const in get_caret_value() 174 case 1: return u.format1.get_caret_value (font, direction, glyph_id); in get_caret_value() 175 case 2: return u.format2.get_caret_value (font, direction, glyph_id); in get_caret_value() 176 case 3: return u.format3.get_caret_value (font, direction, glyph_id); in get_caret_value() [all …]
|
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
D | font_info.cc | 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id) in GlyphId() argument 42 : glyph_id_(glyph_id), in GlyphId() 47 return glyph_id_ == other.glyph_id(); in operator ==() 51 return glyph_id_ < other.glyph_id(); in operator <() 207 unresolved_glyph_ids->insert(it->second.glyph_id()); in ResolveCompositeGlyphs() 212 int32_t glyph_id = *(unresolved_glyph_ids->begin()); in ResolveCompositeGlyphs() local 214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) { in ResolveCompositeGlyphs() 216 fprintf(stderr, "%d larger than %d or smaller than 0\n", glyph_id, in ResolveCompositeGlyphs() 221 int32_t length = loca_table_->GlyphLength(glyph_id); in ResolveCompositeGlyphs() 224 fprintf(stderr, "Zero length glyph %d\n", glyph_id); in ResolveCompositeGlyphs() [all …]
|
/external/sfntly/cpp/src/sample/subtly/ |
D | font_info.cc | 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id) in GlyphId() argument 42 : glyph_id_(glyph_id), in GlyphId() 47 return glyph_id_ == other.glyph_id(); in operator ==() 51 return glyph_id_ < other.glyph_id(); in operator <() 207 unresolved_glyph_ids->insert(it->second.glyph_id()); in ResolveCompositeGlyphs() 212 int32_t glyph_id = *(unresolved_glyph_ids->begin()); in ResolveCompositeGlyphs() local 214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) { in ResolveCompositeGlyphs() 216 fprintf(stderr, "%d larger than %d or smaller than 0\n", glyph_id, in ResolveCompositeGlyphs() 221 int32_t length = loca_table_->GlyphLength(glyph_id); in ResolveCompositeGlyphs() 224 fprintf(stderr, "Zero length glyph %d\n", glyph_id); in ResolveCompositeGlyphs() [all …]
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/ |
D | horizontal_metrics_table.cc | 70 int32_t HorizontalMetricsTable::AdvanceWidth(int32_t glyph_id) { in AdvanceWidth() argument 71 if (glyph_id < num_hmetrics_) { in AdvanceWidth() 72 return HMetricAdvanceWidth(glyph_id); in AdvanceWidth() 74 return HMetricAdvanceWidth(glyph_id - num_hmetrics_); in AdvanceWidth() 77 int32_t HorizontalMetricsTable::LeftSideBearing(int32_t glyph_id) { in LeftSideBearing() argument 78 if (glyph_id < num_hmetrics_) { in LeftSideBearing() 79 return HMetricLSB(glyph_id); in LeftSideBearing() 81 return LsbTableEntry(glyph_id - num_hmetrics_); in LeftSideBearing()
|
/external/sfntly/cpp/src/sfntly/table/core/ |
D | horizontal_metrics_table.cc | 70 int32_t HorizontalMetricsTable::AdvanceWidth(int32_t glyph_id) { in AdvanceWidth() argument 71 if (glyph_id < num_hmetrics_) { in AdvanceWidth() 72 return HMetricAdvanceWidth(glyph_id); in AdvanceWidth() 74 return HMetricAdvanceWidth(glyph_id - num_hmetrics_); in AdvanceWidth() 77 int32_t HorizontalMetricsTable::LeftSideBearing(int32_t glyph_id) { in LeftSideBearing() argument 78 if (glyph_id < num_hmetrics_) { in LeftSideBearing() 79 return HMetricLSB(glyph_id); in LeftSideBearing() 81 return LsbTableEntry(glyph_id - num_hmetrics_); in LeftSideBearing()
|
/external/chromium_org/third_party/brotli/src/woff2/ |
D | transform.cc | 84 bool Encode(int glyph_id, const Glyph& glyph) { in Encode() argument 86 WriteCompositeGlyph(glyph_id, glyph); in Encode() 88 WriteSimpleGlyph(glyph_id, glyph); in Encode() 123 void WriteSimpleGlyph(int glyph_id, const Glyph& glyph) { in WriteSimpleGlyph() argument 127 WriteBbox(glyph_id, glyph); in WriteSimpleGlyph() 152 void WriteCompositeGlyph(int glyph_id, const Glyph& glyph) { in WriteCompositeGlyph() argument 155 WriteBbox(glyph_id, glyph); in WriteCompositeGlyph() 165 void WriteBbox(int glyph_id, const Glyph& glyph) { in WriteBbox() argument 166 bbox_bitmap_[glyph_id >> 3] |= 0x80 >> (glyph_id & 7); in WriteBbox()
|