Lines Matching defs:advances

198      * <p>Enabling this flag causes glyph advances to be computed with subpixel
2268 int contextIndex, int contextCount, boolean isRtl, float[] advances,
2278 | (advances == null ? 0 :
2279 (advances.length - (advancesIndex + count)))) < 0) {
2288 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2295 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2299 if (advances != null) {
2301 advances[i] *= mInvCompatScaling;
2315 int contextStart, int contextEnd, boolean isRtl, float[] advances,
2323 | (advances == null ? 0 :
2324 (advances.length - advancesIndex - (end - start)))) < 0) {
2330 contextStart, contextEnd, isRtl, advances, advancesIndex);
2335 contextStart, contextEnd, isRtl, advances, advancesIndex);
2339 contextStart, contextEnd, isRtl, advances, advancesIndex, this);
2350 0, contextLen, isRtl, advances, advancesIndex);
2357 * between start and end, and if advances is not null, the advance
2361 * an advance of 0. Thus the number of returned advances is
2369 * <p>This generates the sum of the advances of glyphs for
2388 * @param advances array to receive the advances, must have room for all advances,
2390 * @param advancesIndex the position in advances at which to put the
2397 int contextEnd, boolean isRtl, float[] advances, int advancesIndex) {
2404 | (advances == null ? 0 :
2405 (advances.length - advancesIndex - (end - start)))) < 0) {
2415 contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2422 end, contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2426 if (advances != null) {
2428 advances[i] *= mInvCompatScaling;
2858 int bidiFlags, float[] advances, int advancesIndex);
2861 int bidiFlags, float[] advances, int advancesIndex);