HomeSort by relevance Sort by last modified time
    Searched refs:getOperationType (Results 1 - 24 of 24) 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; }
TransformOperation.h 67 virtual OperationType getOperationType() const = 0;
72 OperationType opType = getOperationType();
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; }
MatrixTransformOperation.h 50 virtual OperationType getOperationType() const { return Matrix; }
51 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Matrix; }
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/platform/graphics/filters/
FilterOperations.cpp 91 FilterOperation::OperationType type = m_operations.at(i)->getOperationType();
101 if (m_operations.at(i)->getOperationType() == FilterOperation::REFERENCE)
110 FilterOperation::OperationType operationType = m_operations.at(i).get()->getOperationType();
122 switch (filterOperation->getOperationType()) {
FilterOperation.h 78 virtual OperationType getOperationType() const { return m_type; }
79 virtual bool isSameType(const FilterOperation& o) const { return o.getOperationType() == m_type; }
SkiaImageFilterBuilder.cpp 218 switch (op.getOperationType()) {
  /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; }
RenderLayerFilterInfo.cpp 119 if (filterOperation->getOperationType() != FilterOperation::REFERENCE)
171 if (filterOperation->getOperationType() != FilterOperation::CUSTOM)
FilterEffectRenderer.cpp 127 switch (filterOperation->getOperationType()) {
284 if (filterOperation->getOperationType() != FilterOperation::REFERENCE) {
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResourceLoader.cpp 63 if (filterOperation->getOperationType() == FilterOperation::REFERENCE) {
217 if (filterOperation->getOperationType() == FilterOperation::CUSTOM) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsLayer.cpp 487 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtil.cpp 66 TransformOperation::OperationType operationType = transformOperations.operations()[j]->getOperationType();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 121 if (clipPathOperation && clipPathOperation->getOperationType() == ClipPathOperation::SHAPE) {
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 132 if (from->getOperationType() != ClipPathOperation::SHAPE || to->getOperationType() != ClipPathOperation::SHAPE)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]

Completed in 340 milliseconds