Searched refs:glyphArray (Results 1 – 12 of 12) 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 | 635 int i = glyphArray.bsearch (glyph_id); in get_coverage() 646 glyphArray.len.set (num_glyphs); in serialize() 647 if (unlikely (!c->extend (glyphArray))) return TRACE_RETURN (false); in serialize() 649 glyphArray[i] = glyphs[i]; in serialize() 656 return TRACE_RETURN (glyphArray.sanitize (c)); in sanitize() 660 return glyphs->has (glyphArray[index]); in intersects_coverage() 665 unsigned int count = glyphArray.len; in add_coverage() 667 glyphs->add (glyphArray[i]); in add_coverage() 674 inline bool more (void) { return i < c->glyphArray.len; } in more() 676 inline uint16_t get_glyph (void) { return c->glyphArray[i]; } in get_glyph() [all …]
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
D | hb-ot-layout-common-private.hh | 634 int i = glyphArray.search (glyph_id); in get_coverage() 645 glyphArray.len.set (num_glyphs); in serialize() 646 if (unlikely (!c->extend (glyphArray))) return TRACE_RETURN (false); in serialize() 648 glyphArray[i] = glyphs[i]; in serialize() 655 return TRACE_RETURN (glyphArray.sanitize (c)); in sanitize() 659 return glyphs->has (glyphArray[index]); in intersects_coverage() 664 unsigned int count = glyphArray.len; in add_coverage() 666 glyphs->add (glyphArray[i]); in add_coverage() 673 inline bool more (void) { return i < c->glyphArray.len; } in more() 675 inline uint16_t get_glyph (void) { return c->glyphArray[i]; } in get_glyph() [all …]
|
/external/skia/src/gpu/ |
D | GrTextStrike.cpp | 274 SkTDArray<GrGlyph*>& glyphArray = fCache.getArray(); in removePlot() local 275 for (int i = 0; i < glyphArray.count(); ++i) { in removePlot() 276 if (plot == glyphArray[i]->fPlot) { in removePlot() 277 glyphArray[i]->fPlot = NULL; in removePlot()
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrTextStrike.cpp | 274 SkTDArray<GrGlyph*>& glyphArray = fCache.getArray(); in removePlot() local 275 for (int i = 0; i < glyphArray.count(); ++i) { in removePlot() 276 if (plot == glyphArray[i]->fPlot) { in removePlot() 277 glyphArray[i]->fPlot = NULL; in removePlot()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/ |
D | OpenTypeVerticalData.cpp | 121 OpenType::GlyphID glyphArray[1]; member 180 if (!isValidEnd(buffer, &coverage1->glyphArray[countFrom]) || countTo != countFrom) in getSubstitutions() 183 map->set(coverage1->glyphArray[i], singleSubstitution2->substitute[i]); in getSubstitutions()
|
/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)))
|