HomeSort by relevance Sort by last modified time
    Searched defs:Matrix_Delegate (Results 1 - 2 of 2) sorted by null

  /frameworks/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 294 float[] mtx = Matrix_Delegate.getSkew(kx, ky);
295 AffineTransform matrixTx = Matrix_Delegate.getAffineTransform(mtx);
312 Matrix_Delegate matrixDelegate = Matrix_Delegate.getDelegate(nMatrix);
340 Matrix_Delegate matrixDelegate = Matrix_Delegate.getDelegate(nMatrix);
437 Matrix_Delegate matrixDelegate = Matrix_Delegate.getDelegate(matrix);
443 matrixDelegate.set(Matrix_Delegate.makeValues(transform));
Matrix_Delegate.java 45 public final class Matrix_Delegate {
50 private static final DelegateManager<Matrix_Delegate> sManager =
51 new DelegateManager<Matrix_Delegate>(Matrix_Delegate.class);
59 public static Matrix_Delegate getDelegate(long native_instance) {
67 Matrix_Delegate delegate = sManager.getDelegate(m.native_instance);
76 Matrix_Delegate delegate = sManager.getDelegate(m.native_instance);
87 public void set(Matrix_Delegate matrix) {
136 public static Matrix_Delegate make(AffineTransform matrix) {
137 return new Matrix_Delegate(makeValues(matrix))
    [all...]

Completed in 67 milliseconds