HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 476 - 500 of 946) sorted by null

<<11121314151617181920>>

  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
MainActivity.java 24 import android.graphics.Matrix;
49 Matrix mMatrix = new Matrix();
50 Matrix mInverseMatrix = new Matrix();
217 Matrix matrix = mImgView.getImageMatrix(); local
DrawView.java 23 import android.graphics.Matrix;
73 * Assumes imageView is using matrix mode
85 Matrix m = mImageView.getImageMatrix();
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
FocusOverlayManager.java 19 import android.graphics.Matrix;
79 private Matrix mMatrix;
120 mMatrix = new Matrix();
164 Matrix matrix = new Matrix(); local
165 prepareMatrix(matrix, mMirror, mDisplayOrientation,
167 // In face detection, the matrix converts the driver coordinates to UI
168 // coordinates. In tap focus, the inverted matrix converts the UI
170 matrix.invert(mMatrix)
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AccessibilityController.java 32 import android.graphics.Matrix;
236 Matrix outMatrix) {
237 sTempFloats[Matrix.MSCALE_X] = windowState.mWinAnimator.mDsDx;
238 sTempFloats[Matrix.MSKEW_Y] = windowState.mWinAnimator.mDtDx;
239 sTempFloats[Matrix.MSKEW_X] = windowState.mWinAnimator.mDtDy;
240 sTempFloats[Matrix.MSCALE_Y] = windowState.mWinAnimator.mDsDy;
241 sTempFloats[Matrix.MTRANS_X] = windowState.mShownPosition.x;
242 sTempFloats[Matrix.MTRANS_Y] = windowState.mShownPosition.y;
243 sTempFloats[Matrix.MPERSP_0] = 0;
244 sTempFloats[Matrix.MPERSP_1] = 0
549 Matrix matrix = mTempMatrix; local
1228 Matrix matrix = mTempMatrix; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 28 import android.graphics.Matrix;
122 private Matrix mShaderMatrix = new Matrix();
218 * This function calculates a Image to Screen Transformation matrix
221 * @return Image to Screen transformation matrix
223 protected Matrix getImageToScreenMatrix(boolean reflectRotation) {
226 return new Matrix();
228 Matrix m = GeometryMathUtils.getImageToScreenMatrix(master.getPreset().getGeometryFilters(),
238 * This function calculates a to Screen Image Transformation matrix
241 * @return Screen to Image transformation matrix
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 24 import android.graphics.Matrix;
102 /** The matrix used for drawing; this may be {@code null} */
103 private Matrix mDrawMatrix;
104 /** A matrix to apply the scaling of the photo */
105 private Matrix mMatrix = new Matrix();
106 /** The original matrix for this image; used to reset any transformations applied by the user */
107 private Matrix mOriginalMatrix = new Matrix();
173 /** Array to store a copy of the matrix values *
635 final Matrix matrix = new Matrix(mDrawMatrix); local
    [all...]
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
XYPlotWithBgImgActivity.java 119 Matrix m = new Matrix();
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 17 /* Optimized selfadjoint matrix += alpha * uv' + conj(alpha)*vu'
32 Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i+i, size-i) +=
46 Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i, i+1) +=
TriangularSolverMatrix_BLAS.h 29 * Triangular matrix * matrix product functionality based on ?TRMM.
69 typedef Matrix<EIGTYPE, Dynamic, Dynamic, TriStorageOrder> MatrixTri; \
122 typedef Matrix<EIGTYPE, Dynamic, Dynamic, TriStorageOrder> MatrixTri; \
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 32 * \brief Reduces a square matrix to Hessenberg form by an orthogonal similarity transformation
34 * \tparam _MatrixType the type of the matrix of which we are computing the Hessenberg decomposition
36 * This class performs an Hessenberg decomposition of a matrix \f$ A \f$. In
38 * matrix \f$ Q \f$ and a Hessenberg matrix \f$ H \f$ such that \f$ A = Q H
39 * Q^T \f$. An orthogonal matrix is a matrix whose inverse equals its
40 * transpose (\f$ Q^{-1} = Q^T \f$). A Hessenberg matrix has zeros below the
42 * of a complex matrix is \f$ A = Q H Q^* \f$ with \f$ Q \f$ unitary (that is,
46 * given matrix. Alternatively, you can use th
    [all...]
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 25 * conversion from/to a 2x2 rotation matrix. Moreover this class aims to provide a similar
52 typedef Matrix<Scalar,2,1> Vector2;
53 typedef Matrix<Scalar,2,2> Matrix2;
67 /** Construct a 2D rotation from a 2x2 rotation matrix \a mat.
116 /** Set \c *this from a 2x2 rotation matrix \a mat.
117 * In other words, this function extract the rotation angle from the rotation matrix.
170 /** Set \c *this from a 2x2 rotation matrix \a mat.
172 * from the rotation matrix.
184 /** Constructs and \returns an equivalent 2x2 rotation matrix.
  /external/eigen/test/
schur_complex.cpp 75 // Test matrix with NaN
86 CALL_SUBTEST_3(( schur<Matrix<std::complex<float>, 1, 1> >() ));
87 CALL_SUBTEST_4(( schur<Matrix<float, 3, 3, Eigen::RowMajor> >() ));
schur_real.cpp 96 // Test matrix with NaN
107 CALL_SUBTEST_3(( schur<Matrix<float, 1, 1> >() ));
108 CALL_SUBTEST_4(( schur<Matrix<double, 3, 3, Eigen::RowMajor> >() ));
  /external/eigen/unsupported/Eigen/src/EulerAngles/
EulerAngles.h 120 typedef Matrix<Scalar,3,3> Matrix3; /*!< the equivalent rotation matrix type */
121 typedef Matrix<Scalar,3,1> Vector3; /*!< the equivalent 3 dimension vector type */
153 /** Constructs and initialize Euler angles from a 3x3 rotation matrix \p m.
160 /** Constructs and initialize Euler angles from a 3x3 rotation matrix \p m,
166 * \param m The 3x3 rotation matrix to convert
196 * \param rot The 3x3 rotation matrix to convert
249 /** Constructs and initialize Euler angles from a 3x3 rotation matrix \p m,
255 * \param m The 3x3 rotation matrix to convert
281 * \param rot The 3x3 rotation matrix to conver
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 87 /** type of the equivalent square matrix */
88 typedef Matrix<Scalar, EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime),
127 * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
133 * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
193 Matrix<Scalar, RowsAtCompileTime, ColsAtCompileTime> toDense() const {
197 /** \returns the matrix or vector obtained by evaluating this expression.
199 * Notice that in the case of a plain matrix or vector (not an expression) this function just returns
  /external/eigen/unsupported/test/
alignedvector3.cpp 28 typedef Matrix<Scalar,3,1> RefType;
29 typedef Matrix<Scalar,3,3> Mat33;
sparse_extra.cpp 58 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
59 typedef Matrix<Scalar,Dynamic,1> DenseVector;
  /frameworks/base/libs/hwui/tests/unit/
CanvasStateTests.cpp 19 #include "Matrix.h"
132 state.save(SaveFlags::Matrix);
146 state.save(SaveFlags::Matrix); // NOTE: clip not saved
156 state.save(SaveFlags::Clip); // NOTE: matrix not saved
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
SurfaceTextureSource.java 31 import android.opengl.Matrix;
208 Matrix.multiplyMM(mMappedCoords, 0,
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
DrawView.java 23 import android.graphics.Matrix;
75 * Assumes imageView is using matrix mode
87 Matrix m = mImageView.getImageMatrix();
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
TriData.java 79 public void transform(Matrix m) {
85 public void transform(Matrix m, TriData out) {
  /frameworks/support/design/tests/src/android/support/design/testutils/
ViewStructureImpl.java 18 import android.graphics.Matrix;
111 public void setTransformation(Matrix matrix) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterChanSat.java 20 import android.graphics.Matrix;
120 Matrix m = getOriginalToScreenMatrix(width, height);
  /cts/tests/tests/media/src/android/media/cts/
VideoSurfaceView.java 30 import android.opengl.Matrix;
  /external/eigen/bench/perf_monitoring/gemm/
gemm.cpp 14 typedef Matrix<Scalar,Dynamic,Dynamic> Mat;

Completed in 1456 milliseconds

<<11121314151617181920>>