/prebuilts/go/darwin-x86/doc/progs/ |
image_draw.go | 20 Glyph() 107 func Glyph() { 112 // GLYPH OMIT
|
/prebuilts/go/linux-x86/doc/progs/ |
image_draw.go | 20 Glyph() 107 func Glyph() { 112 // GLYPH OMIT
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
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/sfntly/cpp/src/sfntly/table/truetype/ |
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...] |
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...] |
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
Glyph.java | 29 /** Represents the glyph in a font for a unicode codepoint.
31 public class Glyph {
41 Glyph (int codePoint, Rectangle bounds, GlyphVector vector, int index, UnicodeFont unicodeFont) {
48 BitmapFont.Glyph g = unicodeFont.bitmapFont.getData().getGlyph((char)codePoint);
94 /** The unicode codepoint the glyph represents. */
99 /** Returns true if the font does not have a glyph for this codepoint. */
104 /** The width of the glyph's image. */
109 /** The height of the glyph's image. */
114 /** The shape to use to draw this glyph. This is set to null after the glyph is stored in a GlyphPage. */ [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...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
BitmapFont.java | 43 * the AngleCode BMFont text format that describes where each glyph is on the image. 46 * saves needing to compute the location of each glyph each frame. 82 /** Creates a BitmapFont with the glyphs relative to the specified region. If the region is null, the glyph textures are loaded 89 * should not be flipped). If the region is null the glyph images are loaded from the image path in the font file. */ 94 /** Creates a BitmapFont with the glyphs relative to the specified region. If the region is null, the glyph textures are loaded 98 * should not be flipped). If the region is null the glyph images are loaded from the image path in the font file. 178 for (Glyph[] page : data.glyphs) { 180 for (Glyph glyph : page) 181 if (glyph != null) data.setGlyphRegion(glyph, regions.get(glyph.page)) 554 Glyph glyph = new Glyph(); local 610 Glyph glyph = getGlyph((char)first); local 791 Glyph glyph = getGlyph(ch); local [all...] |
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
FreeType.java | 259 return (jlong)((FT_Face)face)->glyph;
441 FT_GlyphSlot glyph = ((FT_GlyphSlot)slot);
442 return (jlong)&(glyph->bitmap);
469 public Glyph getGlyph() {
470 long glyph = getGlyph(address);
local 471 if(glyph == 0) throw new GdxRuntimeException("Couldn't get glyph");
472 return new Glyph(glyph);
476 FT_Glyph glyph;
[all...] |