Home
last modified time | relevance | path

Searched refs:TransformOperations (Results 1 – 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/transforms/
DTransformOperations.cpp33 TransformOperations::TransformOperations(bool makeIdentity) in TransformOperations() function in WebCore::TransformOperations
39 bool TransformOperations::operator==(const TransformOperations& o) const in operator ==()
53 bool TransformOperations::operationsMatch(const TransformOperations& other) const in operationsMatch()
68 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from,… in blendByMatchingOperations()
70 TransformOperations result; in blendByMatchingOperations()
93 TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations&… in blendByUsingMatrixInterpolation()
95 TransformOperations result; in blendByUsingMatrixInterpolation()
100 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) co… in blend()
112 TransformOperations TransformOperations::add(const TransformOperations& addend) const in add()
114 TransformOperations result; in add()
DTransformOperations.h35 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;
84TransformOperations blendByMatchingOperations(const TransformOperations& from, const double& progr…
85TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progre…
86 TransformOperations blend(const TransformOperations& from, double progress) const;
87 TransformOperations add(const TransformOperations& addend) const;
DInterpolatedTransformOperation.h42 …fPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperat… in create()
62 …InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, dou… in InterpolatedTransformOperation()
68 const TransformOperations from;
69 const TransformOperations to;
DInterpolatedTransformOperation.cpp62 TransformOperations thisOperations; in blend()
64 TransformOperations fromOperations; in blend()
/external/chromium_org/cc/animation/
Dtransform_operations_unittest.cc21 ScopedVector<TransformOperations> transforms; in TEST()
23 TransformOperations* to_add = new TransformOperations(); in TEST()
27 to_add = new TransformOperations(); in TEST()
31 to_add = new TransformOperations(); in TEST()
35 to_add = new TransformOperations(); in TEST()
39 to_add = new TransformOperations(); in TEST()
52 TransformOperations translates; in TEST()
57 TransformOperations skews; in TEST()
62 TransformOperations translates2; in TEST()
67 TransformOperations translates3 = translates2; in TEST()
[all …]
Dtransform_operations.cc15 TransformOperations::TransformOperations() in TransformOperations() function in cc::TransformOperations
19 TransformOperations::TransformOperations(const TransformOperations& other) { in TransformOperations() function in cc::TransformOperations
28 TransformOperations::~TransformOperations() { in ~TransformOperations()
31 gfx::Transform TransformOperations::Apply() const { in Apply()
38 gfx::Transform TransformOperations::Blend(const TransformOperations& from, in Blend()
45 bool TransformOperations::BlendedBoundsForBox(const gfx::BoxF& box, in BlendedBoundsForBox()
46 const TransformOperations& from, in BlendedBoundsForBox()
81 bool TransformOperations::MatchesTypes(const TransformOperations& other) const { in MatchesTypes()
98 bool TransformOperations::CanBlendWith( in CanBlendWith()
99 const TransformOperations& other) const { in CanBlendWith()
[all …]
Dtransform_operations.h31 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,
91 DISALLOW_ASSIGN(TransformOperations);
Dkeyframed_animation_curve_unittest.cc196 TransformOperations operations; in TEST()
212 TransformOperations operations1; in TEST()
214 TransformOperations operations2; in TEST()
232 TransformOperations operations1; in TEST()
234 TransformOperations operations2; in TEST()
236 TransformOperations operations3; in TEST()
259 TransformOperations operations1; in TEST()
261 TransformOperations operations2; in TEST()
263 TransformOperations operations3; in TEST()
265 TransformOperations operations4; in TEST()
[all …]
Dkeyframed_animation_curve.h78 const TransformOperations& value,
82 const TransformOperations& Value() const;
89 const TransformOperations& value,
92 TransformOperations value_;
Dkeyframed_animation_curve.cc115 const TransformOperations& value, in Create()
122 const TransformOperations& value, in TransformKeyframe()
129 const TransformOperations& TransformKeyframe::Value() const { in Value()
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
DAnimationTranslationUtilTest.cpp124 TransformOperations operations1; in TEST()
128 TransformOperations operations2; in TEST()
143 TransformOperations operations1; in TEST()
147 TransformOperations operations2; in TEST()
162 TransformOperations operations1; in TEST()
165 TransformOperations operations2; in TEST()
180 TransformOperations operations1; in TEST()
184 TransformOperations operations2; in TEST()
199 TransformOperations operations1; in TEST()
203 TransformOperations operations2; in TEST()
[all …]
DAnimationValue.h81 …explicit TransformAnimationValue(double keyTime, const TransformOperations* value = 0, PassRefPtr<…
89 const TransformOperations* value() const { return &m_value; } in value()
92 TransformOperations m_value;
DAnimationTranslationUtil.h58 void toWebTransformOperations(const TransformOperations& inOperations, const FloatSize& boxSize, bl…
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableTransform.h42 static PassRefPtr<AnimatableTransform> create(const TransformOperations&);
43 const TransformOperations& transformOperations() const in transformOperations()
53 explicit AnimatableTransform(const TransformOperations& transform) in AnimatableTransform()
59 const TransformOperations m_transform;
DAnimatableValueTestHelperTest.cpp140 TransformOperations operations1; in TEST_F()
146 TransformOperations operations2; in TEST_F()
DAnimatableTransform.cpp36 PassRefPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform) in create()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
DCustomFilterTransformParameter.h55 const TransformOperations& operations() const { return m_operations; } in operations()
56 void setOperations(const TransformOperations& value) { m_operations = value; } in setOperations()
67 TransformOperations m_operations;
DCustomFilterTransformParameter.cpp43 const TransformOperations& from = fromTransformParameter->operations(); in blend()
44 const TransformOperations& to = operations(); in blend()
/external/chromium_org/webkit/renderer/compositor_bindings/
Dweb_transform_operations_impl.h20 const cc::TransformOperations& AsTransformOperations() const;
34 cc::TransformOperations transform_operations_;
Dweb_transform_animation_curve_impl.cc33 const cc::TransformOperations& transform_operations = in add()
45 const cc::TransformOperations& transform_operations = in add()
Dweb_transform_operations_impl.cc15 const cc::TransformOperations&
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DTransformBuilder.h48 …ormOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperati…
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleTransformData.h46 TransformOperations m_operations;
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
DImplicitAnimation.cpp233 const TransformOperations* val = &m_fromStyle->transform(); in validateTransformFunctionList()
234 const TransformOperations* toVal = &m_toStyle->transform(); in validateTransformFunctionList()
/external/chromium_org/cc/test/
Danimation_test_common.cc64 TransformOperations start_operations; in AddAnimatedTransform()
70 TransformOperations operations; in AddAnimatedTransform()

12