HomeSort by relevance Sort by last modified time
    Searched defs:glyphIndex (Results 1 - 6 of 6) sorted by null

  /frameworks/av/cmds/screenrecord/
TextRenderer.cpp 160 size_t TextRenderer::glyphIndex(char ch) const {
173 size_t chi = glyphIndex(str[i]);
200 size_t chi = glyphIndex(str[i]);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
BitmapFontCache.java 202 int glyphIndex = glyphIndices.items[j];
205 if (glyphIndex >= end) break;
208 if (glyphIndex >= start) { // && glyphIndex < end
256 int glyphIndex = glyphIndices.get(ii);
259 if (glyphIndex >= end) break;
262 if (offset == -1 && glyphIndex >= start) offset = ii;
265 if (glyphIndex >= start) // && gInd < end
  /external/skia/src/sfnt/
SkOTTable_glyf.h 155 SK_OT_USHORT glyphIndex;
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/
UnicodeFont.java 321 for (int glyphIndex = 0, n = vector.getNumGlyphs(); glyphIndex < n; glyphIndex++) {
322 int charIndex = vector.getGlyphCharIndex(glyphIndex);
328 Rectangle bounds = getGlyphBounds(vector, glyphIndex, codePoint);
330 Glyph glyph = getGlyph(vector.getGlyphCode(glyphIndex), codePoint, bounds, vector, glyphIndex);
362 if (glyphIndex > 0) extraX += paddingRight + paddingLeft + paddingAdvanceX;
395 int glyphIndex = glyphCode & (PAGE_SIZE - 1);
399 glyph = page[glyphIndex];
    [all...]
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeTypeFontGenerator.java 662 int glyphIndex = face.getCharIndex(ch);
667 int kerning = face.getKerning(glyphIndex, otherIndex, 0);
670 kerning = face.getKerning(otherIndex, glyphIndex, 0);
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 450 FT_UInt glyphIndex;
451 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
452 while (glyphIndex) {
453 (*glyphToUnicode)[glyphIndex] = charCode;
454 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex);
    [all...]

Completed in 196 milliseconds