HomeSort by relevance Sort by last modified time
    Searched refs:WebKitCSSMatrix (Results 1 - 9 of 9) sorted by null

  /external/webkit/WebCore/css/
WebKitCSSMatrix.cpp 27 #include "WebKitCSSMatrix.h"
39 WebKitCSSMatrix::WebKitCSSMatrix()
44 WebKitCSSMatrix::WebKitCSSMatrix(const WebKitCSSMatrix& m)
50 WebKitCSSMatrix::WebKitCSSMatrix(const TransformationMatrix& m)
56 WebKitCSSMatrix::WebKitCSSMatrix(const String& s, ExceptionCode& ec)
    [all...]
WebKitCSSMatrix.idl 29 interface [CustomConstructor] WebKitCSSMatrix {
59 [Immutable] WebKitCSSMatrix multiply(in WebKitCSSMatrix secondMatrix);
62 [Immutable] WebKitCSSMatrix inverse() raises (DOMException);
66 [Immutable] WebKitCSSMatrix translate(in double x, in double y, in double z);
71 [Immutable] WebKitCSSMatrix scale(in double scaleX, in double scaleY, in double scaleZ);
76 [Immutable] WebKitCSSMatrix rotate(in double rotX, in double rotY, in double rotZ);
81 [Immutable] WebKitCSSMatrix rotateAxisAngle(in double x, in double y, in double z, in double angle);
WebKitCSSMatrix.h 38 class WebKitCSSMatrix : public StyleBase {
40 static PassRefPtr<WebKitCSSMatrix> create()
42 return adoptRef(new WebKitCSSMatrix());
44 static PassRefPtr<WebKitCSSMatrix> create(const WebKitCSSMatrix& m)
46 return adoptRef(new WebKitCSSMatrix(m));
48 static PassRefPtr<WebKitCSSMatrix> create(const TransformationMatrix& m)
50 return adoptRef(new WebKitCSSMatrix(m));
52 static PassRefPtr<WebKitCSSMatrix> create(const String& s, ExceptionCode& ec)
54 return adoptRef(new WebKitCSSMatrix(s, ec))
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8WebKitCSSMatrixConstructor.cpp 49 INC_STATS("DOM.WebKitCSSMatrix.Constructor");
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
66 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::WEBKITCSSMATRIX), matrix.get());
  /external/webkit/WebCore/bindings/js/
JSWebKitCSSMatrixConstructor.cpp 29 #include "WebKitCSSMatrix.h"
53 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(s, ec);
55 return CREATE_DOM_OBJECT_WRAPPER(exec, jsConstructor->globalObject(), WebKitCSSMatrix, matrix.get());
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.h 53 class WebKitCSSMatrix;
  /external/webkit/WebCore/page/
DOMWindow.idl 477 attribute [JSCCustomGetter] WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new operator
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Index.h 418 V(WEBKITCSSMATRIX, WebKitCSSMatrix) \
    [all...]
  /external/webkit/WebCore/
Android.mk 96 css/WebKitCSSMatrix.cpp \

Completed in 9900 milliseconds