Searched defs:DOMMatrix (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMMatrix.cpp6 #include "core/dom/DOMMatrix.h"
10 DOMMatrix* DOMMatrix::create()
12 return new DOMMatrix(TransformationMatrix());
15 DOMMatrix* DOMMatrix::create(DOMMatrixReadOnly* other)
17 return new DOMMatrix(other->matrix(), other->is2D());
20 DOMMatrix::DOMMatrix(const TransformationMatrix& matrix, bool is2D) function in class:blink::DOMMatrix
26 void DOMMatrix
[all...]
H A DDOMMatrix.h12 class DOMMatrix : public DOMMatrixReadOnly { class in namespace:blink
14 static DOMMatrix* create();
15 static DOMMatrix* create(DOMMatrixReadOnly*);
41 DOMMatrix* multiplySelf(DOMMatrix*);
42 DOMMatrix* preMultiplySelf(DOMMatrix*);
43 DOMMatrix* translateSelf(double tx, double ty, double tz = 0);
44 DOMMatrix* scaleSelf(double scale, double ox = 0, double oy = 0);
45 DOMMatrix* scale3dSel
[all...]

Completed in 73 milliseconds