Searched refs:glyphArray (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/layout/ |
D | CoverageTables.cpp | 55 if (SWAPW(glyphArray[extra]) <= ttGlyphID) { in getGlyphCoverage() 62 if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) { in getGlyphCoverage() 67 if (SWAPW(glyphArray[index]) == ttGlyphID) { in getGlyphCoverage()
|
D | CoverageTables.h | 30 TTGlyphID glyphArray[ANY_NUMBER]; member 34 LE_VAR_ARRAY(CoverageFormat1Table, glyphArray)
|
D | SegmentArrayProcessor2.cpp | 50 … TTGlyphID *glyphArray = (TTGlyphID *) ((char *) subtableHeader.getAliasRAW() + offset); in process() local 51 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]); in process()
|
D | SegmentArrayProcessor.cpp | 50 … LEReferenceToArrayOf<TTGlyphID> glyphArray(subtableHeader, success, offset, LE_UNBOUNDED_ARRAY); in process() local 51 … TTGlyphID newGlyph = SWAPW(glyphArray(LE_GET_GLYPH(thisGlyph) - firstGlyph, success)); in process()
|
D | ContextualSubstSubtables.h | 34 const TTGlyphID *glyphArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
|
D | ContextualSubstSubtables.cpp | 50 le_bool ContextualSubstitutionBase::matchGlyphIDs(const TTGlyphID *glyphArray, le_uint16 glyphCount, in matchGlyphIDs() argument 68 if (glyph != SWAPW(glyphArray[match])) { in matchGlyphIDs()
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-common-private.hh | 692 int i = glyphArray.bsearch (glyph_id); in get_coverage() 703 glyphArray.len.set (num_glyphs); in serialize() 704 if (unlikely (!c->extend (glyphArray))) return_trace (false); in serialize() 706 glyphArray[i] = glyphs[i]; in serialize() 714 return_trace (glyphArray.sanitize (c)); in sanitize() 718 return glyphs->has (glyphArray[index]); in intersects_coverage() 723 unsigned int count = glyphArray.len; in add_coverage() 725 glyphs->add (glyphArray[i]); in add_coverage() 732 inline bool more (void) { return i < c->glyphArray.len; } in more() 734 inline uint16_t get_glyph (void) { return c->glyphArray[i]; } in get_glyph() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_L_C_.py | 551 glyphArray = [struct.unpack(codeOffsetPairFormat, data[slice(*loc)]) for loc in indexingLocations] 552 glyphIds, offsets = list(map(list, zip(*glyphArray)))
|