/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 | 16 TransformOperations::TransformOperations() in TransformOperations() function in cc::TransformOperations 20 TransformOperations::TransformOperations(const TransformOperations& other) { in TransformOperations() function in cc::TransformOperations 29 TransformOperations::~TransformOperations() { in ~TransformOperations() 32 gfx::Transform TransformOperations::Apply() const { in Apply() 39 gfx::Transform TransformOperations::Blend(const TransformOperations& from, in Blend() 46 bool TransformOperations::BlendedBoundsForBox(const gfx::BoxF& box, in BlendedBoundsForBox() 47 const TransformOperations& from, in BlendedBoundsForBox() 86 bool TransformOperations::AffectsScale() const { in AffectsScale() 97 bool TransformOperations::IsTranslation() const { in IsTranslation() 117 bool TransformOperations::ScaleComponent(gfx::Vector3dF* scale) const { in ScaleComponent() [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, 68 bool MatchesTypes(const TransformOperations& other) const; 73 bool CanBlendWith(const TransformOperations& other) const; 90 bool BlendInternal(const TransformOperations& from, 102 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 | 109 const TransformOperations& value, in Create() 116 const TransformOperations& value, in TransformKeyframe() 123 const TransformOperations& TransformKeyframe::Value() const { in Value()
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
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 …bool blendedBoundsForBox(const FloatBox&, const TransformOperations& from, const double& minProgre… 85 …TransformOperations blendByMatchingOperations(const TransformOperations& from, const double& progr… 86 …TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progre… 87 TransformOperations blend(const TransformOperations& from, double progress) const; 88 TransformOperations add(const TransformOperations& addend) const;
|
D | TransformOperationsTest.cpp | 44 static const TransformOperations identityOperations; 46 static void EmpiricallyTestBounds(const TransformOperations& from, in EmpiricallyTestBounds() 47 const TransformOperations& to, in EmpiricallyTestBounds() 62 TransformOperations operations = from.blend(to, t); in EmpiricallyTestBounds() 80 TransformOperations fromOps; in TEST() 81 TransformOperations toOps; in TEST() 121 TransformOperations fromOps; in TEST() 122 TransformOperations toOps; in TEST() 132 TransformOperations fromOps; in TEST() 133 TransformOperations toOps; in TEST() [all …]
|
D | TransformOperations.cpp | 34 TransformOperations::TransformOperations(bool makeIdentity) in TransformOperations() function in blink::TransformOperations 40 bool TransformOperations::operator==(const TransformOperations& o) const in operator ==() 54 bool TransformOperations::operationsMatch(const TransformOperations& other) const in operationsMatch() 69 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from,… in blendByMatchingOperations() 71 TransformOperations result; in blendByMatchingOperations() 94 TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations&… in blendByUsingMatrixInterpolation() 96 TransformOperations result; in blendByUsingMatrixInterpolation() 101 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) co… in blend() 239 bool TransformOperations::blendedBoundsForBox(const FloatBox& box, const TransformOperations& from,… in blendedBoundsForBox() 374 TransformOperations TransformOperations::add(const TransformOperations& addend) const in add() [all …]
|
D | InterpolatedTransformOperation.h | 42 …fPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperat… in create() 65 …InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, dou… in InterpolatedTransformOperation() 71 const TransformOperations from; 72 const TransformOperations to;
|
D | InterpolatedTransformOperation.cpp | 62 TransformOperations thisOperations; in blend() 64 TransformOperations fromOperations; in blend()
|
/external/chromium_org/cc/layers/ |
D | layer_utils_unittest.cc | 57 TransformOperations start; in TEST_F() 59 TransformOperations end; in TEST_F() 82 TransformOperations start; in TEST_F() 84 TransformOperations end; in TEST_F() 105 TransformOperations start; in TEST_F() 107 TransformOperations end; in TEST_F() 128 TransformOperations start; in TEST_F() 130 TransformOperations child_end; in TEST_F() 134 TransformOperations grand_child_end; in TEST_F() 155 TransformOperations start; in TEST_F() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
D | AnimatableTransform.h | 42 static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&); 43 const TransformOperations& transformOperations() const in transformOperations() 54 explicit AnimatableTransform(const TransformOperations& transform) in AnimatableTransform() 60 const TransformOperations m_transform;
|
D | AnimatableValueTestHelperTest.cpp | 94 TransformOperations operations1; in TEST_F() 100 TransformOperations operations2; in TEST_F()
|
D | AnimatableTransform.cpp | 36 PassRefPtrWillBeRawPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& … in create()
|
/external/chromium_org/cc/test/ |
D | animation_test_common.cc | 58 TransformOperations start_operations, in AddAnimatedTransform() 59 TransformOperations operations) { in AddAnimatedTransform() 89 TransformOperations start_operations; in AddAnimatedTransform() 94 TransformOperations operations; in AddAnimatedTransform() 323 TransformOperations start_operations, in AddAnimatedTransformToLayer() 324 TransformOperations operations) { in AddAnimatedTransformToLayer() 330 TransformOperations start_operations, in AddAnimatedTransformToLayer() 331 TransformOperations operations) { in AddAnimatedTransformToLayer()
|
D | animation_test_common.h | 162 TransformOperations start_operations, 163 TransformOperations operations); 167 TransformOperations start_operations, 168 TransformOperations operations);
|
/external/chromium_org/third_party/WebKit/Source/platform/animation/ |
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;
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimationTranslationUtil.h | 37 class TransformOperations; variable 41 void toWebTransformOperations(const TransformOperations& inOperations, WebTransformOperations* outO…
|
D | CompositorAnimationsTest.cpp | 165 value = AnimatableTransform::create(TransformOperations()); in createDefaultKeyframe() 194 …eyframeVector> createCompositableTransformKeyframeVector(const Vector<TransformOperations>& values) in createCompositableTransformKeyframeVector() 242 …->setPropertyValue(CSSPropertyTransform, AnimatableTransform::create(TransformOperations()).get()); in TEST_F() 252 TransformOperations ops; in TEST_F() 261 TransformOperations ops2; in TEST_F() 296 Vector<TransformOperations> transformVector; in TEST_F() 297 transformVector.append(TransformOperations()); in TEST_F() 299 transformVector.append(TransformOperations()); in TEST_F() 308 transformVector.append(TransformOperations()); in TEST_F()
|
/external/chromium_org/cc/blink/ |
D | web_transform_operations_impl.h | 20 const cc::TransformOperations& AsTransformOperations() const; 34 cc::TransformOperations transform_operations_;
|
D | web_transform_animation_curve_impl.cc | 35 const cc::TransformOperations& transform_operations = in add() 47 const cc::TransformOperations& transform_operations = in add()
|
D | web_transform_operations_impl.cc | 16 const cc::TransformOperations&
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | TransformBuilder.h | 46 …ormOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperati…
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | StyleTransformData.h | 46 TransformOperations m_operations;
|