OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatrixTransformOperation
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/transforms/
MatrixTransformOperation.h
33
class
MatrixTransformOperation
: public TransformOperation {
35
static PassRefPtr<
MatrixTransformOperation
> create(double a, double b, double c, double d, double e, double f)
37
return adoptRef(new
MatrixTransformOperation
(a, b, c, d, e, f));
40
static PassRefPtr<
MatrixTransformOperation
> create(const TransformationMatrix& t)
42
return adoptRef(new
MatrixTransformOperation
(t));
58
const
MatrixTransformOperation
* m = static_cast<const
MatrixTransformOperation
*>(&o);
71
MatrixTransformOperation
(double a, double b, double c, double d, double e, double f)
81
MatrixTransformOperation
(const TransformationMatrix& t)
MatrixTransformOperation.cpp
23
#include "
MatrixTransformOperation
.h"
31
PassRefPtr<TransformOperation>
MatrixTransformOperation
::blend(const TransformOperation* from, double progress, bool blendToIdentity)
41
const
MatrixTransformOperation
* m = static_cast<const
MatrixTransformOperation
*>(from);
49
return
MatrixTransformOperation
::create(toT.a(), toT.b(), toT.c(), toT.d(), toT.e(), toT.f());
/external/webkit/Source/WebCore/css/
WebKitCSSTransformValue.h
50
MatrixTransformOperation
,
WebKitCSSTransformValue.cpp
79
case
MatrixTransformOperation
:
CSSStyleSelector.cpp
68
#include "
MatrixTransformOperation
.h"
[
all
...]
CSSComputedStyleDeclaration.cpp
496
transformVal = WebKitCSSTransformValue::create(WebKitCSSTransformValue::
MatrixTransformOperation
);
[
all
...]
CSSParser.cpp
[
all
...]
/external/webkit/Source/WebCore/
Android.mk
724
platform/graphics/transforms/
MatrixTransformOperation
.cpp \
[
all
...]
Completed in 1432 milliseconds