OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RotateTransformOperation
(Results
1 - 10
of
10
) sorted by null
/external/webkit/WebCore/platform/graphics/transforms/
RotateTransformOperation.h
32
class
RotateTransformOperation
: public TransformOperation {
34
static PassRefPtr<
RotateTransformOperation
> create(double angle, OperationType type)
36
return adoptRef(new
RotateTransformOperation
(0, 0, 1, angle, type));
39
static PassRefPtr<
RotateTransformOperation
> create(double x, double y, double z, double angle, OperationType type)
41
return adoptRef(new
RotateTransformOperation
(x, y, z, angle, type));
56
const
RotateTransformOperation
* r = static_cast<const
RotateTransformOperation
*>(&o);
68
RotateTransformOperation
(double x, double y, double z, double angle, OperationType type)
RotateTransformOperation.cpp
23
#include "
RotateTransformOperation
.h"
32
PassRefPtr<TransformOperation>
RotateTransformOperation
::blend(const TransformOperation* from, double progress, bool blendToIdentity)
38
return
RotateTransformOperation
::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
40
const
RotateTransformOperation
* fromOp = static_cast<const
RotateTransformOperation
*>(from);
47
return
RotateTransformOperation
::create(fromOp ? fromOp->m_x : m_x,
53
const
RotateTransformOperation
* toOp = this;
92
return
RotateTransformOperation
::create(x, y, z, angle, ROTATE_3D);
/external/webkit/WebCore/css/
WebKitCSSTransformValue.h
43
RotateTransformOperation
,
WebKitCSSTransformValue.cpp
58
case
RotateTransformOperation
:
CSSStyleSelector.cpp
78
#include "
RotateTransformOperation
.h"
[
all
...]
CSSParser.cpp
[
all
...]
/external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp
33
#include "
RotateTransformOperation
.h"
365
lastRotAngle = static_cast<
RotateTransformOperation
*>(firstVal->operations().at(j).get())->angle();
372
double rotAngle = val->operations().isEmpty() ? 0 : (static_cast<
RotateTransformOperation
*>(val->operations().at(j).get())->angle());
/external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp
34
#include "
RotateTransformOperation
.h"
710
RotateTransformOperation
* rotateOperation = (
RotateTransformOperation
*) op;
/external/webkit/WebCore/
Android.mk
502
platform/graphics/transforms/
RotateTransformOperation
.cpp \
/external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.mm
43
#import "
RotateTransformOperation
.h"
155
return [NSNumber numberWithDouble:transformOp ? deg2rad(static_cast<const
RotateTransformOperation
*>(transformOp)->angle()) : 0];
[
all
...]
Completed in 331 milliseconds