HomeSort by relevance Sort by last modified time
    Searched refs:TransformOperations (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperations.h 35 class PLATFORM_EXPORT TransformOperations {
38 explicit TransformOperations(bool makeIdentity = false);
40 bool operator==(const TransformOperations& o) const;
41 bool operator!=(const TransformOperations& o) const
71 bool operationsMatch(const TransformOperations&) const;
84 TransformOperations blendByMatchingOperations(const TransformOperations& from, const double& progress) const;
85 TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progress) const;
86 TransformOperations blend(const TransformOperations& from, double progress) const
    [all...]
TransformOperations.cpp 23 #include "platform/transforms/TransformOperations.h"
33 TransformOperations::TransformOperations(bool makeIdentity)
39 bool TransformOperations::operator==(const TransformOperations& o) const
53 bool TransformOperations::operationsMatch(const TransformOperations& other) const
68 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from, const double& progress) cons
    [all...]
InterpolatedTransformOperation.h 35 #include "platform/transforms/TransformOperations.h"
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress)
62 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress)
68 const TransformOperations from;
69 const TransformOperations to;
InterpolatedTransformOperation.cpp 62 TransformOperations thisOperations;
64 TransformOperations fromOperations;
  /external/chromium_org/cc/animation/
transform_operations.h 31 class CC_EXPORT TransformOperations {
33 TransformOperations();
34 TransformOperations(const TransformOperations& other);
35 ~TransformOperations();
47 gfx::Transform Blend(const TransformOperations& from,
55 const TransformOperations& from,
62 bool MatchesTypes(const TransformOperations& other) const;
67 bool CanBlendWith(const TransformOperations& other) const;
79 bool BlendInternal(const TransformOperations& from
    [all...]
transform_operations.cc 15 TransformOperations::TransformOperations()
19 TransformOperations::TransformOperations(const TransformOperations& other) {
28 TransformOperations::~TransformOperations() {
31 gfx::Transform TransformOperations::Apply() const {
38 gfx::Transform TransformOperations::Blend(const TransformOperations& from
    [all...]
transform_operations_unittest.cc 21 ScopedVector<TransformOperations> transforms;
23 TransformOperations* to_add = new TransformOperations();
27 to_add = new TransformOperations();
31 to_add = new TransformOperations();
35 to_add = new TransformOperations();
39 to_add = new TransformOperations();
52 TransformOperations translates;
57 TransformOperations skews;
62 TransformOperations translates2
    [all...]
keyframed_animation_curve.h 78 const TransformOperations& value,
82 const TransformOperations& Value() const;
89 const TransformOperations& value,
92 TransformOperations value_;
animation_curve.h 24 class TransformOperations;
keyframed_animation_curve_unittest.cc 196 TransformOperations operations;
212 TransformOperations operations1;
214 TransformOperations operations2;
232 TransformOperations operations1;
234 TransformOperations operations2;
236 TransformOperations operations3;
259 TransformOperations operations1;
261 TransformOperations operations2;
263 TransformOperations operations3;
265 TransformOperations operations4
    [all...]
  /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;
AnimatableTransform.cpp 36 PassRefPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform)
AnimatableValueTestHelperTest.cpp 140 TransformOperations operations1;
146 TransformOperations operations2;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterTransformParameter.h 35 #include "platform/transforms/TransformOperations.h"
55 const TransformOperations& operations() const { return m_operations; }
56 void setOperations(const TransformOperations& value) { m_operations = value; }
67 TransformOperations m_operations;
CustomFilterTransformParameter.cpp 43 const TransformOperations& from = fromTransformParameter->operations();
44 const TransformOperations& to = operations();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.h 34 #include "platform/transforms/TransformOperations.h"
48 static bool createTransformOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperations);
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_transform_operations_impl.h 20 const cc::TransformOperations& AsTransformOperations() const;
34 cc::TransformOperations transform_operations_;
web_transform_animation_curve_impl.cc 33 const cc::TransformOperations& transform_operations =
45 const cc::TransformOperations& transform_operations =
web_transform_operations_impl.cc 15 const cc::TransformOperations&
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleTransformData.h 29 #include "platform/transforms/TransformOperations.h"
46 TransformOperations m_operations;
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.h 35 #include "platform/transforms/TransformOperations.h"
58 void toWebTransformOperations(const TransformOperations& inOperations, const FloatSize& boxSize, blink::WebTransformOperations* outOperations);
AnimationValue.h 32 #include "platform/transforms/TransformOperations.h"
81 explicit TransformAnimationValue(double keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
89 const TransformOperations* value() const { return &m_value; }
92 TransformOperations m_value;
AnimationTranslationUtilTest.cpp 36 #include "platform/transforms/TransformOperations.h"
124 TransformOperations operations1;
128 TransformOperations operations2;
143 TransformOperations operations1;
147 TransformOperations operations2;
162 TransformOperations operations1;
165 TransformOperations operations2;
180 TransformOperations operations1;
184 TransformOperations operations2;
199 TransformOperations operations1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerReflectionInfo.cpp 90 TransformOperations transform;
  /external/chromium_org/cc/test/
animation_test_common.cc 64 TransformOperations start_operations;
70 TransformOperations operations;

Completed in 195 milliseconds

1 2