Home
last modified time | relevance | path

Searched refs:Glyph (Results 1 – 25 of 34) sorted by relevance

12

/external/sfntly/cpp/src/sfntly/table/truetype/
Dglyph_table.cc54 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 …]
Dglyph_table.h39 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/
DBitmapFont.java178 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 …]
DGlyphLayout.java22 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()
DBitmapFontCache.java21 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/
DBMFontUtil.java43 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/
DFreeTypeFontGenerator.java31 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()
479Glyph createGlyph (char c, FreeTypeBitmapFontData data, FreeTypeFontParameter parameter, Stroker s… in createGlyph()
[all …]
DFreeType.java469 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/
DUnicodeFont.java69 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 …]
DGlyphPage.java56 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()
DGlyph.java31 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/
DEffect.java22 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph;
29 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph); in draw()
DDistanceFieldEffect.java28 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()
DFilterEffect.java23 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph;
38 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
DColorEffect.java26 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph;
41 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
DOutlineEffect.java28 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph;
47 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
DGradientEffect.java27 import com.badlogic.gdx.tools.hiero.unicodefont.Glyph;
47 public void draw (BufferedImage image, Graphics2D g, UnicodeFont unicodeFont, Glyph glyph) { in draw()
DShadowEffect.java31 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/
DBitmapFontWriter.java23 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/
DFreeTypeIncrementalTest.java23 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/
DSkGScalerContext.cpp248 struct Glyph {
254 Glyph* fGlyphs;
257 SkGFont(int count, Glyph* array);
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psnames/
Dmodule.mk20 $(ECHO_DRIVER)psnames $(ECHO_DRIVER_DESC)Postscript & Unicode Glyph name handling$(ECHO_DRIVER_DO…
/external/sfntly/cpp/src/sfntly/table/bitmap/
Debdt_table.h97 CALLER_ATTACH BitmapGlyph* Glyph(int32_t offset,
Debdt_table.cc36 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/
DREADME12 Glyph images are loaded into memory only on demand, thus leading to a small

12