HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 626 - 650 of 703) sorted by null

<<212223242526272829

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 22 import android.graphics.Matrix;
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 20 import android.graphics.Matrix;
328 fail("transform() should throw an exception when matrix is null.");
376 Matrix matrix = new Matrix(); local
377 matrix.setRotate(ROTATION);
378 event.transform(matrix);
  /external/ceres-solver/internal/ceres/
problem_test.cc 819 // Convert a CRSMatrix to a dense Eigen matrix.
820 void CRSToDenseMatrix(const CRSMatrix& input, Matrix* output) {
821 Matrix& m = *CHECK_NOTNULL(output);
899 Matrix dense_jacobian;
    [all...]
linear_least_squares_problems.cc 513 Matrix AA;
  /frameworks/base/core/java/android/provider/
MediaStore.java 30 import android.graphics.Matrix;
843 Matrix matrix = new Matrix(); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 34 import android.graphics.Matrix;
499 Matrix scaleMatrix = new Matrix();
502 h.thumbnailViewImage.setScaleType(ScaleType.MATRIX);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 25 import android.graphics.Matrix.ScaleToFit;
31 * Delegate implementing the native methods of android.graphics.Matrix
33 * Through the layoutlib_create tool, the original native methods of Matrix have been replaced
38 * it and the original Matrix class.
61 * Returns an {@link AffineTransform} matching the given Matrix.
63 public static AffineTransform getAffineTransform(Matrix m) {
72 public static boolean hasPerspective(Matrix m) {
82 * Sets the content of the matrix with the content of another matrix.
84 public void set(Matrix_Delegate matrix) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 26 import android.graphics.Matrix;
545 Matrix m = new Matrix();
    [all...]
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 23 import android.graphics.Matrix;
189 static native void nSetTextureLayerTransform(int layerId, int matrix);
608 public void setMatrix(Matrix matrix) {
609 nSetMatrix(mRenderer, matrix == null ? 0 : matrix.native_instance);
612 private static native void nSetMatrix(int renderer, int matrix);
616 public void getMatrix(Matrix matrix) {
617 nGetMatrix(mRenderer, matrix.native_instance)
    [all...]
MotionEvent.java 19 import android.graphics.Matrix;
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java 27 import android.graphics.Matrix;
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 40 import android.graphics.Matrix;
206 final Matrix mTmpMatrix = new Matrix();
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 29 import android.graphics.Matrix;
118 private Matrix mProgressDirectionMatrix = new Matrix();
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperPickerActivity.java 34 import android.graphics.Matrix;
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 30 import android.graphics.Matrix;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 80 case CSSTransformValue::MatrixTransformOperation: return TransformOperation::Matrix;
288 TransformationMatrix matrix(toCSSPrimitiveValue(transformValue->itemWithoutBoundsCheck(0))->getDoubleValue(),
304 operations.operations().append(Matrix3DTransformOperation::create(matrix));
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp 98 case TransformOperation::Matrix: {
100 TransformationMatrix m = transform->matrix();
106 TransformationMatrix m = transform->matrix();
  /external/chromium_org/third_party/skia/src/animator/
SkDrawExtraPathEffect.cpp 54 SkDrawMatrix* matrix; member in class:SkDrawShape2DPathEffect
121 SkDrawMatrix* matrix; local
123 matrix = (SkDrawMatrix*) fDraw->addMatrix;
129 matrix = (SkDrawMatrix*) apply->getScope();
131 if (matrix) {
132 m = matrix->getMatrix();
171 SK_MEMBER(addMatrix, Drawable), // either matrix or apply
230 const SkMatrix& matrix) : Sk2DPathEffect(matrix), fDraw(draw), fMaker(maker) {
265 if (fDraw->matrix) {
266 SkDrawMatrix* matrix; local
    [all...]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 48 /** Wraps the Eigen sparse matrix \a mat into a Cholmod sparse matrix object.
100 /** Returns a view of the Eigen sparse matrix \a mat as Cholmod sparse matrix.
105 cholmod_sparse res = viewAsCholmod(mat.matrix().const_cast_derived());
113 /** Returns a view of the Eigen \b dense matrix \a mat as Cholmod dense matrix.
134 /** Returns a view of the Cholmod sparse matrix \a cm as an Eigen sparse matrix.
173 CholmodBase(const MatrixType& matrix)
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 28 /* Optimized matrix-matrix product evaluating only one triangular half */
139 Matrix<ResScalar,BlockSize,BlockSize,ColMajor> buffer;
SelfadjointMatrixVector.h 17 /* Optimized selfadjoint matrix * vector product:
187 typedef Map<Matrix<ResScalar,Dynamic,1>, Aligned> MappedDest;
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 70 > class Matrix;
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 20 * \brief LU decomposition of a matrix with partial pivoting, and related features
22 * \param MatrixType the type of the matrix of which we are computing the LU decomposition
24 * This class represents a LU decomposition of a \b square \b invertible matrix, with partial pivoting: the matrix A
26 * is a permutation matrix.
29 * matrices. Thus LAPACK's dgesv and dgesvx require the matrix to be square and invertible. The present class
30 * does the same. It will assert that the matrix is square, but it won't (actually it can't) check that the
31 * matrix is invertible: it is your task to check that you only use this decomposition on invertible matrices.
41 * On the other hand, it is \b not suitable to determine whether a given matrix is invertible.
85 * \param matrix the matrix of which to compute the LU decomposition
    [all...]
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR.h 20 * \brief Householder rank-revealing QR decomposition of a matrix with column-pivoting
22 * \param MatrixType the type of the matrix of which we are computing the QR decomposition
24 * This class performs a rank-revealing QR decomposition of a matrix \b A into matrices \b P, \b Q and \b R
29 * by using Householder transformations. Here, \b P is a permutation matrix, \b Q a unitary matrix and \b R an
30 * upper triangular matrix.
52 typedef Matrix<Scalar, RowsAtCompileTime, RowsAtCompileTime, Options, MaxRowsAtCompileTime, MaxRowsAtCompileTime> MatrixQType;
91 ColPivHouseholderQR(const MatrixType& matrix)
92 : m_qr(matrix.rows(), matrix.cols())
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 67 inline SparseInnerVectorSet(const MatrixType& matrix, Index outerStart, Index outerSize)
68 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize)
70 eigen_assert( (outerStart>=0) && ((outerStart+outerSize)<=matrix.outerSize()) );
73 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer)
74 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size)
77 eigen_assert( (outer>=0) && (outer<matrix.outerSize()) );
140 inline SparseInnerVectorSet(const MatrixType& matrix, Index outerStart, Index outerSize)
141 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize)
143 eigen_assert( (outerStart>=0) && ((outerStart+outerSize)<=matrix.outerSize()) );
146 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer
157 _NestedMatrixType& matrix = const_cast<_NestedMatrixType&>(m_matrix);; local
    [all...]

Completed in 593 milliseconds

<<212223242526272829