Lines Matching refs:d

197         Matrix_Delegate d = sManager.getDelegate(native_object);  in native_isIdentity()  local
198 if (d == null) { in native_isIdentity()
202 return d.isIdentity(); in native_isIdentity()
207 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isAffine() local
208 if (d == null) { in native_isAffine()
212 return (d.computeTypeMask() & kPerspective_Mask) == 0; in native_isAffine()
217 Matrix_Delegate d = sManager.getDelegate(native_object); in native_rectStaysRect() local
218 if (d == null) { in native_rectStaysRect()
222 return (d.computeTypeMask() & kRectStaysRect_Mask) != 0; in native_rectStaysRect()
227 Matrix_Delegate d = sManager.getDelegate(native_object); in native_reset() local
228 if (d == null) { in native_reset()
232 reset(d.mValues); in native_reset()
237 Matrix_Delegate d = sManager.getDelegate(native_object); in native_set() local
238 if (d == null) { in native_set()
247 System.arraycopy(src.mValues, 0, d.mValues, 0, MATRIX_SIZE); in native_set()
252 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setTranslate() local
253 if (d == null) { in native_setTranslate()
257 setTranslate(d.mValues, dx, dy); in native_setTranslate()
263 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setScale() local
264 if (d == null) { in native_setScale()
268 d.mValues = getScale(sx, sy, px, py); in native_setScale()
273 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setScale() local
274 if (d == null) { in native_setScale()
278 d.mValues[0] = sx; in native_setScale()
279 d.mValues[1] = 0; in native_setScale()
280 d.mValues[2] = 0; in native_setScale()
281 d.mValues[3] = 0; in native_setScale()
282 d.mValues[4] = sy; in native_setScale()
283 d.mValues[5] = 0; in native_setScale()
284 d.mValues[6] = 0; in native_setScale()
285 d.mValues[7] = 0; in native_setScale()
286 d.mValues[8] = 1; in native_setScale()
291 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setRotate() local
292 if (d == null) { in native_setRotate()
296 d.mValues = getRotate(degrees, px, py); in native_setRotate()
301 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setRotate() local
302 if (d == null) { in native_setRotate()
306 setRotate(d.mValues, degrees); in native_setRotate()
312 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setSinCos() local
313 if (d == null) { in native_setSinCos()
320 setTranslate(d.mValues, -px, -py); in native_setSinCos()
323 d.postTransform(getRotate(sinValue, cosValue)); in native_setSinCos()
325 d.postTransform(getTranslate(px, py)); in native_setSinCos()
330 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setSinCos() local
331 if (d == null) { in native_setSinCos()
335 setRotate(d.mValues, sinValue, cosValue); in native_setSinCos()
341 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setSkew() local
342 if (d == null) { in native_setSkew()
346 d.mValues = getSkew(kx, ky, px, py); in native_setSkew()
351 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setSkew() local
352 if (d == null) { in native_setSkew()
356 d.mValues[0] = 1; in native_setSkew()
357 d.mValues[1] = kx; in native_setSkew()
358 d.mValues[2] = -0; in native_setSkew()
359 d.mValues[3] = ky; in native_setSkew()
360 d.mValues[4] = 1; in native_setSkew()
361 d.mValues[5] = 0; in native_setSkew()
362 d.mValues[6] = 0; in native_setSkew()
363 d.mValues[7] = 0; in native_setSkew()
364 d.mValues[8] = 1; in native_setSkew()
377 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setConcat() local
380 if (d != null && a_mtx != null && b_mtx != null) { in native_setConcat()
381 multiply(d.mValues, a_mtx.mValues, b_mtx.mValues); in native_setConcat()
387 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preTranslate() local
388 if (d != null) { in native_preTranslate()
389 d.preTransform(getTranslate(dx, dy)); in native_preTranslate()
396 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preScale() local
397 if (d != null) { in native_preScale()
398 d.preTransform(getScale(sx, sy, px, py)); in native_preScale()
404 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preScale() local
405 if (d != null) { in native_preScale()
406 d.preTransform(getScale(sx, sy)); in native_preScale()
413 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preRotate() local
414 if (d != null) { in native_preRotate()
415 d.preTransform(getRotate(degrees, px, py)); in native_preRotate()
421 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preRotate() local
422 if (d != null) { in native_preRotate()
428 d.preTransform(getRotate(sin, cos)); in native_preRotate()
435 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preSkew() local
436 if (d != null) { in native_preSkew()
437 d.preTransform(getSkew(kx, ky, px, py)); in native_preSkew()
443 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preSkew() local
444 if (d != null) { in native_preSkew()
445 d.preTransform(getSkew(kx, ky)); in native_preSkew()
451 Matrix_Delegate d = sManager.getDelegate(native_object); in native_preConcat() local
453 if (d != null && other != null) { in native_preConcat()
454 d.preTransform(other.mValues); in native_preConcat()
460 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postTranslate() local
461 if (d != null) { in native_postTranslate()
462 d.postTransform(getTranslate(dx, dy)); in native_postTranslate()
469 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postScale() local
470 if (d != null) { in native_postScale()
471 d.postTransform(getScale(sx, sy, px, py)); in native_postScale()
477 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postScale() local
478 if (d != null) { in native_postScale()
479 d.postTransform(getScale(sx, sy)); in native_postScale()
486 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postRotate() local
487 if (d != null) { in native_postRotate()
488 d.postTransform(getRotate(degrees, px, py)); in native_postRotate()
494 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postRotate() local
495 if (d != null) { in native_postRotate()
496 d.postTransform(getRotate(degrees)); in native_postRotate()
503 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postSkew() local
504 if (d != null) { in native_postSkew()
505 d.postTransform(getSkew(kx, ky, px, py)); in native_postSkew()
511 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postSkew() local
512 if (d != null) { in native_postSkew()
513 d.postTransform(getSkew(kx, ky)); in native_postSkew()
519 Matrix_Delegate d = sManager.getDelegate(native_object); in native_postConcat() local
521 if (d != null && other != null) { in native_postConcat()
522 d.postTransform(other.mValues); in native_postConcat()
529 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setRectToRect() local
530 if (d == null) { in native_setRectToRect()
535 reset(d.mValues); in native_setRectToRect()
540 d.mValues[0] = d.mValues[1] = d.mValues[2] = d.mValues[3] = d.mValues[4] = d.mValues[5] in native_setRectToRect()
541 = d.mValues[6] = d.mValues[7] = 0; in native_setRectToRect()
542 d.mValues[8] = 1; in native_setRectToRect()
579 d.mValues[0] = sx; in native_setRectToRect()
580 d.mValues[4] = sy; in native_setRectToRect()
581 d.mValues[2] = tx; in native_setRectToRect()
582 d.mValues[5] = ty; in native_setRectToRect()
583 d.mValues[1] = d.mValues[3] = d.mValues[6] = d.mValues[7] = 0; in native_setRectToRect()
587 d.mValues[8] = 1; in native_setRectToRect()
603 Matrix_Delegate d = sManager.getDelegate(native_object); in native_invert() local
604 if (d == null) { in native_invert()
614 AffineTransform affineTransform = d.getAffineTransform(); in native_invert()
632 Matrix_Delegate d = sManager.getDelegate(native_object); in native_mapPoints() local
633 if (d == null) { in native_mapPoints()
638 d.mapPoints(dst, dstIndex, src, srcIndex, ptCount); in native_mapPoints()
640 d.mapVectors(dst, dstIndex, src, srcIndex, ptCount); in native_mapPoints()
646 Matrix_Delegate d = sManager.getDelegate(native_object); in native_mapRect() local
647 if (d == null) { in native_mapRect()
651 return d.mapRect(dst, src); in native_mapRect()
656 Matrix_Delegate d = sManager.getDelegate(native_object); in native_mapRadius() local
657 if (d == null) { in native_mapRadius()
662 d.mapVectors(src, 0, src, 0, 2); in native_mapRadius()
671 Matrix_Delegate d = sManager.getDelegate(native_object); in native_getValues() local
672 if (d == null) { in native_getValues()
676 System.arraycopy(d.mValues, 0, values, 0, MATRIX_SIZE); in native_getValues()
681 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setValues() local
682 if (d == null) { in native_setValues()
686 System.arraycopy(values, 0, d.mValues, 0, MATRIX_SIZE); in native_setValues()