Searched defs:matrix (Results 1 - 25 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/cc/quads/
H A Dstream_video_draw_quad.h23 const gfx::Transform& matrix);
31 const gfx::Transform& matrix);
34 gfx::Transform matrix; member in class:cc::StreamVideoDrawQuad
/external/chromium_org/third_party/skia/src/core/
H A DSkMatrixUtils.h20 * Given a matrix and width/height, return true if the computed dst-rect would
38 static inline bool SkTreatAsSpriteFilter(const SkMatrix& matrix, argument
40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
43 /** Decomposes the upper-left 2x2 of the matrix into a rotation (represented by
47 Returns true if successful. Returns false if the matrix is degenerate.
49 bool SkDecomposeUpper2x2(const SkMatrix& matrix,
H A DSkRasterizer.cpp15 bool SkRasterizer::rasterize(const SkPath& fillPath, const SkMatrix& matrix, argument
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
35 return this->onRasterize(fillPath, matrix, clipBounds, mask, mode);
40 bool SkRasterizer::onRasterize(const SkPath& fillPath, const SkMatrix& matrix, argument
45 fillPath.transform(matrix, &devPath);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathRenderer.cpp16 const SkMatrix& matrix,
23 matrix.mapRect(bounds);
14 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/skia/src/core/
H A DSkMatrixUtils.h20 * Given a matrix and width/height, return true if the computed dst-rect would
38 static inline bool SkTreatAsSpriteFilter(const SkMatrix& matrix, argument
40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
43 /** Decomposes the upper-left 2x2 of the matrix into a rotation (represented by
47 Returns true if successful. Returns false if the matrix is degenerate.
49 bool SkDecomposeUpper2x2(const SkMatrix& matrix,
/external/skia/src/gpu/
H A DGrPathRenderer.cpp16 const SkMatrix& matrix,
23 matrix.mapRect(bounds);
14 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h16 // identifying the bookmark node being edited and the column matrix
26 @property(nonatomic, assign) NSMatrix* matrix; variable
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h15 // identifying the bookmark node being edited and the column matrix
25 @property(nonatomic, assign) NSMatrix* matrix; variable
/external/chromium_org/third_party/skia/src/effects/
H A DSkStippleMaskFilter.cpp13 const SkMatrix& matrix,
11 filterMask(SkMask* dst, const SkMask& src, const SkMatrix& matrix, SkIPoint* margin) const argument
H A DSkBitmapSource.cpp44 bool SkBitmapSource::onFilterImage(Proxy* proxy, const SkBitmap&, const SkMatrix& matrix, argument
48 matrix.mapRect(&dstRect, fDstRect);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColorMatrixColorFilter.java11 private ColorMatrix matrix; field in class:ShadowColorMatrixColorFilter
14 public void __constructor__(ColorMatrix matrix) { argument
15 this.matrix = matrix;
20 this.matrix = new ColorMatrix(array);
25 return "ColorMatrixColorFilter<" + matrix + ">";
/external/skia/src/effects/
H A DSkStippleMaskFilter.cpp13 const SkMatrix& matrix,
11 filterMask(SkMask* dst, const SkMask& src, const SkMatrix& matrix, SkIPoint* margin) const argument
/external/srec/srec/clib/
H A Dmatx_ops.h22 static PINLINE void matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix,
25 static PINLINE void matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix, argument
31 ASSERT(matrix);
39 sum += matrix[ii][jj] * vector[jj];
/external/ceres-solver/internal/ceres/
H A Dpreconditioner.cc41 const SparseMatrix* matrix)
42 : matrix_(CHECK_NOTNULL(matrix)) {
40 SparseMatrixPreconditionerWrapper( const SparseMatrix* matrix) argument
/external/chromium_org/cc/layers/
H A Dvideo_frame_provider_client_impl.cc32 // This matrix is the default transformation for stream textures, and flips
80 void VideoFrameProviderClientImpl::DidUpdateMatrix(const float* matrix) { argument
82 matrix[0], matrix[4], matrix[8], matrix[12],
83 matrix[1], matrix[5], matrix[9], matrix[1
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
H A Domnibox_popup_view_mac.h44 virtual void OnMatrixRowSelected(OmniboxPopupMatrix* matrix,
46 virtual void OnMatrixRowClicked(OmniboxPopupMatrix* matrix,
48 virtual void OnMatrixRowMiddleClicked(OmniboxPopupMatrix* matrix,
51 OmniboxPopupMatrix* matrix() { return matrix_; } function in class:OmniboxPopupViewMac
91 // field's screen position and the given target for the matrix
108 // Child window containing a matrix which implements the popup.
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextElement.cpp46 AffineTransform matrix; local
56 matrix = t.toAffineTransform();
58 transformCurrentValue().concatenate(matrix);
63 return *transform * matrix;
64 return matrix;
H A DSVGTransformList.cpp31 SVGTransform SVGTransformList::createSVGTransformFromMatrix(const SVGMatrix& matrix) const
33 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
38 AffineTransform matrix; local
39 if (!concatenate(matrix))
42 SVGTransform transform(matrix);
55 result *= at(i).matrix();
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGTransformListPropertyTearOff.h42 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionState& exceptionState) argument
45 if (!matrix) {
49 return SVGPropertyTearOff<SVGTransform>::create(m_values->createSVGTransformFromMatrix(matrix->propertyReference()));
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DMatrix3DTransformOperation.h35 static PassRefPtr<Matrix3DTransformOperation> create(const TransformationMatrix& matrix) argument
37 return adoptRef(new Matrix3DTransformOperation(matrix));
40 TransformationMatrix matrix() const {return m_matrix; } function in class:WebCore::Matrix3DTransformOperation
/external/chromium_org/third_party/skia/include/effects/
H A DSk2DPathEffect.h61 SkLine2DPathEffect(SkScalar width, const SkMatrix& matrix) argument
62 : Sk2DPathEffect(matrix), fWidth(width) {}
85 * Stamp the specified path to fill the shape, using the matrix to define
/external/chromium_org/third_party/skia/src/animator/
H A DSkPaintParts.h57 SkDrawMatrix* matrix; member in class:SkDrawShader
/external/chromium_org/ui/gfx/
H A Dmatrix3_unittest.cc34 Matrix3F matrix = Matrix3F::Ones(); local
38 matrix.set(0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f);
39 EXPECT_EQ(Vector3dF(2.0f, 5.0f, 8.0f), matrix.get_column(2));
40 matrix.set_column(0, Vector3dF(0.1f, 0.2f, 0.3f));
41 EXPECT_EQ(Vector3dF(0.1f, 0.2f, 0.3f), matrix.get_column(0));
43 EXPECT_EQ(0.1f, matrix.get(0, 0));
44 EXPECT_EQ(5.0f, matrix.get(1, 2));
53 Matrix3F matrix = Matrix3F::Zeros(); local
54 matrix.set(0, 5, 6, 8, 7, 0, 1, 9, 0);
55 EXPECT_EQ(390.0f, matrix
100 Matrix3F matrix = Matrix3F::Zeros(); local
116 Matrix3F matrix = Matrix3F::Zeros(); local
133 Matrix3F matrix = Matrix3F::Zeros(); local
[all...]
/external/eigen/test/
H A Dcorners.cpp13 VERIFY_IS_EQUAL(matrix.A, matrix.B); \
25 MatrixType matrix = MatrixType::Random(rows,cols); local
48 MatrixType matrix = MatrixType::Random(); local
60 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template block<r,c>(0,0)));
61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c)));
62 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix
[all...]
/external/skia/gm/
H A Dbitmapmatrix.cpp38 SkMatrix matrix; variable
39 matrix.reset();
43 canvas->drawBitmapMatrix(bm, matrix, &paint);
47 matrix.setScale(SkIntToScalar(2), SK_ScalarHalf);
48 canvas->drawBitmapMatrix(bm, matrix, &paint);
52 matrix.reset();
53 matrix.setRotate(SkIntToScalar(45), SkIntToScalar(bm.width() / 2),
57 canvas->drawBitmapMatrix(bm, matrix, &paint);
62 matrix.reset();
63 matrix
[all...]

Completed in 932 milliseconds

1234567891011>>