Lines Matching defs:advances

193      * <p>Enabling this flag causes glyph advances to be computed with subpixel
2172 int contextIndex, int contextCount, boolean isRtl, float[] advances,
2182 | (advances == null ? 0 :
2183 (advances.length - (advancesIndex + count)))) < 0) {
2192 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2199 contextIndex, contextCount, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2203 if (advances != null) {
2205 advances[i] *= mInvCompatScaling;
2219 int contextStart, int contextEnd, boolean isRtl, float[] advances,
2227 | (advances == null ? 0 :
2228 (advances.length - advancesIndex - (end - start)))) < 0) {
2234 contextStart, contextEnd, isRtl, advances, advancesIndex);
2239 contextStart, contextEnd, isRtl, advances, advancesIndex);
2243 contextStart, contextEnd, isRtl, advances, advancesIndex, this);
2254 0, contextLen, isRtl, advances, advancesIndex);
2261 * between start and end, and if advances is not null, the advance
2265 * an advance of 0. Thus the number of returned advances is
2273 * <p>This generates the sum of the advances of glyphs for
2292 * @param advances array to receive the advances, must have room for all advances,
2294 * @param advancesIndex the position in advances at which to put the
2301 int contextEnd, boolean isRtl, float[] advances, int advancesIndex) {
2308 | (advances == null ? 0 :
2309 (advances.length - advancesIndex - (end - start)))) < 0) {
2319 contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2326 end, contextStart, contextEnd, isRtl ? BIDI_FORCE_RTL : BIDI_FORCE_LTR, advances,
2330 if (advances != null) {
2332 advances[i] *= mInvCompatScaling;
2762 int bidiFlags, float[] advances, int advancesIndex);
2765 int bidiFlags, float[] advances, int advancesIndex);