/external/sfntly/cpp/src/sfntly/table/truetype/ |
D | glyph_table.cc | 54 GlyphTable::Glyph* GlyphTable::GetGlyph(int32_t offset, int32_t length) { in GetGlyph() 55 return GlyphTable::Glyph::GetGlyph(this, this->data_, offset, length); in GetGlyph() 112 CALLER_ATTACH GlyphTable::Glyph::Builder* 114 return Glyph::Builder::GetBuilder(this, data); in GlyphBuilder() 172 Glyph::Builder::GetBuilder(this, in Initialize() 205 GlyphTable::Glyph::~Glyph() {} in ~Glyph() 207 CALLER_ATTACH GlyphTable::Glyph* 208 GlyphTable::Glyph::GetGlyph(GlyphTable* table, in GetGlyph() 227 int32_t GlyphTable::Glyph::Padding() { in Padding() 232 int32_t GlyphTable::Glyph::GlyphType() { in GlyphType() [all …]
|
D | 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); 108 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr; 143 CALLER_ATTACH Glyph::Builder* GlyphBuilder(ReadableFontData* data); 161 class SimpleGlyph : public Glyph, public RefCounted<SimpleGlyph> { 170 class SimpleContour : public Glyph::Contour { 176 class SimpleGlyphBuilder : public Glyph::Builder, 190 friend class Glyph::Builder; [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
D | BitmapFont.java | 178 for (Glyph[] page : data.glyphs) { in load() 180 for (Glyph glyph : page) in load() 325 Glyph g = data.getGlyph(glyphs.charAt(index)); in setFixedWidthGlyphs() 329 Glyph g = data.getGlyph(glyphs.charAt(index)); in setFixedWidthGlyphs() 388 public static class Glyph { class in BitmapFont 452 public final Glyph[][] glyphs = new Glyph[PAGES][]; 454 public Glyph missingGlyph; 554 Glyph glyph = new Glyph(); in load() 610 Glyph glyph = getGlyph((char)first); in load() 618 Glyph spaceGlyph = getGlyph(' '); in load() [all …]
|
D | GlyphLayout.java | 22 import com.badlogic.gdx.graphics.g2d.BitmapFont.Glyph; 298 Array<Glyph> glyphs1 = second.glyphs; // Starts empty. in wrap() 299 Array<Glyph> glyphs2 = first.glyphs; // Starts with all the glyphs. in wrap() 333 Glyph last = run.glyphs.peek(); in adjustLastGlyph() 417 public Array<Glyph> glyphs = new Array(); 432 Array<Glyph> glyphs = this.glyphs; in toString() 434 Glyph g = glyphs.get(i); in toString()
|
D | BitmapFontCache.java | 21 import com.badlogic.gdx.graphics.g2d.BitmapFont.Glyph; 124 Array<Glyph> glyphs = run.glyphs; in tint() 127 Glyph glyph = glyphs.get(iii); in tint() 317 Array<Glyph> glyphs = layout.runs.get(i).glyphs; in requireGlyphs() 373 Array<Glyph> glyphs = run.glyphs; in addToCache() 378 Glyph glyph = glyphs.get(ii); in addToCache() 387 private void addGlyph (Glyph glyph, float x, float y, float color) { in addGlyph()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
D | BMFontUtil.java | 43 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 97 List<Glyph> glyphs = page.getGlyphs(); in save() 98 Collections.sort(glyphs, new Comparator<Glyph>() { in save() 99 public int compare (Glyph o1, Glyph o2) { in save() 104 Glyph glyph = (Glyph)glyphIter.next(); in save() 125 Glyph glyph = (Glyph)iter.next(); in save() 190 private Glyph getGlyph (char c) { in getGlyph() 198 void writeGlyph (PrintStream out, int pageWidth, int pageHeight, int pageIndex, Glyph glyph) { in writeGlyph()
|
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
D | FreeTypeFontGenerator.java | 31 import com.badlogic.gdx.graphics.g2d.BitmapFont.Glyph; 217 public Glyph glyph; 254 Glyph glyph = new Glyph(); in generateGlyphAndBitmap() 390 Glyph missingGlyph = createGlyph('\0', data, parameter, stroker, baseLine, packer); in generateData() 414 Glyph glyph = createGlyph(c, data, parameter, stroker, baseLine, packer); in generateData() 441 Glyph first = data.getGlyph(firstChar); in generateData() 446 Glyph second = data.getGlyph(secondChar); in generateData() 466 Glyph spaceGlyph = data.getGlyph(' '); in generateData() 468 spaceGlyph = new Glyph(); in generateData() 479 …Glyph createGlyph (char c, FreeTypeBitmapFontData data, FreeTypeFontParameter parameter, Stroker s… in createGlyph() [all …]
|
D | FreeType.java | 469 public Glyph getGlyph() { in getGlyph() 472 return new Glyph(glyph); in getGlyph() 483 public static class Glyph extends Pointer implements Disposable { class in FreeType 486 Glyph (long address) { in Glyph() method in FreeType.Glyph
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
D | UnicodeFont.java | 69 private final Glyph[][] glyphs = new Glyph[PAGES][]; 71 private final List<Glyph> queuedGlyphs = new ArrayList(256); 74 private Glyph missingGlyph; 214 Glyph glyph = (Glyph)iter.next(); in loadGlyphs() 330 Glyph glyph = getGlyph(vector.getGlyphCode(glyphIndex), codePoint, bounds, vector, glyphIndex); in drawUnicode() 385 …public Glyph getGlyph (int glyphCode, int codePoint, Rectangle bounds, GlyphVector vector, int ind… in getGlyph() 388 return new Glyph(codePoint, bounds, vector, index, this) { in getGlyph() 396 Glyph glyph = null; in getGlyph() 397 Glyph[] page = glyphs[pageIndex]; in getGlyph() 402 page = glyphs[pageIndex] = new Glyph[PAGE_SIZE]; in getGlyph() [all …]
|
D | GlyphPage.java | 56 private final List<Glyph> pageGlyphs = new ArrayList(32); 85 Glyph glyph = (Glyph)iter.next(); in loadGlyphs() 134 private boolean renderGlyph (Glyph glyph, int pageX, int pageY, int width, int height) { in renderGlyph() 143 BitmapFont.Glyph g = data.getGlyph((char)glyph.getCodePoint()); in renderGlyph() 215 Glyph dupe = pageGlyphs.get(i); in renderGlyph() 237 public List<Glyph> getGlyphs () { in getGlyphs()
|
D | Glyph.java | 31 public class Glyph { class 41 Glyph (int codePoint, Rectangle bounds, GlyphVector vector, int index, UnicodeFont unicodeFont) { in Glyph() method in Glyph 48 BitmapFont.Glyph g = unicodeFont.bitmapFont.getData().getGlyph((char)codePoint); in Glyph()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/ |
D | Effect.java | 22 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 29 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph); in draw()
|
D | DistanceFieldEffect.java | 28 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 55 private void drawGlyph(BufferedImage image, Glyph glyph) { in drawGlyph() 66 public void draw(BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
D | FilterEffect.java | 23 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 38 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
D | ColorEffect.java | 26 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 41 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
D | OutlineEffect.java | 28 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 47 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
D | GradientEffect.java | 27 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 47 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
D | ShadowEffect.java | 31 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph; 57 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/bmfont/ |
D | BitmapFontWriter.java | 23 import com.badlogic.gdx.graphics.g2d.BitmapFont.Glyph; 205 Array<Glyph> glyphs = new Array<Glyph>(256); in writeFont() 229 Glyph g = glyphs.get(i); in writeFont() 251 Glyph first = glyphs.get(i); in writeFont() 252 Glyph second = glyphs.get(j); in writeFont()
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/ |
D | FreeTypeIncrementalTest.java | 23 import com.badlogic.gdx.graphics.g2d.BitmapFont.Glyph; 56 public int getWrapIndex (Array<Glyph> glyphs, int start) { in create() 105 public static int getWrapIndex (Array<Glyph> glyphs, int start) { in getWrapIndex()
|
/external/skia/src/fonts/ |
D | SkGScalerContext.cpp | 248 struct Glyph { 254 Glyph* fGlyphs; 257 SkGFont(int count, Glyph* array);
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psnames/ |
D | module.mk | 20 $(ECHO_DRIVER)psnames $(ECHO_DRIVER_DESC)Postscript & Unicode Glyph name handling$(ECHO_DRIVER_DO…
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | ebdt_table.h | 97 CALLER_ATTACH BitmapGlyph* Glyph(int32_t offset,
|
D | ebdt_table.cc | 36 BitmapGlyph* EbdtTable::Glyph(int32_t offset, int32_t length, int32_t format) { in Glyph() function in sfntly::EbdtTable
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pcf/ |
D | README | 12 Glyph images are loaded into memory only on demand, thus leading to a small
|