HomeSort by relevance Sort by last modified time
    Searched defs:getOperationType (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
IdentityTransformOperation.h 41 virtual OperationType getOperationType() const { return Identity; }
42 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Identity; }
InterpolatedTransformOperation.h 50 virtual OperationType getOperationType() const { return Interpolated; }
51 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Interpolated; }
Matrix3DTransformOperation.h 45 virtual OperationType getOperationType() const { return Matrix3D; }
46 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Matrix3D; }
PerspectiveTransformOperation.h 46 virtual OperationType getOperationType() const { return Perspective; }
47 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Perspective; }
SkewTransformOperation.h 44 virtual OperationType getOperationType() const { return m_type; }
45 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == m_type; }
MatrixTransformOperation.h 50 virtual OperationType getOperationType() const { return Matrix; }
51 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Matrix; }
RotateTransformOperation.h 52 virtual OperationType getOperationType() const { return m_type; }
53 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == m_type; }
ScaleTransformOperation.h 51 virtual OperationType getOperationType() const { return m_type; }
52 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == m_type; }
TranslateTransformOperation.h 57 virtual OperationType getOperationType() const { return m_type; }
58 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == m_type; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 54 virtual OperationType getOperationType() const { return m_type; }
55 virtual bool isSameType(const ClipPathOperation& o) const { return o.getOperationType() == m_type; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FilterOperation.h 78 virtual OperationType getOperationType() const { return m_type; }
79 virtual bool isSameType(const FilterOperation& o) const { return o.getOperationType() == m_type; }

Completed in 232 milliseconds