Lines Matching defs:advances

183      * <p>Enabling this flag causes glyph advances to be computed with subpixel
2086 int contextIndex, int contextCount, boolean isRtl, float[] advances,
2096 | (advances == null ? 0 :
2097 (advances.length - (advancesIndex + count)))) < 0) {
2106 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2113 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2117 if (advances != null) {
2119 advances[i] *= mInvCompatScaling;
2133 int contextStart, int contextEnd, boolean isRtl, float[] advances,
2141 | (advances == null ? 0 :
2142 (advances.length - advancesIndex - (end - start)))) < 0) {
2148 contextStart, contextEnd, isRtl, advances, advancesIndex);
2153 contextStart, contextEnd, isRtl, advances, advancesIndex);
2157 contextStart, contextEnd, isRtl, advances, advancesIndex, this);
2168 0, contextLen, isRtl, advances, advancesIndex);
2175 * between start and end, and if advances is not null, the advance
2179 * an advance of 0. Thus the number of returned advances is
2187 * <p>This generates the sum of the advances of glyphs for
2206 * @param advances array to receive the advances, must have room for all advances,
2208 * @param advancesIndex the position in advances at which to put the
2215 int contextEnd, boolean isRtl, float[] advances, int advancesIndex) {
2222 | (advances == null ? 0 :
2223 (advances.length - advancesIndex - (end - start)))) < 0) {
2233 contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2240 end, contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2244 if (advances != null) {
2246 advances[i] *= mInvCompatScaling;
2682 int bidiFlags, float[] advances, int advancesIndex);
2685 int bidiFlags, float[] advances, int advancesIndex);