/external/skia/include/core/ |
SkComposeShader.h | 45 virtual bool setContext(const SkBitmap& device, const SkPaint& paint, const SkMatrix& matrix);
|
SkBlitter.h | 51 const SkMatrix& matrix, 53 return Choose(device, matrix, paint, NULL, 0); 57 const SkMatrix& matrix,
|
SkPath.h | 443 /** Add a copy of src to the path, transformed by matrix 446 void addPath(const SkPath& src, const SkMatrix& matrix); 465 /** Transform the points in this path by matrix, and write the answer into 468 @param matrix The matrix to apply to the path 471 void transform(const SkMatrix& matrix, SkPath* dst) const; 473 /** Transform the points in this path by matrix 475 @param matrix The matrix to apply to the path 477 void transform(const SkMatrix& matrix) { [all...] |
/external/skia/src/animator/ |
SkDrawMatrix.cpp | 44 SK_MEMBER_ARRAY(matrix, Float), 108 SkDebugf("matrix=\"identity\"/>\n"); 193 if (matrix.count() > 0) { 194 SkScalar* vals = matrix.begin();
|
SkPaintParts.h | 65 SkDrawMatrix* matrix; member in class:SkDrawShader
|
/external/skia/src/core/ |
SkStrokerPriv.cpp | 148 SkMatrix matrix; local 149 matrix.setScale(radius, radius); 150 matrix.postTranslate(pivot.fX, pivot.fY); 151 int count = SkBuildQuadArc(before, after, dir, &matrix, pts);
|
/external/webkit/WebCore/svg/ |
SVGFEColorMatrixElement.idl | 30 // Color Matrix Types
|
SVGTransformDistance.cpp | 136 transform.setMatrix(first.matrix() * second.matrix()); 175 m_transform *= transform.matrix(); // FIXME: what does 'distance' between two transforms mean? how should we respect 'absoluteValue' here? 216 return SVGTransform(transform.matrix() * m_transform);
|
SVGTransformList.idl | 46 SVGTransform createSVGTransformFromMatrix(in SVGMatrix matrix);
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
mp4lib_int.h | 110 int loadIntraQuantMat; /* Load intra quantization matrix */ 111 int loadNonIntraQuantMat; /* Load nonintra quantization matrix */ 112 int iqmat[64]; /* Intra quant.matrix */ 113 int niqmat[64]; /* Non-intra quant.matrix */
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Xfermodes.java | 25 import android.graphics.Matrix; 113 Matrix m = new Matrix();
|
/external/freetype/src/cff/ |
cffparse.c | 451 FT_Matrix* matrix = &dict->font_matrix; local 465 /* We expect a well-formed font matrix, this is, the matrix elements */ 471 matrix->xx = cff_parse_fixed_dynamic( data++, &scaling ); 477 /* Return default matrix in case of unlikely values. */ 478 matrix->xx = 0x10000L; 479 matrix->yx = 0; 480 matrix->yx = 0; 481 matrix->yy = 0x10000L; 489 matrix->yx = cff_parse_fixed_scaled( data++, scaling ) [all...] |
/external/freetype/src/raster/ |
ftrend1.c | 61 const FT_Matrix* matrix, 73 if ( matrix ) 74 FT_Outline_Transform( &slot->outline, matrix );
|
/external/srec/srec/clib/ |
imeld_tr.c | 42 ** Note the matrix is the transpose of the transformation 56 vec[ii] += prep->matrix[ii][jj] * fram[jj]; 81 ** Note the matrix is the transpose of the transformation
|
/external/webkit/WebCore/platform/win/ |
DragImageCairoWin.cpp | 84 cairo_matrix_t matrix; local 85 cairo_matrix_init(&matrix, 1.0, 0.0, 0.0, -1.0, 0.0, size.height()); 86 cairo_set_matrix(*targetRef, &matrix);
|
/frameworks/base/graphics/java/android/graphics/ |
NinePatch.java | 73 * @param canvas A container for the current matrix and clip used to draw the bitmap. 86 * @param canvas A container for the current matrix and clip used to draw the bitmap. 99 * @param canvas A container for the current matrix and clip used to draw the bitmap.
|
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/ |
TransformTestActivity.java | 22 import android.graphics.Matrix; 69 private Matrix mMatrix; 127 mMatrix = new Matrix();
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 414 /*package*/ static void native_addPath(int nPath, int src, int matrix) { 415 Matrix_Delegate matrixDelegate = Matrix_Delegate.getDelegate(matrix); 453 /*package*/ static void native_transform(int nPath, int matrix, 460 Matrix_Delegate matrixDelegate = Matrix_Delegate.getDelegate(matrix); 472 /*package*/ static void native_transform(int nPath, int matrix) { 473 native_transform(nPath, matrix, 0); 788 * Transform the points in this path by matrix, and write the answer 791 * @param matrix The matrix to apply to the path 795 public void transform(Matrix_Delegate matrix, Path_Delegate dst) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragView.java | 24 import android.graphics.Matrix; 73 Matrix scale = new Matrix();
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
LevenshteinDistance.java | 20 * This class represents the matrix used in the Levenshtein distance algorithm, together 21 * with the algorithm itself which operates on the matrix. 24 * target string so we can trace the path taken through the matrix afterwards, in order to
|
/external/skia/src/effects/ |
SkGradientShader.cpp | 336 const SkMatrix& matrix) { 337 if (!this->INHERITED::setContext(device, paint, matrix)) { 585 static void pts_to_unit_matrix(const SkPoint pts[2], SkMatrix* matrix) { 591 matrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY); 592 matrix->postTranslate(-pts[0].fX, -pts[0].fY); 593 matrix->postScale(inv, inv); 642 const SkMatrix& matrix) { 643 if (!this->INHERITED::setContext(device, paint, matrix)) { 755 bool Linear_Gradient::asABitmap(SkBitmap* bitmap, SkMatrix* matrix, 768 if (matrix) { [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
GLView.java | 19 import android.graphics.Matrix; 209 Matrix matrix = transform.getMatrix(); local 210 matrix.preTranslate(xoffset, yoffset); 226 matrix.preTranslate(-xoffset, -yoffset);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PathTest.java | 20 import android.graphics.Matrix; 197 args = {android.graphics.Matrix.class, android.graphics.Path.class} 211 path.transform(new Matrix(), dst); 218 args = {android.graphics.Matrix.class} 221 "almost the same as transform(Matrix matrix, Path dst) but no dst" + 569 args = {android.graphics.Path.class, android.graphics.Matrix.class} 583 Matrix matrix = new Matrix(); local [all...] |
/external/skia/src/utils/ |
SkDumpCanvas.cpp | 226 bool SkDumpCanvas::concat(const SkMatrix& matrix) { 228 matrix.toDumpString(&str); 230 return this->INHERITED::concat(matrix); 233 void SkDumpCanvas::setMatrix(const SkMatrix& matrix) { 235 matrix.toDumpString(&str); 237 this->INHERITED::setMatrix(matrix); 359 const SkPath& path, const SkMatrix* matrix,
|
/external/webkit/WebCore/platform/graphics/transforms/ |
TransformationMatrix.h | 135 // If the matrix has 3D components, the z component of the result is 143 // If the matrix has 3D components, the z component of the result is 246 // This method returns the identity matrix if it is not invertible. 250 // decompose the matrix into its component parts 270 // Throw away the non-affine parts of the matrix (lossy!) 339 // multiply passed 2D point by matrix (assume z=0) 342 // multiply passed 3D point by matrix
|