Home
last modified time | relevance | path

Searched refs:OperationType (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
DGraphicsOperation.h106 } OperationType; typedef
110 virtual OperationType type() { return UndefinedOperation; } in type()
181 virtual OperationType type() { return BeginTransparencyLayerOperation; } in type()
189 virtual OperationType type() { return EndTransparencyLayerOperation; } in type()
194 virtual OperationType type() { return SaveOperation; } in type()
199 virtual OperationType type() { return RestoreOperation; } in type()
210 virtual OperationType type() { return SetAlphaOperation; } in type()
221 virtual OperationType type() { return SetCompositeOpOperation; } in type()
232 virtual OperationType type() { return SetFillColorOperation; } in type()
253 virtual OperationType type() { return SetFillShaderOperation; } in type()
[all …]
/external/webkit/Source/WebCore/platform/graphics/transforms/
DRotateTransformOperation.h34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) in create()
39 …tr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) in create()
52 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
71 RotateTransformOperation(double x, double y, double z, double angle, OperationType type) in RotateTransformOperation()
85 OperationType m_type;
DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) in create()
39 …tic PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) in create()
51 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) in ScaleTransformOperation()
82 OperationType m_type;
DSkewTransformOperation.h34 … static PassRefPtr<SkewTransformOperation> create(double angleX, double angleY, OperationType type) in create()
44 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
63 SkewTransformOperation(double angleX, double angleY, OperationType type) in SkewTransformOperation()
72 OperationType m_type;
DTranslateTransformOperation.h35 …sRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) in create()
40 …ransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) in create()
56 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
75 …TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType ty… in TranslateTransformOperation()
87 OperationType m_type;
DTransformOperation.h39 enum OperationType { enum
66 virtual OperationType getOperationType() const = 0;
71 OperationType opType = getOperationType(); in is3DOperation()
DIdentityTransformOperation.h41 virtual OperationType getOperationType() const { return IDENTITY; } in getOperationType()
DMatrix3DTransformOperation.h45 virtual OperationType getOperationType() const { return MATRIX_3D; } in getOperationType()
DPerspectiveTransformOperation.h45 virtual OperationType getOperationType() const { return PERSPECTIVE; } in getOperationType()
DMatrixTransformOperation.h50 virtual OperationType getOperationType() const { return MATRIX; } in getOperationType()
/external/chromium/chrome/browser/net/
Dsqlite_persistent_cookie_store.cc111 } OperationType; typedef in SQLitePersistentCookieStore::Backend::PendingOperation
113 PendingOperation(OperationType op, in PendingOperation()
117 OperationType op() const { return op_; } in op()
121 OperationType op_;
127 void BatchOperation(PendingOperation::OperationType op,
375 PendingOperation::OperationType op, in BatchOperation()
/external/webkit/Source/WebCore/platform/graphics/ca/
DGraphicsLayerCA.cpp68 static bool isTransformTypeTransformationMatrix(TransformOperation::OperationType transformType) in isTransformTypeTransformationMatrix()
86 static bool isTransformTypeFloatPoint3D(TransformOperation::OperationType transformType) in isTransformTypeFloatPoint3D()
99 static bool isTransformTypeNumber(TransformOperation::OperationType transformType) in isTransformTypeNumber()
104 …ctionValue(const TransformOperation* transformOp, TransformOperation::OperationType transformType,… in getTransformFunctionValue()
135 …ctionValue(const TransformOperation* transformOp, TransformOperation::OperationType transformType,… in getTransformFunctionValue()
155 …ctionValue(const TransformOperation* transformOp, TransformOperation::OperationType transformType,… in getTransformFunctionValue()
178 …tionType getValueFunctionNameForTransformOperation(TransformOperation::OperationType transformType) in getValueFunctionNameForTransformOperation()
1619 …TransformOperation::OperationType transformOp = isMatrixAnimation ? TransformOperation::MATRIX_3D … in createTransformAnimationsFromKeyframes()
1764 …latformCAAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOpTyp… in setTransformAnimationEndpoints()
1823 …formCAAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpTyp… in setTransformAnimationKeyframes()
DGraphicsLayerCA.h174 …mation*, PlatformCAAnimation*, int functionIndex, TransformOperation::OperationType, bool isMatrix…
175 …mation*, PlatformCAAnimation*, int functionIndex, TransformOperation::OperationType, bool isMatrix…
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsLayer.h370 typedef Vector<TransformOperation::OperationType> TransformOperationList;
DGraphicsLayer.cpp369 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType(); in fetchTransformOperationList()
/external/clang/lib/Sema/
DSemaChecking.cpp2766 unsigned OperationType = 0; in CheckMemaccessArguments() local
2771 OperationType = 1; in CheckMemaccessArguments()
2773 OperationType = 2; in CheckMemaccessArguments()
2775 OperationType = 3; in CheckMemaccessArguments()
2783 << OperationType in CheckMemaccessArguments()
/external/webkit/Source/WebCore/rendering/style/
DRenderStyle.cpp695 …TransformOperation::OperationType type = rareNonInheritedData->m_transform->m_operations.operation… in applyTransform()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.cpp7057 static TransformOperation::OperationType getTransformOperationType(WebKitCSSTransformValue::Transfo… in getTransformOperationType()