/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/ |
index_sub_table.cc | 30 CALLER_ATTACH BitmapGlyphInfo* IndexSubTable::GlyphInfo(int32_t glyph_id) { 31 int32_t loca = CheckGlyphRange(glyph_id); 35 if (GlyphStartOffset(glyph_id) == -1) { 38 BitmapGlyphInfoPtr output = new BitmapGlyphInfo(glyph_id, 40 GlyphStartOffset(glyph_id), 41 GlyphLength(glyph_id), 46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { 47 int32_t glyph_start_offset = GlyphStartOffset(glyph_id); 79 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id) { 80 return CheckGlyphRange(glyph_id, first_glyph_index(), last_glyph_index()) [all...] |
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...] |
bitmap_glyph_info.cc | 21 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, 26 : glyph_id_(glyph_id), 34 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, 38 : glyph_id_(glyph_id), 58 glyph_id_ == rhs->glyph_id() &&
|
bitmap_glyph_info.h | 37 BitmapGlyphInfo(int32_t glyph_id, 49 BitmapGlyphInfo(int32_t glyph_id, 54 int32_t glyph_id() const { return glyph_id_; } function in class:sfntly::BitmapGlyphInfo
|
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...] |
bitmap_size_table.cc | 87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); 92 return subtable->GlyphOffset(glyph_id); 95 int32_t BitmapSizeTable::GlyphLength(int32_t glyph_id) { 96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); 100 return subtable->GlyphLength(glyph_id); 103 CALLER_ATTACH BitmapGlyphInfo* BitmapSizeTable::GlyphInfo(int32_t glyph_id) { 104 IndexSubTable* sub_table = SearchIndexSubTables(glyph_id); 108 return sub_table->GlyphInfo(glyph_id); 111 int32_t BitmapSizeTable::GlyphFormat(int32_t glyph_id) { [all...] |
index_sub_table_format4.h | 71 virtual int32_t GlyphLength(int32_t glyph_id); 72 virtual int32_t GlyphStartOffset(int32_t glyph_id); 103 int32_t FindCodeOffsetPair(int32_t glyph_id); 116 virtual int32_t GlyphStartOffset(int32_t glyph_id); 117 virtual int32_t GlyphLength(int32_t glyph_id); 124 int32_t FindCodeOffsetPair(int32_t glyph_id);
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
index_sub_table.cc | 30 CALLER_ATTACH BitmapGlyphInfo* IndexSubTable::GlyphInfo(int32_t glyph_id) { 31 int32_t loca = CheckGlyphRange(glyph_id); 35 if (GlyphStartOffset(glyph_id) == -1) { 38 BitmapGlyphInfoPtr output = new BitmapGlyphInfo(glyph_id, 40 GlyphStartOffset(glyph_id), 41 GlyphLength(glyph_id), 46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { 47 int32_t glyph_start_offset = GlyphStartOffset(glyph_id); 79 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id) { 80 return CheckGlyphRange(glyph_id, first_glyph_index(), last_glyph_index()) [all...] |
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...] |
bitmap_glyph_info.cc | 21 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, 26 : glyph_id_(glyph_id), 34 BitmapGlyphInfo::BitmapGlyphInfo(int32_t glyph_id, 38 : glyph_id_(glyph_id), 58 glyph_id_ == rhs->glyph_id() &&
|
bitmap_glyph_info.h | 37 BitmapGlyphInfo(int32_t glyph_id, 49 BitmapGlyphInfo(int32_t glyph_id, 54 int32_t glyph_id() const { return glyph_id_; } function in class:sfntly::BitmapGlyphInfo
|
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...] |
bitmap_size_table.cc | 87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); 92 return subtable->GlyphOffset(glyph_id); 95 int32_t BitmapSizeTable::GlyphLength(int32_t glyph_id) { 96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); 100 return subtable->GlyphLength(glyph_id); 103 CALLER_ATTACH BitmapGlyphInfo* BitmapSizeTable::GlyphInfo(int32_t glyph_id) { 104 IndexSubTable* sub_table = SearchIndexSubTables(glyph_id); 108 return sub_table->GlyphInfo(glyph_id); 111 int32_t BitmapSizeTable::GlyphFormat(int32_t glyph_id) { [all...] |
index_sub_table_format4.h | 71 virtual int32_t GlyphLength(int32_t glyph_id); 72 virtual int32_t GlyphStartOffset(int32_t glyph_id); 103 int32_t FindCodeOffsetPair(int32_t glyph_id); 116 virtual int32_t GlyphStartOffset(int32_t glyph_id); 117 virtual int32_t GlyphLength(int32_t glyph_id); 124 int32_t FindCodeOffsetPair(int32_t glyph_id);
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/ |
loca_table.cc | 26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { 27 if (glyph_id < 0 || glyph_id >= num_glyphs_) { 33 return Loca(glyph_id); 36 int32_t LocaTable::GlyphLength(int32_t glyph_id) { 37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { 43 return Loca(glyph_id + 1) - Loca(glyph_id); 124 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { [all...] |
loca_table.h | 77 int32_t GlyphOffset(int32_t glyph_id); 80 int32_t GlyphLength(int32_t glyph_id); 124 // @return glyph_id if correct, -1 otherwise. 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/truetype/ |
loca_table.cc | 26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { 27 if (glyph_id < 0 || glyph_id >= num_glyphs_) { 33 return Loca(glyph_id); 36 int32_t LocaTable::GlyphLength(int32_t glyph_id) { 37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { 43 return Loca(glyph_id + 1) - Loca(glyph_id); 124 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { [all...] |
loca_table.h | 77 int32_t GlyphOffset(int32_t glyph_id); 80 int32_t GlyphLength(int32_t glyph_id); 124 // @return glyph_id if correct, -1 otherwise. 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/harfbuzz-ng/src/ |
hb-ot-layout-gdef-table.hh | 49 inline unsigned int get_attach_points (hb_codepoint_t glyph_id, 54 unsigned int index = (this+coverage).get_coverage (glyph_id); 99 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const 121 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const 124 if (font->get_glyph_contour_point_for_origin (glyph_id, caretValuePoint, direction, &x, &y)) 146 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const 171 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const 174 case 1: return u.format1.get_caret_value (font, direction, glyph_id); 175 case 2: return u.format2.get_caret_value (font, direction, glyph_id); 176 case 3: return u.format3.get_caret_value (font, direction, glyph_id); [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-layout-gdef-table.hh | 49 inline unsigned int get_attach_points (hb_codepoint_t glyph_id, 54 unsigned int index = (this+coverage).get_coverage (glyph_id); 99 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const 121 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const 124 if (font->get_glyph_contour_point_for_origin (glyph_id, caretValuePoint, direction, &x, &y)) 146 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id HB_UNUSED) const 171 inline hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const 174 case 1: return u.format1.get_caret_value (font, direction, glyph_id); 175 case 2: return u.format2.get_caret_value (font, direction, glyph_id); 176 case 3: return u.format3.get_caret_value (font, direction, glyph_id); [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/ |
horizontal_metrics_table.cc | 70 int32_t HorizontalMetricsTable::AdvanceWidth(int32_t glyph_id) { 71 if (glyph_id < num_hmetrics_) { 72 return HMetricAdvanceWidth(glyph_id); 74 return HMetricAdvanceWidth(glyph_id - num_hmetrics_); 77 int32_t HorizontalMetricsTable::LeftSideBearing(int32_t glyph_id) { 78 if (glyph_id < num_hmetrics_) { 79 return HMetricLSB(glyph_id); 81 return LsbTableEntry(glyph_id - num_hmetrics_);
|
/external/sfntly/cpp/src/sfntly/table/core/ |
horizontal_metrics_table.cc | 70 int32_t HorizontalMetricsTable::AdvanceWidth(int32_t glyph_id) { 71 if (glyph_id < num_hmetrics_) { 72 return HMetricAdvanceWidth(glyph_id); 74 return HMetricAdvanceWidth(glyph_id - num_hmetrics_); 77 int32_t HorizontalMetricsTable::LeftSideBearing(int32_t glyph_id) { 78 if (glyph_id < num_hmetrics_) { 79 return HMetricLSB(glyph_id); 81 return LsbTableEntry(glyph_id - num_hmetrics_);
|
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
font_info.cc | 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id) 42 : glyph_id_(glyph_id), 47 return glyph_id_ == other.glyph_id(); 51 return glyph_id_ < other.glyph_id(); 207 unresolved_glyph_ids->insert(it->second.glyph_id()); 212 int32_t glyph_id = *(unresolved_glyph_ids->begin()); local 214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) { 216 fprintf(stderr, "%d larger than %d or smaller than 0\n", glyph_id, 221 int32_t length = loca_table_->GlyphLength(glyph_id); 245 int32_t glyph_id = composite_glyph->GlyphIndex(i); local [all...] |
font_info.h | 40 GlyphId(int32_t glyph_id, FontId font_id); 46 int32_t glyph_id() const { return glyph_id_; } function in class:subtly::GlyphId 47 void set_glyph_id(const int32_t glyph_id) { glyph_id_ = glyph_id; }
|
/external/sfntly/cpp/src/sample/subtly/ |
font_info.cc | 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id) 42 : glyph_id_(glyph_id), 47 return glyph_id_ == other.glyph_id(); 51 return glyph_id_ < other.glyph_id(); 207 unresolved_glyph_ids->insert(it->second.glyph_id()); 212 int32_t glyph_id = *(unresolved_glyph_ids->begin()); local 214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) { 216 fprintf(stderr, "%d larger than %d or smaller than 0\n", glyph_id, 221 int32_t length = loca_table_->GlyphLength(glyph_id); 245 int32_t glyph_id = composite_glyph->GlyphIndex(i); local [all...] |