HomeSort by relevance Sort by last modified time
    Searched refs:transformOperations (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableTransform.h 35 #include "platform/transforms/TransformOperations.h"
42 static PassRefPtr<AnimatableTransform> create(const TransformOperations&);
43 const TransformOperations& transformOperations() const
53 explicit AnimatableTransform(const TransformOperations& transform)
59 const TransformOperations m_transform;
AnimatableValueTestHelper.cpp 157 TransformOperations ops = animTransform.transformOperations();
160 // FIXME: TransformOperations should really have it's own pretty-printer
CompositorAnimations.cpp 170 if (toAnimatableTransform(frames[i]->propertyValue(CSSPropertyWebkitTransform))->transformOperations().dependsOnBoxSize())
462 toWebTransformOperations(toAnimatableTransform(value.get())->transformOperations(), FloatSize(), ops.get());
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp 60 void toWebTransformOperations(const TransformOperations& transformOperations, const FloatSize& boxSize, WebTransformOperations* webTransformOperations)
62 // We need to do a deep copy the transformOperations may contain ref pointers to TransformOperation objects.
63 for (size_t j = 0; j < transformOperations.size(); ++j) {
64 switch (transformOperations.operations()[j]->type()) {
70 ScaleTransformOperation* transform = static_cast<ScaleTransformOperation*>(transformOperations.operations()[j].get());
79 TranslateTransformOperation* transform = static_cast<TranslateTransformOperation*>(transformOperations.operations()[j].get());
87 RotateTransformOperation* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get());
94 SkewTransformOperation* transform = static_cast<SkewTransformOperation*>(transformOperations.operations()[j].get());
99 MatrixTransformOperation* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 558 const TransformOperations& operations = toAnimatableTransform(value)->transformOperations();
561 style->setTransform(operations.size() ? operations : TransformOperations(true));

Completed in 66 milliseconds