OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScaleTransformOperation
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
ScaleTransformOperation.h
32
class PLATFORM_EXPORT
ScaleTransformOperation
: public TransformOperation {
34
static PassRefPtr<
ScaleTransformOperation
> create(double sx, double sy, OperationType type)
36
return adoptRef(new
ScaleTransformOperation
(sx, sy, 1, type));
39
static PassRefPtr<
ScaleTransformOperation
> create(double sx, double sy, double sz, OperationType type)
41
return adoptRef(new
ScaleTransformOperation
(sx, sy, sz, type));
57
const
ScaleTransformOperation
* s = static_cast<const
ScaleTransformOperation
*>(&o);
68
ScaleTransformOperation
(double sx, double sy, double sz, OperationType type)
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.h
43
ScaleTransformOperation
,
Completed in 48 milliseconds