Searched refs:LayerAnimationElement (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/ui/compositor/
H A Dlayer_animation_element.h28 class COMPOSITOR_EXPORT LayerAnimationElement { class in namespace:ui
64 LayerAnimationElement(AnimatableProperties properties,
67 virtual ~LayerAnimationElement();
71 static LayerAnimationElement* CreateTransformElement(
79 static LayerAnimationElement* CreateInverseTransformElement(
81 const LayerAnimationElement* uninverted_transition);
85 static LayerAnimationElement* CloneInverseTransformElement(
86 const LayerAnimationElement* other);
95 static LayerAnimationElement* CreateInterpolatedTransformElement(
101 static LayerAnimationElement* CreateBoundsElemen
[all...]
H A Dlayer_animation_sequence.h24 // another. Although it has a similar interface to LayerAnimationElement, it is
25 // not a LayerAnimationElement (i.e., it is not permitted to have a sequence in
41 explicit LayerAnimationSequence(LayerAnimationElement* element);
78 void GetTargetValue(LayerAnimationElement::TargetValue* target) const;
84 LayerAnimationElement::AnimatableProperties properties() const {
90 void AddElement(LayerAnimationElement* element);
99 LayerAnimationElement::AnimatableProperties other) const;
130 LayerAnimationElement* FirstElement() const;
135 typedef std::vector<linked_ptr<LayerAnimationElement> > Elements;
150 LayerAnimationElement* CurrentElemen
[all...]
H A Dlayer_animation_observer.cc80 LayerAnimationElement::AnimatableProperty property) const {
85 LayerAnimationElement::AnimatableProperty property) const {
143 LayerAnimationElement::AnimatableProperties properties =
145 for (unsigned i = LayerAnimationElement::FIRST_PROPERTY;
146 i != LayerAnimationElement::SENTINEL;
149 LayerAnimationElement::AnimatableProperty property =
150 static_cast<LayerAnimationElement::AnimatableProperty>(i);
158 LayerAnimationElement::AnimatableProperty property) const {
H A Dlayer_animation_element.cc30 class Pause : public LayerAnimationElement {
33 : LayerAnimationElement(properties, duration) {
51 class TransformTransition : public LayerAnimationElement {
54 : LayerAnimationElement(TRANSFORM, duration),
85 class InterpolatedTransformTransition : public LayerAnimationElement {
89 : LayerAnimationElement(TRANSFORM, duration),
118 class BoundsTransition : public LayerAnimationElement {
121 : LayerAnimationElement(BOUNDS, duration),
152 class OpacityTransition : public LayerAnimationElement {
155 : LayerAnimationElement(OPACIT
625 LayerAnimationElement::LayerAnimationElement( function in class:ui::LayerAnimationElement
637 LayerAnimationElement::LayerAnimationElement( function in class:ui::LayerAnimationElement
[all...]
H A Dlayer_animation_sequence_unittest.cc31 EXPECT_EQ(static_cast<LayerAnimationElement::AnimatableProperties>(
32 LayerAnimationElement::UNKNOWN),
34 EXPECT_FALSE(sequence.HasConflictingProperty(LayerAnimationElement::UNKNOWN));
48 LayerAnimationElement::CreateBrightnessElement(target, delta));
66 EXPECT_EQ(static_cast<LayerAnimationElement::AnimatableProperties>(
67 LayerAnimationElement::BRIGHTNESS),
83 LayerAnimationElement::CreateOpacityElement(target, delta));
109 EXPECT_EQ(static_cast<LayerAnimationElement::AnimatableProperties>(
110 LayerAnimationElement::OPACITY),
126 LayerAnimationElement
[all...]
H A Dlayer_animation_element_unittest.cc34 scoped_ptr<LayerAnimationElement> element(
35 LayerAnimationElement::CreateTransformElement(target_transform, delta));
64 LayerAnimationElement::TargetValue target_value(&delegate);
74 scoped_ptr<LayerAnimationElement> base_element(
75 LayerAnimationElement::CreateTransformElement(transform, delta));
77 scoped_ptr<LayerAnimationElement> inverse_element(
78 LayerAnimationElement::CreateInverseTransformElement(transform,
90 scoped_ptr<LayerAnimationElement> base_element(
91 LayerAnimationElement::CreateTransformElement(transform, delta));
93 scoped_ptr<LayerAnimationElement> inverse_elemen
[all...]
H A Dlayer_animator_unittest.cc45 LayerAnimationElement* first,
46 LayerAnimationElement* second) {
71 LayerAnimationElement::AnimatableProperty property) const {
76 LayerAnimationElement::AnimatableProperty property) const {
176 TestLayerAnimationSequence(LayerAnimationElement* element,
234 animator->StopAnimatingProperty(LayerAnimationElement::OPACITY);
237 animator->StopAnimatingProperty(LayerAnimationElement::BOUNDS);
302 LayerAnimationElement::CreateBrightnessElement(target_brightness,
340 LayerAnimationElement::CreateOpacityElement(target_opacity, delta)));
351 test_controller.GetRunningSequence(LayerAnimationElement
[all...]
H A Dscoped_layer_animation_settings.cc45 scoped_ptr<LayerAnimationElement> inverse = GetInverseElement(sequence,
51 LayerAnimationElement::CloneInverseTransformElement(
56 scoped_ptr<LayerAnimationElement> GetInverseElement(
63 LayerAnimationElement* element = sequence->FirstElement();
64 DCHECK_EQ(static_cast<LayerAnimationElement::AnimatableProperties>(
65 LayerAnimationElement::TRANSFORM),
69 scoped_ptr<LayerAnimationElement> to_return(
70 LayerAnimationElement::CreateInverseTransformElement(base, element));
H A Dlayer_animation_observer.h101 LayerAnimationElement::AnimatableProperty property) const;
107 LayerAnimationElement::AnimatableProperty property) const;
139 LayerAnimationElement::AnimatableProperty property) const;
147 typedef std::map<LayerAnimationElement::AnimatableProperty,
H A Dlayer_animation_sequence.cc19 : properties_(LayerAnimationElement::UNKNOWN),
28 LayerAnimationSequence::LayerAnimationSequence(LayerAnimationElement* element)
29 : properties_(LayerAnimationElement::UNKNOWN),
163 LayerAnimationElement::TargetValue* target) const {
182 void LayerAnimationSequence::AddElement(LayerAnimationElement* element) {
188 LayerAnimationElement::AnimatableProperties other) const {
189 return (properties_ & other) != LayerAnimationElement::UNKNOWN;
217 LayerAnimationElement::AnimatableProperties element_properties =
219 LayerAnimationElement::AnimatableProperty event_property =
220 LayerAnimationElement
[all...]
H A Dlayer_animator.cc84 StopAnimatingProperty(LayerAnimationElement::property); \
88 scoped_ptr<LayerAnimationElement> element( \
89 LayerAnimationElement::Create##name##Element(value, duration)); \
95 LayerAnimationElement::TargetValue target(delegate()); \
189 LayerAnimationElement::AnimatableProperties animated_properties =
190 LayerAnimationElement::UNKNOWN;
201 LayerAnimationElement::CreatePauseElement(animated_properties,
228 LayerAnimationElement::AnimatableProperties animated_properties =
229 LayerAnimationElement::UNKNOWN;
239 LayerAnimationElement
[all...]
H A Dlayer_animator.h140 LayerAnimationElement::AnimatableProperties properties_to_pause);
150 LayerAnimationElement::AnimatableProperty property) const;
156 LayerAnimationElement::AnimatableProperty property);
259 LayerAnimationElement::AnimatableProperty property);
296 void GetTargetValue(LayerAnimationElement::TargetValue* target) const;
/external/chromium_org/ui/compositor/test/
H A Dlayer_animator_test_controller.cc22 LayerAnimationElement::AnimatableProperty property) {
37 LayerAnimationElement::AnimatableProperty animatable_property =
38 LayerAnimationElement::ToAnimatableProperty(threaded_properties[i]);
43 LayerAnimationElement* element = sequence->CurrentElement();
H A Dlayer_animator_test_controller.h23 LayerAnimationElement::AnimatableProperty property);
/external/chromium_org/ui/app_list/views/
H A Dpulsing_block_view.cc43 ui::LayerAnimationElement::CreateOpacityElement(
47 ui::LayerAnimationElement::CreateTransformElement(
54 ui::LayerAnimationElement::CreatePauseElement(
55 ui::LayerAnimationElement::OPACITY,
59 ui::LayerAnimationElement::CreatePauseElement(
60 ui::LayerAnimationElement::TRANSFORM,
/external/chromium_org/ash/wm/
H A Dworkspace_controller.cc124 ui::LayerAnimationElement::TRANSFORM |
125 ui::LayerAnimationElement::OPACITY |
126 ui::LayerAnimationElement::BRIGHTNESS |
127 ui::LayerAnimationElement::VISIBILITY);
H A Dwindow_animations.cc125 scoped_ptr<ui::LayerAnimationElement> transition(
126 ui::LayerAnimationElement::CreateInterpolatedTransformElement(
139 (duration * 3) / 4, ui::LayerAnimationElement::OPACITY);
146 ui::LayerAnimationElement::CreateOpacityElement(
152 ui::LayerAnimationElement::CreateTransformElement(
421 scoped_ptr<ui::LayerAnimationElement> brightness_element(
422 ui::LayerAnimationElement::CreateBrightnessElement(
427 scoped_ptr<ui::LayerAnimationElement> grayscale_element(
428 ui::LayerAnimationElement::CreateGrayscaleElement(
H A Dsession_state_animator_impl.cc71 ui::LayerAnimationElement::CreateTransformElement(
88 ui::LayerAnimationElement::CreateTransformElement(
106 ui::LayerAnimationElement::CreateTransformElement(
109 ui::LayerAnimationElement::CreateOpacityElement(0.0, duration));
124 ui::LayerAnimationElement::CreateOpacityElement(
140 ui::LayerAnimationElement::CreateOpacityElement(opacity, duration));
195 ui::LayerAnimationElement::CreateOpacityElement(
227 ui::LayerAnimationElement::CreateOpacityElement(
266 scoped_ptr<ui::LayerAnimationElement> brightness_element(
267 ui::LayerAnimationElement
[all...]
/external/chromium_org/ash/frame/
H A Dheader_painter_util.cc92 ui::LayerAnimationElement::OPACITY) &&
94 ui::LayerAnimationElement::VISIBILITY);
/external/chromium_org/ash/rotator/
H A Dscreen_rotation.h29 class ASH_EXPORT ScreenRotation : public ui::LayerAnimationElement {
H A Dscreen_rotation.cc34 : ui::LayerAnimationElement(LayerAnimationElement::TRANSFORM,
/external/chromium_org/ui/wm/core/
H A Dvisibility_controller.cc56 ui::LayerAnimationElement::VISIBILITY) &&
H A Dvisibility_controller_unittest.cc46 IsAnimatingProperty(ui::LayerAnimationElement::OPACITY));
H A Dwindow_animations.cc354 ui::LayerAnimationElement* CreateGrowShrinkElement(
367 scoped_ptr<ui::LayerAnimationElement> transition(
368 ui::LayerAnimationElement::CreateInterpolatedTransformElement(
385 sequence->AddElement(ui::LayerAnimationElement::CreatePauseElement(
386 ui::LayerAnimationElement::BOUNDS,
440 ui::LayerAnimationElement::OPACITY);
442 scoped_ptr<ui::LayerAnimationElement> opacity(
443 ui::LayerAnimationElement::CreateOpacityElement(
479 scoped_ptr<ui::LayerAnimationElement> transition(
480 ui::LayerAnimationElement
[all...]
/external/chromium_org/ash/first_run/
H A Ddesktop_cleaner.cc47 if (!WasAnimationCompletedForProperty(ui::LayerAnimationElement::OPACITY)) {

Completed in 989 milliseconds

12