Searched refs:baseGlyph (Results 1 – 10 of 10) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | C_O_L_R_.py | 24 baseGlyph = baseRec.BaseGlyph 34 colorLayerLists[baseGlyph] = layers 48 baseGlyph: [(layer.name, layer.colorID) for layer in layers] 49 for baseGlyph, layers in self.ColorLayers.items() 91 for baseGlyph in sorted(self.ColorLayers.keys(), key=ttFont.getGlyphID): 92 writer.begintag("ColorGlyph", name=baseGlyph) 94 for layer in self.ColorLayers[baseGlyph]:
|
D | _g_l_y_f.py | 655 baseGlyph = glyfTable[compo.glyphName] 656 if baseGlyph.numberOfContours == 0: 658 elif baseGlyph.numberOfContours > 0: 659 nP, nC = baseGlyph.getMaxpValues() 661 nP, nC, componentDepth = baseGlyph.getCompositeMaxpValues(
|
/external/fonttools/Lib/fontTools/colorLib/ |
D | builder.py | 157 for baseGlyph, layers in colorGlyphItems: 159 baseRec.BaseGlyph = baseGlyph 385 for baseGlyph, layers in colorGlyphs.items(): 387 colorGlyphsV0[baseGlyph] = layers 389 colorGlyphsV1[baseGlyph] = layers 549 baseGlyph: str, layerBuilder: LayerV1ListBuilder, paint: _PaintInput 552 self.BaseGlyph = baseGlyph 559 for baseGlyph, error in sorted(errors.items()): 578 for baseGlyph, paint in colorGlyphItems: 580 baseGlyphs.append(buildBaseGlyphV1Record(baseGlyph, layerBuilder, paint)) [all …]
|
/external/skqp/src/ports/ |
D | SkTypeface_win_dw.cpp | 102 for (int baseGlyph = 0; baseGlyph < glyphCount; baseGlyph += scratchCount) { in onCharsToGlyphs() local 103 int glyphsLeft = glyphCount - baseGlyph; in onCharsToGlyphs() 108 fDWriteFontFace->GetGlyphIndices(scratch, limit, &glyphs[baseGlyph]); in onCharsToGlyphs()
|
/external/fonttools/Tests/pens/ |
D | ttGlyphPen_test.py | 228 baseGlyph = pen.glyph() 229 glyphSet[componentName] = _TestGlyph(baseGlyph) 238 compositeGlyph.compile({'a': baseGlyph})
|
/external/fonttools/Lib/fontTools/misc/ |
D | psCharStrings.py | 578 baseGlyph = StandardEncoding[bchar] 579 self.pen.addComponent(baseGlyph, (1, 0, 0, 1, 0, 0)) 925 baseGlyph = StandardEncoding[bchar] 926 self.pen.addComponent(baseGlyph, (1, 0, 0, 1, 0, 0))
|
/external/fonttools/Lib/fontTools/subset/ |
D | cff.py | 42 baseGlyph = StandardEncoding[bchar] 44 self.components.add(baseGlyph)
|
/external/skqp/tools/fonts/ |
D | SkTestSVGTypeface.cpp | 1206 SkPath baseGlyph; in finishGlyph() local 1207 fBasePath.resolve(&baseGlyph); in finishGlyph() 1208 fGlyf->fBounds = this->writePath(baseGlyph, false); in finishGlyph()
|
/external/skia/tools/fonts/ |
D | TestSVGTypeface.cpp | 1336 SkPath baseGlyph; in finishGlyph() local 1337 fBasePath.resolve(&baseGlyph); in finishGlyph() 1338 fGlyf->fBounds = this->writePath(baseGlyph, false); in finishGlyph()
|
/external/fonttools/Tests/ttLib/ |
D | woff2_test.py | 861 for baseGlyph, (offsetX, offsetY) in self.components: 862 pen.addComponent(baseGlyph, (1, 0, 0, 1, offsetX, offsetY))
|