HomeSort by relevance Sort by last modified time
    Searched refs:Glyph (Results 1 - 8 of 8) sorted by null

  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.h 39 class Glyph : public SubTable {
76 virtual ~Glyph();
77 static CALLER_ATTACH Glyph* GetGlyph(GlyphTable* table,
96 Glyph(ReadableFontData* data, int32_t glyph_type);
107 }; // class GlyphTable::Glyph
108 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr;
124 // Gets the List of glyph builders for the glyph table builder. These may be
126 // the final glyph table produced.
127 // If there is no current data for the glyph builder or the glyph builder
    [all...]
glyph_table.cc 54 GlyphTable::Glyph* GlyphTable::GetGlyph(int32_t offset, int32_t length) {
55 return GlyphTable::Glyph::GetGlyph(this, this->data_, offset, length);
112 CALLER_ATTACH GlyphTable::Glyph::Builder*
114 return Glyph::Builder::GetBuilder(this, data);
172 Glyph::Builder::GetBuilder(this,
187 "Loca values not set - unable to parse glyph data.");
203 * GlyphTable::Glyph class
205 GlyphTable::Glyph::~Glyph() {}
207 CALLER_ATTACH GlyphTable::Glyph*
214 GlyphPtr glyph; local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
ebdt_table.h 54 // Gets the List of glyph builders for the glyph table builder. These may be
56 // the final glyph table produced.
57 // If there is no current data for the glyph builder or the glyph builders
58 // have not been previously set then this will return an empty glyph builder
61 // empty glyph builder List will be returned.
62 // @return the list of glyph builders
65 // Replace the internal glyph builders with the one provided. The provided
67 // This call is only required if the entire set of glyphs in the glyph
    [all...]
ebdt_table.cc 36 BitmapGlyph* EbdtTable::Glyph(int32_t offset, int32_t length, int32_t format) {
197 "Loca values not set - unable to parse glyph data.");
  /external/skia/src/fonts/
SkGScalerContext.cpp 76 void SkGScalerContext::generateAdvance(SkGlyph* glyph) {
77 fProxy->getAdvance(glyph);
80 fMatrix.mapXY(SkFixedToScalar(glyph->fAdvanceX),
81 SkFixedToScalar(glyph->fAdvanceY), &advance);
82 glyph->fAdvanceX = SkScalarToFixed(advance.fX);
83 glyph->fAdvanceY = SkScalarToFixed(advance.fY);
86 void SkGScalerContext::generateMetrics(SkGlyph* glyph) {
87 fProxy->getMetrics(glyph);
90 fMatrix.mapXY(SkFixedToScalar(glyph->fAdvanceX),
91 SkFixedToScalar(glyph->fAdvanceY), &advance)
    [all...]
  /external/fonttools/Lib/fontTools/
inspect.py 80 if isinstance(value, ttLib.getTableModule('glyf').Glyph):
81 # Glyph type needs explicit expanding to be useful
subset.py 87 # if no glyph will ever /not match/, we can optimize class 0 out too.
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 50 glyph = Glyph(glyphdata)
51 self.glyphs[glyphName] = glyph
58 for glyph in self.glyphs.values():
59 glyph.expand(self)
69 glyph = self.glyphs[glyphName]
70 glyphData = glyph.compile(self, recalcBBoxes)
95 glyph = self[glyphName]
96 if glyph.numberOfContours:
99 ("xMin", glyph.xMin)
    [all...]

Completed in 213 milliseconds