Home
last modified time | relevance | path

Searched refs:glyph_id (Results 1 – 25 of 755) sorted by relevance

12345678910>>...31

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/paint_preview/common/
H A Dglyph_usage.cc24 void DenseGlyphUsage::Set(uint16_t glyph_id) { in Set() argument
26 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in Set()
28 bitset_[glyph_id] = true; in Set()
31 bool DenseGlyphUsage::IsSet(uint16_t glyph_id) const { in IsSet()
33 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in IsSet()
35 return bitset_[glyph_id]; in IsSet()
51 void SparseGlyphUsage::Set(uint16_t glyph_id) { in Set() argument
53 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in Set()
55 glyph_ids_.insert(glyph_id); in Set()
58 bool SparseGlyphUsage::IsSet(uint16_t glyph_id) const { in IsSet()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/paint_preview/common/
H A Dglyph_usage.cc24 void DenseGlyphUsage::Set(uint16_t glyph_id) { in Set() argument
26 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in Set()
28 bitset_[glyph_id] = true; in Set()
31 bool DenseGlyphUsage::IsSet(uint16_t glyph_id) const { in IsSet()
33 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in IsSet()
35 return bitset_[glyph_id]; in IsSet()
51 void SparseGlyphUsage::Set(uint16_t glyph_id) { in Set() argument
53 (glyph_id != 0 && (glyph_id < First() || glyph_id > Last()))) in Set()
55 glyph_ids_.insert(glyph_id); in Set()
58 bool SparseGlyphUsage::IsSet(uint16_t glyph_id) const { in IsSet()
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/utils/fonts/sfnt/
H A Dmerge.py38 for glyph_id in range(len(loca.offset_map) - 1):
39 offset, sz = loca.glyph_location(glyph_id)
40 prev_glyph_data = all_glyphs.get(glyph_id)
44 hmetrics_map[glyph_id] = hhea.metrics_for(glyph_id)
46 vmetrics_map[glyph_id] = vhea.metrics_for(glyph_id)
53 m = hhea.metrics_for(glyph_id)
54 if m != hmetrics_map[glyph_id]:
57 m = vhea.metrics_for(glyph_id)
58 if m != vmetrics_map[glyph_id]:
67 for glyph_id in sorted(all_glyphs):
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.cc26 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()
37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphLength()
43 return Loca(glyph_id + 1) - Loca(glyph_id); in GlyphLength()
125 if (CheckGlyphRange(glyph_id) == -1) { in GlyphOffset()
128 return GetLocaList()->at(glyph_id); in GlyphOffset()
132 if (CheckGlyphRange(glyph_id) == -1) { in GlyphLength()
135 return GetLocaList()->at(glyph_id + 1) - GetLocaList()->at(glyph_id); in GlyphLength()
218 if (glyph_id < 0 || glyph_id > LastGlyphIndex()) { in CheckGlyphRange()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc92 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
100 return subtable->GlyphLength(glyph_id); in GlyphLength()
108 return sub_table->GlyphInfo(glyph_id); in GlyphInfo()
330 int32_t glyph_id) { in GlyphInfo() argument
335 return sub_table->GlyphInfo(glyph_id); in GlyphInfo()
343 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
351 return subtable->GlyphLength(glyph_id); in GlyphLength()
380 (*output)[info->glyph_id()] = info; in GenerateLocaMap()
405 int32_t glyph_id) { in SearchIndexSubTables() argument
416 int32_t glyph_id) { in LinearSearchIndexSubTables() argument
[all …]
H A Dindex_sub_table.cc31 int32_t loca = CheckGlyphRange(glyph_id); in GlyphInfo()
35 if (GlyphStartOffset(glyph_id) == -1) { in GlyphInfo()
46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument
84 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id, in CheckGlyphRange() argument
87 if (glyph_id < first_glyph_id || glyph_id > last_glyph_id) { in CheckGlyphRange()
93 return glyph_id - first_glyph_id; in CheckGlyphRange()
108 int32_t glyph_id) { in GlyphInfo() argument
110 new BitmapGlyphInfo(glyph_id, in GlyphInfo()
112 GlyphStartOffset(glyph_id), in GlyphInfo()
113 GlyphLength(glyph_id), in GlyphInfo()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc92 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
100 return subtable->GlyphLength(glyph_id); in GlyphLength()
108 return sub_table->GlyphInfo(glyph_id); in GlyphInfo()
330 int32_t glyph_id) { in GlyphInfo() argument
335 return sub_table->GlyphInfo(glyph_id); in GlyphInfo()
343 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
351 return subtable->GlyphLength(glyph_id); in GlyphLength()
380 (*output)[info->glyph_id()] = info; in GenerateLocaMap()
405 int32_t glyph_id) { in SearchIndexSubTables() argument
416 int32_t glyph_id) { in LinearSearchIndexSubTables() argument
[all …]
H A Dindex_sub_table.cc31 int32_t loca = CheckGlyphRange(glyph_id); in GlyphInfo()
35 if (GlyphStartOffset(glyph_id) == -1) { in GlyphInfo()
46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() argument
84 int32_t IndexSubTable::CheckGlyphRange(int32_t glyph_id, in CheckGlyphRange() argument
87 if (glyph_id < first_glyph_id || glyph_id > last_glyph_id) { in CheckGlyphRange()
93 return glyph_id - first_glyph_id; in CheckGlyphRange()
108 int32_t glyph_id) { in GlyphInfo() argument
110 new BitmapGlyphInfo(glyph_id, in GlyphInfo()
112 GlyphStartOffset(glyph_id), in GlyphInfo()
113 GlyphLength(glyph_id), in GlyphInfo()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.cc27 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphOffset()
33 return Loca(glyph_id); in GlyphOffset()
37 if (glyph_id < 0 || glyph_id >= num_glyphs_) { in GlyphLength()
43 int32_t glyph_val = Loca(glyph_id); in GlyphLength()
44 int32_t glyph_next_val = Loca(glyph_id + 1); in GlyphLength()
129 if (CheckGlyphRange(glyph_id) == -1) { in GlyphOffset()
132 return GetLocaList()->at(glyph_id); in GlyphOffset()
136 if (CheckGlyphRange(glyph_id) == -1) { in GlyphLength()
139 return GetLocaList()->at(glyph_id + 1) - GetLocaList()->at(glyph_id); in GlyphLength()
223 if (glyph_id < 0 || glyph_id > LastGlyphIndex()) { in CheckGlyphRange()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/harfbuzz/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/print/harfbuzz-hb-view/harfbuzz-3.4.0/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/harfbuzz/src/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
271 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
271 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/www/firefox/firefox-99.0/gfx/harfbuzz/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/harfbuzz/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/rustybuzz-0.1.1/harfbuzz/src/
H A Dhb-aat-layout-common.hh50 if (unlikely(glyph_id >= num_glyphs)) in get_value()
52 return &arrayZ[glyph_id]; in get_value()
137 … return first <= glyph_id && glyph_id <= last ? &(base + valuesZ)[glyph_id - first] : nullptr; in get_value()
258 …return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? &valueArrayZ[glyph_id - firs… in get_value()
291 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
330 return u.format2.get_value(glyph_id); in get_value()
332 return u.format4.get_value(glyph_id); in get_value()
334 return u.format6.get_value(glyph_id); in get_value()
506 if (unlikely(glyph_id == DELETED_GLYPH)) in get_class()
639 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/print/harfbuzz/harfbuzz-3.4.0/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/print/harfbuzz-icu/harfbuzz-3.4.0/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/harfbuzz-ng/src/src/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
271 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/www/lagrange/lagrange-1.7.3/lib/harfbuzz/src/
H A Dhb-aat-layout-common.hh57 return &arrayZ[glyph_id]; in get_value()
112 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
146 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
273 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
274 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
308 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
349 case 2: return u.format2.get_value (glyph_id); in get_value()
350 case 4: return u.format4.get_value (glyph_id); in get_value()
351 case 6: return u.format6.get_value (glyph_id); in get_value()
649 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/harfbuzz/src/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
271 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/native/libharfbuzz/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
349 case 8: return u.format8.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/native/libharfbuzz/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
349 case 8: return u.format8.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/harfbuzz-sys-0.3.4/harfbuzz/src/
H A Dhb-aat-layout-common.hh54 return &arrayZ[glyph_id]; in get_value()
109 const T* get_value (hb_codepoint_t glyph_id) const in get_value()
143 return first <= glyph_id && glyph_id <= last ? &(base+valuesZ)[glyph_id - first] : nullptr; in get_value()
270 return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? in get_value()
271 &valueArrayZ[glyph_id - firstGlyph] : nullptr; in get_value()
305 if (!(firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount)) in get_value_or_null()
346 case 2: return u.format2.get_value (glyph_id); in get_value()
347 case 4: return u.format4.get_value (glyph_id); in get_value()
348 case 6: return u.format6.get_value (glyph_id); in get_value()
646 unsigned int i = glyph_id - firstGlyph; in get_class()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/sfntly/cpp/src/sample/subtly/
H A Dfont_info.cc41 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()
221 int32_t length = loca_table_->GlyphLength(glyph_id); in ResolveCompositeGlyphs()
224 fprintf(stderr, "Zero length glyph %d\n", glyph_id); in ResolveCompositeGlyphs()
228 int32_t offset = loca_table_->GlyphOffset(glyph_id); in ResolveCompositeGlyphs()
[all …]

12345678910>>...31