/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TransformOperations.cpp | 33 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()
|
D | 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& progr… 85 …TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progre… 86 TransformOperations blend(const TransformOperations& from, double progress) const; 87 TransformOperations add(const TransformOperations& addend) const;
|
D | InterpolatedTransformOperation.h | 42 …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;
|
D | InterpolatedTransformOperation.cpp | 62 TransformOperations thisOperations; in blend() 64 TransformOperations fromOperations; in blend()
|
/external/chromium_org/cc/animation/ |
D | transform_operations_unittest.cc | 21 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 …]
|
D | transform_operations.cc | 15 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 …]
|
D | 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, 91 DISALLOW_ASSIGN(TransformOperations);
|
D | keyframed_animation_curve_unittest.cc | 196 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 …]
|
D | keyframed_animation_curve.h | 78 const TransformOperations& value, 82 const TransformOperations& Value() const; 89 const TransformOperations& value, 92 TransformOperations value_;
|
D | keyframed_animation_curve.cc | 115 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/ |
D | AnimationTranslationUtilTest.cpp | 124 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 …]
|
D | AnimationValue.h | 81 …explicit TransformAnimationValue(double keyTime, const TransformOperations* value = 0, PassRefPtr<… 89 const TransformOperations* value() const { return &m_value; } in value() 92 TransformOperations m_value;
|
D | AnimationTranslationUtil.h | 58 void toWebTransformOperations(const TransformOperations& inOperations, const FloatSize& boxSize, bl…
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimatableTransform.h | 42 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;
|
D | AnimatableValueTestHelperTest.cpp | 140 TransformOperations operations1; in TEST_F() 146 TransformOperations operations2; in TEST_F()
|
D | AnimatableTransform.cpp | 36 PassRefPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform) in create()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/ |
D | CustomFilterTransformParameter.h | 55 const TransformOperations& operations() const { return m_operations; } in operations() 56 void setOperations(const TransformOperations& value) { m_operations = value; } in setOperations() 67 TransformOperations m_operations;
|
D | CustomFilterTransformParameter.cpp | 43 const TransformOperations& from = fromTransformParameter->operations(); in blend() 44 const TransformOperations& to = operations(); in blend()
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
D | web_transform_operations_impl.h | 20 const cc::TransformOperations& AsTransformOperations() const; 34 cc::TransformOperations transform_operations_;
|
D | web_transform_animation_curve_impl.cc | 33 const cc::TransformOperations& transform_operations = in add() 45 const cc::TransformOperations& transform_operations = in add()
|
D | web_transform_operations_impl.cc | 15 const cc::TransformOperations&
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | TransformBuilder.h | 48 …ormOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperati…
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | StyleTransformData.h | 46 TransformOperations m_operations;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
D | ImplicitAnimation.cpp | 233 const TransformOperations* val = &m_fromStyle->transform(); in validateTransformFunctionList() 234 const TransformOperations* toVal = &m_toStyle->transform(); in validateTransformFunctionList()
|
/external/chromium_org/cc/test/ |
D | animation_test_common.cc | 64 TransformOperations start_operations; in AddAnimatedTransform() 70 TransformOperations operations; in AddAnimatedTransform()
|