Home
last modified time | relevance | path

Searched refs:leftGlyph (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp1058 le_int32 leftGlyph = fGlyphCount; in appendRun() local
1066 if (minGlyph < leftGlyph) { in appendRun()
1067 leftGlyph = minGlyph; in appendRun()
1080 rightGlyph = last - leftGlyph; in appendRun()
1081 leftGlyph = last - swap; in appendRun()
1084 leftGlyph -= glyphBase; in appendRun()
1093 fVisualRunLastX -= fStyleRunInfo[run].positions[leftGlyph * 2]; in appendRun()
1100 le_int32 glyphCount = rightGlyph - leftGlyph; in appendRun()
1105 LE_ARRAY_COPY(glyphs, &fStyleRunInfo[run].glyphs[leftGlyph], glyphCount); in appendRun()
1107 …for (outGlyph = 0, inGlyph = leftGlyph * 2; inGlyph <= rightGlyph * 2; inGlyph += 2, outGlyph += 2… in appendRun()
[all …]
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
DFreeType.java278 public int getKerning(int leftGlyph, int rightGlyph, int kernMode) { in getKerning() argument
279 return getKerning(address, leftGlyph, rightGlyph, kernMode); in getKerning()
282 private static native int getKerning(long face, int leftGlyph, int rightGlyph, int kernMode); /* in getKerning() argument
/external/libgdx/extensions/gdx-freetype/jni/
Dcom.badlogic.gdx.graphics.g2d.freetype.FreeType.cpp242 …eeType_00024Face_getKerning(JNIEnv* env, jclass clazz, jlong face, jint leftGlyph, jint rightGlyph… in Java_com_badlogic_gdx_graphics_g2d_freetype_FreeType_00024Face_getKerning() argument
248 FT_Error error = FT_Get_Kerning((FT_Face)face, leftGlyph, rightGlyph, kernMode, &kerning); in Java_com_badlogic_gdx_graphics_g2d_freetype_FreeType_00024Face_getKerning()