Home
last modified time | relevance | path

Searched refs:CompositeGlyphBuilder (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/truetype/
Dglyph_table.h244 class CompositeGlyphBuilder : public Glyph::Builder,
245 public RefCounted<CompositeGlyphBuilder> {
247 virtual ~CompositeGlyphBuilder();
252 explicit CompositeGlyphBuilder(WritableFontData* data);
253 explicit CompositeGlyphBuilder(ReadableFontData* data);
Dglyph_table.cc315 builder = new CompositeGlyph::CompositeGlyphBuilder(sliced_data); in GetBuilder()
595 GlyphTable::CompositeGlyph::CompositeGlyphBuilder::~CompositeGlyphBuilder() { in ~CompositeGlyphBuilder()
598 GlyphTable::CompositeGlyph::CompositeGlyphBuilder::CompositeGlyphBuilder( in CompositeGlyphBuilder() function in sfntly::GlyphTable::CompositeGlyph::CompositeGlyphBuilder
603 GlyphTable::CompositeGlyph::CompositeGlyphBuilder::CompositeGlyphBuilder( in CompositeGlyphBuilder() function in sfntly::GlyphTable::CompositeGlyph::CompositeGlyphBuilder
609 GlyphTable::CompositeGlyph::CompositeGlyphBuilder::SubBuildTable( in SubBuildTable()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/truetype/
DCompositeGlyph.java169 public static class CompositeGlyphBuilder extends Glyph.Builder<CompositeGlyph> { class in CompositeGlyph
170 protected CompositeGlyphBuilder(WritableFontData data, int offset, int length) { in CompositeGlyphBuilder() method in CompositeGlyph.CompositeGlyphBuilder
174 protected CompositeGlyphBuilder(ReadableFontData data, int offset, int length) { in CompositeGlyphBuilder() method in CompositeGlyph.CompositeGlyphBuilder
DGlyph.java186 return new CompositeGlyph.CompositeGlyphBuilder(data, offset, length); in getBuilder()