Lines Matching refs:hold

48     double[] hold = new double[14];     // The cache of interpolated coords  field in FlatteningPathIterator
176 int have = hold.length - holdIndex; in ensureHoldCapacity()
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
179 System.arraycopy(hold, holdIndex, in ensureHoldCapacity()
182 hold = newhold; in ensureHoldCapacity()
208 holdType = src.currentSegment(hold); in next()
216 curx = hold[0]; in next()
217 cury = hold[1]; in next()
234 holdIndex = hold.length - 6; in next()
235 holdEnd = hold.length - 2; in next()
236 hold[holdIndex + 0] = curx; in next()
237 hold[holdIndex + 1] = cury; in next()
238 hold[holdIndex + 2] = hold[0]; in next()
239 hold[holdIndex + 3] = hold[1]; in next()
240 hold[holdIndex + 4] = curx = hold[2]; in next()
241 hold[holdIndex + 5] = cury = hold[3]; in next()
246 if (QuadCurve2D.getFlatnessSq(hold, holdIndex) < squareflat) { in next()
251 QuadCurve2D.subdivide(hold, holdIndex, in next()
252 hold, holdIndex - 4, in next()
253 hold, holdIndex); in next()
279 holdIndex = hold.length - 8; in next()
280 holdEnd = hold.length - 2; in next()
281 hold[holdIndex + 0] = curx; in next()
282 hold[holdIndex + 1] = cury; in next()
283 hold[holdIndex + 2] = hold[0]; in next()
284 hold[holdIndex + 3] = hold[1]; in next()
285 hold[holdIndex + 4] = hold[2]; in next()
286 hold[holdIndex + 5] = hold[3]; in next()
287 hold[holdIndex + 6] = curx = hold[4]; in next()
288 hold[holdIndex + 7] = cury = hold[5]; in next()
293 if (CubicCurve2D.getFlatnessSq(hold, holdIndex) < squareflat) { in next()
298 CubicCurve2D.subdivide(hold, holdIndex, in next()
299 hold, holdIndex - 6, in next()
300 hold, holdIndex); in next()
352 coords[0] = (float) hold[holdIndex + 0]; in currentSegment()
353 coords[1] = (float) hold[holdIndex + 1]; in currentSegment()
387 coords[0] = hold[holdIndex + 0]; in currentSegment()
388 coords[1] = hold[holdIndex + 1]; in currentSegment()