/external/webkit/WebCore/svg/ |
SVGTransform.idl | 35 readonly attribute SVGMatrix matrix; 38 void setMatrix(in SVGMatrix matrix);
|
SVGTransform.cpp | 48 SVGTransform::SVGTransform(const AffineTransform& matrix) 51 , m_matrix(matrix) 69 AffineTransform SVGTransform::matrix() const function in class:SVGTransform 84 void SVGTransform::setMatrix(AffineTransform matrix) 89 m_matrix = matrix;
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8SVGMatrixCustom.cpp | 63 AffineTransform matrix = *V8SVGPODTypeWrapper<AffineTransform>::toNative(args.Holder()); local 65 AffineTransform result = matrix.inverse(); 67 if (!matrix.isInvertible()) 82 AffineTransform matrix = *V8SVGPODTypeWrapper<AffineTransform>::toNative(args.Holder()); local 86 AffineTransform result = matrix;
|
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/ |
nrfsm.c | 66 nrfsm_matrix_t matrix; /**< State\event matrix */ member in struct:__anon16895 67 UINT32 uMaxNoOfStates; /**< Max number of states in the matrix */ 68 UINT32 uMaxNoOfEvents; /**< Max number of events in the matrix */ 69 UINT32 uActNoOfStates; /**< Actual number of states in the matrix */ 70 UINT32 uActNoOfEvents; /**< Actual number of events in the matrix */ 92 * Init The FSM structure. If matrix argument is NULL, allocate memory for 93 * new matrix. 128 /* Allocate memory for FSM matrix */ 129 pFsm->matrix = (nrfsm_matrix_t)os_memoryAlloc (hOs, uMaxNoOfStates * uMaxNoOfEvents * sizeof(nrfsm_action_cell_ (…) [all...] |
/external/skia/src/views/ |
SkImageView.cpp | 65 bool SkImageView::getImageMatrix(SkMatrix* matrix) const 70 if (matrix) 71 *matrix = *fMatrix; 76 if (matrix) 77 matrix->reset(); 82 void SkImageView::setImageMatrix(const SkMatrix* matrix) 86 if (matrix && !matrix->isIdentity()) 90 *fMatrix = *matrix; 104 // only redraw if we changed our matrix and we're not in scaleToFit mod 145 SkMatrix matrix; local [all...] |
/external/webkit/WebCore/platform/wx/wxcode/mac/carbon/ |
non-kerned-drawing.cpp | 84 CGAffineTransform matrix = CGAffineTransformIdentity; local 85 matrix.b = -matrix.b; 86 matrix.d = -matrix.d; 88 CGContextSetTextMatrix(cgContext, matrix);
|
/external/skia/src/utils/ |
SkLayer.cpp | 70 void SkLayer::setMatrix(const SkMatrix& matrix) { 71 fMatrix = matrix; 74 void SkLayer::setChildrenMatrix(const SkMatrix& matrix) { 75 fChildrenMatrix = matrix; 134 void SkLayer::getLocalTransform(SkMatrix* matrix) const { 135 matrix->setTranslate(m_position.fX, m_position.fY); 139 matrix->preTranslate(tx, ty); 140 matrix->preConcat(this->getMatrix()); 141 matrix->preTranslate(-tx, -ty); 144 void SkLayer::localToGlobal(SkMatrix* matrix) const [all...] |
/external/skia/src/effects/ |
Sk1DPathEffect.cpp | 102 SkMatrix matrix; local 106 matrix.setSinCos(tangent.fY, tangent.fX, 0, 0); 107 matrix.preTranslate(-sx, 0); 108 matrix.postTranslate(pos.fX, pos.fY); 109 matrix.mapPoints(&dst[i], &pt, 1); 192 SkMatrix matrix; local 193 meas.getMatrix(distance, &matrix); 194 dst->addPath(fPath, matrix);
|
/external/srec/srec/clib/ |
imeld_rd.c | 46 void delete_matrix(covdata **matrix, int dimen); 47 void delete_fixed_matrix(imeldata **matrix, int dimen); 48 int scale_matrix_for_fixedpoint(imeldata **fixmat, covdata **matrix,int dimen); 58 prep->matrix = create_fixed_matrix(matdim); 71 ASSERT(prep->matrix); 72 delete_fixed_matrix(prep->matrix, prep->dim); 75 prep->matrix = NULL; 145 /* The imelda matrix 154 prep->imel_shift = scale_matrix_for_fixedpoint(prep->matrix, 157 /* The inverse imelda matrix [all...] |
/external/webkit/WebCore/platform/graphics/transforms/ |
Matrix3DTransformOperation.h | 35 static PassRefPtr<Matrix3DTransformOperation> create(const TransformationMatrix& matrix) 37 return adoptRef(new Matrix3DTransformOperation(matrix));
|
/external/webkit/WebCore/rendering/ |
SVGMarkerLayoutInfo.h | 36 , matrix(matrixObj) 42 AffineTransform matrix; member in struct:WebCore::MarkerLayout
|
/external/webkit/WebCore/platform/graphics/cairo/ |
GradientCairo.cpp | 72 cairo_matrix_t matrix = m_gradientSpaceTransformation; local 73 cairo_matrix_invert(&matrix); 74 cairo_pattern_set_matrix(m_gradient, &matrix);
|
/external/webkit/WebCore/svg/graphics/ |
SVGPaintServerGradient.cpp | 181 AffineTransform matrix; local 184 matrix.translate(maskBoundingBox.x(), maskBoundingBox.y()); 185 matrix.scaleNonUniform(maskBoundingBox.width(), maskBoundingBox.height()); 187 matrix.multiply(gradientServer->gradientTransform()); 188 return matrix; 225 AffineTransform matrix; local 243 matrix.translate(bbox.x(), bbox.y()); 244 matrix.scaleNonUniform(bbox.width(), bbox.height()); 246 matrix.multiply(gradientTransform()); 247 m_gradient->setGradientSpaceTransform(matrix); 261 AffineTransform matrix = clipToTextMask(context, m_imageBuffer, object, this); local [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Matrix.java | 24 * A matrix implementation overridden by the LayoutLib bridge. 26 public class Matrix extends _Original_Matrix { 31 * Create an identity matrix 33 public Matrix() { 38 * Create a matrix that is a (deep) copy of src 39 * @param src The matrix to copy into this matrix 41 public Matrix(Matrix src) { 46 * Creates a Matrix object from the float array. The array becomes the internal storag 148 Matrix matrix = (Matrix)obj; local [all...] |
/external/skia/src/animator/ |
SkDraw3D.cpp | 63 SkMatrix matrix; local 64 fCamera.patchToMatrix(patch->fPatch, &matrix); 65 matrix.preTranslate(hackWidth / 2, -hackHeight / 2); 66 matrix.postTranslate(hackWidth / 2, hackHeight / 2); 67 maker.fCanvas->concat(matrix);
|
SkDrawExtraPathEffect.cpp | 62 SkDrawMatrix* matrix; member in class:SkDrawShape2DPathEffect 129 SkDrawMatrix* matrix; local 131 matrix = (SkDrawMatrix*) fDraw->addMatrix; 137 matrix = (SkDrawMatrix*) apply->getScope(); 179 SK_MEMBER(addMatrix, Drawable), // either matrix or apply 238 const SkMatrix& matrix) : Sk2DPathEffect(matrix), fDraw(draw), fMaker(maker) { 266 if (fDraw->matrix) { 267 SkDrawMatrix* matrix; local 268 if (fDraw->matrix->getType() == SkType_Matrix) [all...] |
/external/skia/gm/ |
shapes.cpp | 88 SkMatrix matrix; local 93 matrix.setScale(-SK_Scalar1, SK_Scalar1); 94 matrix.postTranslate(SkIntToScalar(220), SkIntToScalar(240)); 95 gs->appendShape(&fGroup, matrix); 96 matrix.setTranslate(SkIntToScalar(240), 0); 97 matrix.preScale(SK_Scalar1*2, SK_Scalar1*2); 98 gs->appendShape(&fGroup, matrix);
|
/external/skia/src/core/ |
SkPicture.cpp | 91 static void validateMatrix(const SkMatrix* matrix) { 92 SkScalar scaleX = matrix->getScaleX(); 93 SkScalar scaleY = matrix->getScaleY(); 94 SkScalar skewX = matrix->getSkewX(); 95 SkScalar skewY = matrix->getSkewY(); 96 SkScalar perspX = matrix->getPerspX(); 97 SkScalar perspY = matrix->getPerspY();
|
SkDevice.cpp | 68 const SkMatrix& matrix, const SkPaint& paint) { 69 draw.drawBitmap(bitmap, matrix, paint); 90 const SkMatrix* matrix, 92 draw.drawTextOnPath((const char*)text, len, path, matrix, paint); 97 const SkPath& path, const SkMatrix* matrix) { 98 draw.drawPosTextOnPath((const char*)text, len, pos, paint, path, matrix);
|
/frameworks/base/core/jni/android/graphics/ |
Matrix.cpp | 1 /* libs/android_runtime/android/graphics/Matrix.cpp 218 static jboolean postSkew__FF(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloat kx, jfloat ky) { 221 return matrix->postSkew(kx_, ky_); 224 static jboolean postConcat(JNIEnv* env, jobject clazz, SkMatrix* matrix, SkMatrix* other) { 225 return matrix->postConcat(*other); 228 static jboolean setRectToRect(JNIEnv* env, jobject clazz, SkMatrix* matrix, jobject src, jobject dst, SkMatrix::ScaleToFit stf) { 233 return matrix->setRectToRect(src_, dst_, stf); 236 static jboolean setPolyToPoly(JNIEnv* env, jobject clazz, SkMatrix* matrix, 256 return matrix->setPolyToPoly(srcPt, dstPt, ptCount); 258 return matrix->setPolyToPoly((const SkPoint*)src, (const SkPoint*)dst [all...] |
/external/skia/include/core/ |
SkDevice.h | 88 /** Called with the correct matrix and clip before this device is drawn 112 const SkMatrix& matrix, const SkPaint& paint); 121 const SkPath& path, const SkMatrix* matrix, 125 const SkPath& path, const SkMatrix* matrix);
|
SkComposeShader.h | 45 virtual bool setContext(const SkBitmap& device, const SkPaint& paint, const SkMatrix& matrix);
|
/external/webkit/WebCore/svg/graphics/filters/ |
SVGFETile.cpp | 78 AffineTransform matrix; local 79 matrix.translate(m_in->scaledSubRegion().x() - scaledSubRegion().x(), m_in->scaledSubRegion().y() - scaledSubRegion().y()); 80 pattern.get()->setPatternSpaceTransform(matrix);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
AbstractIndicator.java | 20 import android.graphics.Matrix; 55 Matrix matrix = trans.getMatrix(); local 56 matrix.preTranslate(p.left + width / 2, p.top + height / 2); 57 matrix.preRotate(-mOrientation);
|
/external/skia/include/effects/ |
SkEmbossMaskFilter.h | 41 virtual bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix& matrix, SkIPoint* margin);
|