Home
last modified time | relevance | path

Searched refs:glyphArray (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/layout/
DCoverageTables.cpp55 if (SWAPW(glyphArray[extra]) <= ttGlyphID) { in getGlyphCoverage()
62 if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) { in getGlyphCoverage()
67 if (SWAPW(glyphArray[index]) == ttGlyphID) { in getGlyphCoverage()
DCoverageTables.h30 TTGlyphID glyphArray[ANY_NUMBER]; member
34 LE_VAR_ARRAY(CoverageFormat1Table, glyphArray)
DSegmentArrayProcessor2.cpp50 … TTGlyphID *glyphArray = (TTGlyphID *) ((char *) subtableHeader.getAliasRAW() + offset); in process() local
51 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]); in process()
DSegmentArrayProcessor.cpp50 … 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()
DContextualSubstSubtables.h34 const TTGlyphID *glyphArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
DContextualSubstSubtables.cpp50 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/
Dhb-ot-layout-common-private.hh692 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/
DE_B_L_C_.py551 glyphArray = [struct.unpack(codeOffsetPairFormat, data[slice(*loc)]) for loc in indexingLocations]
552 glyphIds, offsets = list(map(list, zip(*glyphArray)))