/external/chromium_org/third_party/skia/include/device/xps/ |
SkXPSDevice.h | 101 const SkMatrix& matrix, 126 const SkMatrix* matrix, 227 const SkMatrix& matrix, 293 const SkMatrix& matrix, 298 SkMatrix* matrix,
|
/external/chromium_org/third_party/skia/src/animator/ |
SkPathParts.cpp | 300 SK_MEMBER(matrix, Matrix), 308 SkAddPath::SkAddPath() : matrix(NULL), path(NULL) { 313 if (matrix) 314 fPath->fPath.addPath(path->fPath, matrix->getMatrix());
|
/external/eigen/Eigen/src/Householder/ |
HouseholderSequence.h | 20 * \tparam VectorsType type of matrix containing the Householder vectors 29 * are used in several algorithms to zero out certain parts of a matrix. Indeed, the methods 33 * More precisely, the class %HouseholderSequence represents an \f$ n \times n \f$ matrix \f$ H \f$ of the 48 * MatrixXd Q = H; // conversion to a dense matrix 106 typedef Matrix<ResultScalar, MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime, 138 * \param[in] v %Matrix containing the essential parts of the Householder vectors 170 /** \brief Number of rows of transformation viewed as a matrix. 176 /** \brief Number of columns of transformation viewed as a matrix. 191 * The index \f$ i \f$ equals \p k + shift(), corresponding to the k-th column of the matrix \p v 229 Matrix<Scalar, DestType::RowsAtCompileTime, 1 [all...] |
/external/eigen/Eigen/src/plugins/ |
CommonCwiseUnaryOps.h | 67 /** Overloaded for efficient real matrix times complex scalar value */ 76 operator*(const Scalar& scalar, const StorageBaseType& matrix) 77 { return matrix*scalar; } 80 operator*(const std::complex<Scalar>& scalar, const StorageBaseType& matrix) 81 { return matrix*scalar; }
|
/external/eigen/test/eigen2/ |
eigen2_array.cpp | 21 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; 56 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; 120 CALL_SUBTEST_1( array(Matrix<float, 1, 1>()) ); 128 CALL_SUBTEST_1( comparisons(Matrix<float, 1, 1>()) ); 135 CALL_SUBTEST_1( lpNorm(Matrix<float, 1, 1>()) );
|
eigen2_sparse_product.cpp | 20 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; 21 typedef Matrix<Scalar,Dynamic,1> DenseVector; 23 // test matrix-matrix product 55 // test matrix - diagonal product
|
sparse.h | 37 /* Initializes both a sparse and dense matrix with same random values, 40 * allowing to control the shape of the matrix. 46 Matrix<Scalar,Dynamic,Dynamic>& refMat, 89 Matrix<Scalar,Dynamic,Dynamic>& refMat, 132 Matrix<Scalar,Dynamic,1>& refVec,
|
/external/eigen/test/ |
mapped_matrix.cpp | 120 CALL_SUBTEST_1( map_class_vector(Matrix<float, 1, 1>()) ); 121 CALL_SUBTEST_1( check_const_correctness(Matrix<float, 1, 1>()) ); 129 CALL_SUBTEST_1( map_class_matrix(Matrix<float, 1, 1>()) ); 131 CALL_SUBTEST_11( map_class_matrix(Matrix<float,3,5>()) ); 135 CALL_SUBTEST_6( map_static_methods(Matrix<double, 1, 1>()) );
|
nullary.cpp | 79 Matrix<Scalar,Dynamic,1> row_vector(size); 80 Matrix<Scalar,1,Dynamic> col_vector(size); 85 Matrix<Scalar,Dynamic,1> size_changer(size+50); 89 typedef Matrix<Scalar,1,1> ScalarMatrix; 127 CALL_SUBTEST_8( testVectorType(Matrix<float,1,1>()) );
|
/external/eigen/unsupported/test/ |
matrix_exponential.cpp | 29 Matrix<T,2,2> A, B, C; 51 Matrix<std::complex<T>,2,2> A, B, C; 78 Matrix<T,Dynamic,Dynamic> A(size,size), B(size,size), C(size,size); 133 CALL_SUBTEST_7(randomTest(Matrix<double,3,3,RowMajor>(), 1e-13)); 140 CALL_SUBTEST_9(randomTest(Matrix<long double,Dynamic,Dynamic>(7,7), 1e-13));
|
matrix_function.cpp | 24 // Returns a matrix with eigenvalues clustered around 0, 1 and 2. 44 // Returns a matrix with eigenvalues clustered around 0 and +/- i. 142 typedef Matrix<ComplexScalar, MatrixType::RowsAtCompileTime, 186 CALL_SUBTEST_1(testMatrixType(Matrix<float,1,1>())); 190 CALL_SUBTEST_5(testMatrixType(Matrix<double,5,5,RowMajor>()));
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page.cpp | 74 void CPDF_PageObject::TransformClipPath(CFX_AffineMatrix& matrix)
80 m_ClipPath.Transform(matrix);
82 void CPDF_PageObject::TransformGeneralState(CFX_AffineMatrix& matrix)
88 pGS->m_Matrix.Concat(matrix);
511 CFX_AffineMatrix matrix;
local 512 GetTextMatrix(&matrix);
517 matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom);
556 void CPDF_TextObject::Transform(const CFX_AffineMatrix& matrix)
561 text_matrix.Concat(matrix);
628 void CPDF_ShadingObject::Transform(const CFX_AffineMatrix& matrix)
[all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
BitmapTest.java | 8 import android.graphics.Matrix; 103 canvas.drawBitmap(bitmap2, new Matrix(), null); 105 assertEquals("Bitmap One\nBitmap Two transformed by matrix", shadowOf(bitmap1).getDescription()); 119 canvas.drawBitmap(bitmap2, new Matrix(), paint); 121 assertEquals("Bitmap One\nBitmap Two with ColorMatrixColorFilter<1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0> transformed by matrix", shadowOf(bitmap1).getDescription());
|
/external/skia/experimental/nanomsg/ |
picture_demo.cpp | 20 SkMatrix matrix; member in struct:PictureHeader 27 : matrix(SkMatrix::I()) 91 header.matrix.setTranslate(-l, -t); 92 header.matrix.postRotate(rand.nextRangeScalar(-25, 25)); 153 canvas->concat(header.matrix);
|
/external/skia/include/core/ |
SkDraw.h | 44 * affect the geometry/rasterization, then the pre matrix can just be 45 * pre-concated with the current matrix. 99 * Based on the paint's style, strokeWidth, and the matrix, classify how 126 * run through the inverse of the matrix). 128 * If the matrix cannot be inverted, or the current clip is empty, return
|
/external/skia/include/device/xps/ |
SkXPSDevice.h | 101 const SkMatrix& matrix, 126 const SkMatrix* matrix, 227 const SkMatrix& matrix, 293 const SkMatrix& matrix, 298 SkMatrix* matrix,
|
/external/skia/src/animator/ |
SkPathParts.cpp | 300 SK_MEMBER(matrix, Matrix), 308 SkAddPath::SkAddPath() : matrix(NULL), path(NULL) { 313 if (matrix) 314 fPath->fPath.addPath(path->fPath, matrix->getMatrix());
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
PlanarYUVLuminanceSource.java | 85 byte[] matrix = new byte[area]; 90 System.arraycopy(yuvData, inputOffset, matrix, 0, area); 91 return matrix; 98 System.arraycopy(yuv, inputOffset, matrix, outputOffset, width); 101 return matrix;
|
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.opengl.Matrix.html | 10 android.opengl.Matrix 74 Class android.opengl.<A HREF="../../../../reference/android/opengl/Matrix.html" target="_top"><font size="+2"><code>Matrix</code></font></A> 86 <A NAME="android.opengl.Matrix.perspectiveM_added(float[], int, float, float, float, float)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/opengl/Matrix.html#perspectiveM(float[], int, float, float, float, float)" target="_top"><code>perspectiveM</code></A>(<code>float[],</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
|
/frameworks/base/docs/html/sdk/api_diff/21/changes/ |
android.graphics.Matrix.html | 10 android.graphics.Matrix 74 Class android.graphics.<A HREF="../../../../reference/android/graphics/Matrix.html" target="_top"><font size="+2"><code>Matrix</code></font></A> 86 <A NAME="android.graphics.Matrix.isAffine_added()"></A> 87 <nobr><code>boolean</code> <A HREF="../../../../reference/android/graphics/Matrix.html#isAffine()" target="_top"><code>isAffine</code></A>()</nobr>
|
/frameworks/base/docs/html/sdk/api_diff/8/changes/ |
android.opengl.Matrix.html | 10 android.opengl.Matrix 74 Class android.opengl.<A HREF="../../../../reference/android/opengl/Matrix.html" target="_top"><font size="+2"><code>Matrix</code></font></A> 86 <A NAME="android.opengl.Matrix.setLookAtM_added(float[], int, float, float, float, float, float, float, float, float, float)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/opengl/Matrix.html#setLookAtM(float[], int, float, float, float, float, float, float, float, float, float)" target="_top"><code>setLookAtM</code></A>(<code>float[],</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
|
/packages/apps/Camera/src/com/android/camera/ui/ |
FaceView.java | 23 import android.graphics.Matrix; 52 private Matrix mMatrix = new Matrix(); 184 // Prepare the matrix. 195 // Focus indicator is directional. Rotate the matrix and the canvas
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
FaceView.java | 22 import android.graphics.Matrix; 48 private Matrix mMatrix = new Matrix(); 177 // Prepare the matrix. 185 // Focus indicator is directional. Rotate the matrix and the canvas
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
Paper.java | 20 import android.opengl.Matrix; 83 Matrix.setIdentityM(mMatrix, 0); 84 Matrix.translateM(mMatrix, 0, mMatrix, 0, rect.centerX(), rect.centerY(), 0); 85 Matrix.rotateM(mMatrix, 0, degrees, 0, 1, 0); 86 Matrix.translateM(mMatrix, 0, mMatrix, 0, -rect.width() / 2, -rect.height() / 2, 0);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/ |
Debian.svg | [all...] |