/external/chromium_org/ui/compositor/ |
layer_animation_element.h | 28 class COMPOSITOR_EXPORT LayerAnimationElement { 59 LayerAnimationElement(const AnimatableProperties& properties, 62 virtual ~LayerAnimationElement(); 66 static LayerAnimationElement* CreateTransformElement( 74 static LayerAnimationElement* CreateInverseTransformElement( 76 const LayerAnimationElement* uninverted_transition); 80 static LayerAnimationElement* CloneInverseTransformElement( 81 const LayerAnimationElement* other); 90 static LayerAnimationElement* CreateInterpolatedTransformElement( 96 static LayerAnimationElement* CreateBoundsElement [all...] |
layer_animation_sequence.h | 24 // 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 const LayerAnimationElement::AnimatableProperties& properties() const { 90 void AddElement(LayerAnimationElement* element); 99 const LayerAnimationElement::AnimatableProperties& other) const; 130 LayerAnimationElement* FirstElement() const; 135 typedef std::vector<linked_ptr<LayerAnimationElement> > Elements; 150 LayerAnimationElement* CurrentElement() const [all...] |
layer_animation_element.cc | 30 class Pause : public LayerAnimationElement { 33 : LayerAnimationElement(properties, duration) { 51 class TransformTransition : public LayerAnimationElement { 54 : LayerAnimationElement(GetProperties(), duration), 79 properties.insert(LayerAnimationElement::TRANSFORM); 91 class InterpolatedTransformTransition : public LayerAnimationElement { 95 : LayerAnimationElement(GetProperties(), duration), 119 properties.insert(LayerAnimationElement::TRANSFORM); 130 class BoundsTransition : public LayerAnimationElement { 133 : LayerAnimationElement(GetProperties(), duration) [all...] |
layer_animation_element_unittest.cc | 34 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_element [all...] |
layer_animation_observer.h | 101 LayerAnimationElement::AnimatableProperty property) const; 107 LayerAnimationElement::AnimatableProperty property) const; 139 LayerAnimationElement::AnimatableProperty property) const; 147 typedef std::map<LayerAnimationElement::AnimatableProperty,
|
layer_animation_sequence_unittest.cc | 32 LayerAnimationElement::AnimatableProperties properties; 47 LayerAnimationElement::CreateBrightnessElement(target, delta)); 66 EXPECT_TRUE(sequence.properties().find(LayerAnimationElement::BRIGHTNESS) != 82 LayerAnimationElement::CreateOpacityElement(target, delta)); 109 EXPECT_TRUE(sequence.properties().find(LayerAnimationElement::OPACITY) != 125 LayerAnimationElement::CreateOpacityElement(target_opacity, delta)); 128 LayerAnimationElement::AnimatableProperties properties; 129 properties.insert(LayerAnimationElement::BOUNDS); 132 LayerAnimationElement::CreatePauseElement(properties, delta)); 139 LayerAnimationElement::CreateTransformElement(target_transform, delta)) [all...] |
layer_animator_unittest.cc | 44 LayerAnimationElement* first, 45 LayerAnimationElement* second) { 70 LayerAnimationElement::AnimatableProperty property) const { 75 LayerAnimationElement::AnimatableProperty property) const { 144 TestLayerAnimationSequence(LayerAnimationElement* element, 203 animator->StopAnimatingProperty(LayerAnimationElement::OPACITY); 206 animator->StopAnimatingProperty(LayerAnimationElement::BOUNDS); 272 LayerAnimationElement::CreateBrightnessElement(target_brightness, 310 LayerAnimationElement::CreateOpacityElement(target_opacity, delta))); 321 test_controller.GetRunningSequence(LayerAnimationElement::OPACITY)- [all...] |
scoped_layer_animation_settings.cc | 45 scoped_ptr<LayerAnimationElement> inverse = GetInverseElement(sequence, 51 LayerAnimationElement::CloneInverseTransformElement( 56 scoped_ptr<LayerAnimationElement> GetInverseElement( 63 LayerAnimationElement* element = sequence->FirstElement(); 64 LayerAnimationElement::AnimatableProperties transform_property; 65 transform_property.insert(LayerAnimationElement::TRANSFORM); 69 scoped_ptr<LayerAnimationElement> to_return( 70 LayerAnimationElement::CreateInverseTransformElement(base, element));
|
layer_animation_observer.cc | 80 LayerAnimationElement::AnimatableProperty property) const { 85 LayerAnimationElement::AnimatableProperty property) const { 143 const LayerAnimationElement::AnimatableProperties& properties = 145 for (LayerAnimationElement::AnimatableProperties::const_iterator i = 153 LayerAnimationElement::AnimatableProperty property) const {
|
layer_animation_sequence.cc | 27 LayerAnimationSequence::LayerAnimationSequence(LayerAnimationElement* element) 161 LayerAnimationElement::TargetValue* target) const { 180 void LayerAnimationSequence::AddElement(LayerAnimationElement* element) { 187 const LayerAnimationElement::AnimatableProperties& other) const { 188 LayerAnimationElement::AnimatableProperties intersection; 189 std::insert_iterator<LayerAnimationElement::AnimatableProperties> ii( 222 const LayerAnimationElement::AnimatableProperties& element_properties = 224 LayerAnimationElement::AnimatableProperty event_property = 225 LayerAnimationElement::ToAnimatableProperty(event.target_property); 254 LayerAnimationElement* LayerAnimationSequence::FirstElement() const [all...] |
layer_animator.h | 141 LayerAnimationElement::AnimatableProperty property, 152 LayerAnimationElement::AnimatableProperty property) const; 158 LayerAnimationElement::AnimatableProperty property); 258 LayerAnimationElement::AnimatableProperty property); 295 void GetTargetValue(LayerAnimationElement::TargetValue* target) const;
|
layer_animator.cc | 97 StopAnimatingProperty(LayerAnimationElement::property); \ 101 scoped_ptr<LayerAnimationElement> element( \ 102 LayerAnimationElement::Create##name##Element(value, duration)); \ 108 LayerAnimationElement::TargetValue target(delegate()); \ 191 LayerAnimationElement::AnimatableProperties animated_properties; 203 LayerAnimationElement::CreatePauseElement(animated_properties, 230 LayerAnimationElement::AnimatableProperties animated_properties; 241 LayerAnimationElement::CreatePauseElement(animated_properties, 263 LayerAnimationElement::AnimatableProperty property, 265 ui::LayerAnimationElement::AnimatableProperties properties_to_pause [all...] |
/external/chromium_org/ash/rotator/ |
screen_rotation.h | 29 class ASH_EXPORT ScreenRotation : public ui::LayerAnimationElement { 48 static const ui::LayerAnimationElement::AnimatableProperties&
|
screen_rotation.cc | 34 : ui::LayerAnimationElement(GetProperties(), 124 const ui::LayerAnimationElement::AnimatableProperties& 126 static ui::LayerAnimationElement::AnimatableProperties properties; 128 properties.insert(ui::LayerAnimationElement::TRANSFORM);
|
/external/chromium_org/ui/app_list/views/ |
pulsing_block_view.cc | 43 ui::LayerAnimationElement::CreateOpacityElement( 47 ui::LayerAnimationElement::CreateTransformElement( 53 ui::LayerAnimationElement::AnimatableProperties opacity_properties; 54 opacity_properties.insert(ui::LayerAnimationElement::OPACITY); 56 ui::LayerAnimationElement::CreatePauseElement( 60 ui::LayerAnimationElement::AnimatableProperties transform_properties; 61 transform_properties.insert(ui::LayerAnimationElement::TRANSFORM); 63 ui::LayerAnimationElement::CreatePauseElement(
|
/external/chromium_org/ui/compositor/test/ |
layer_animator_test_controller.cc | 22 LayerAnimationElement::AnimatableProperty property) { 37 LayerAnimationElement::AnimatableProperty animatable_property = 38 LayerAnimationElement::ToAnimatableProperty(threaded_properties[i]); 43 LayerAnimationElement* element = sequence->CurrentElement();
|
layer_animator_test_controller.h | 23 LayerAnimationElement::AnimatableProperty property);
|
/external/chromium_org/ash/wm/ |
workspace_controller.cc | 130 ui::LayerAnimationElement::TRANSFORM, 131 ui::LayerAnimationElement::OPACITY, 132 ui::LayerAnimationElement::BRIGHTNESS, 133 ui::LayerAnimationElement::VISIBILITY,
|
session_state_animator.cc | 63 ui::LayerAnimationElement::CreateTransformElement( 80 ui::LayerAnimationElement::CreateTransformElement( 98 ui::LayerAnimationElement::CreateTransformElement( 101 ui::LayerAnimationElement::CreateOpacityElement(0.0, duration)); 116 ui::LayerAnimationElement::CreateOpacityElement( 132 ui::LayerAnimationElement::CreateOpacityElement(opacity, duration)); 187 ui::LayerAnimationElement::CreateOpacityElement( 219 ui::LayerAnimationElement::CreateOpacityElement( 258 scoped_ptr<ui::LayerAnimationElement> brightness_element( 259 ui::LayerAnimationElement::CreateBrightnessElement [all...] |
window_animations.cc | 111 scoped_ptr<ui::LayerAnimationElement> transition( 112 ui::LayerAnimationElement::CreateInterpolatedTransformElement( 125 (duration * 3) / 4, ui::LayerAnimationElement::OPACITY, -1); 132 ui::LayerAnimationElement::CreateOpacityElement( 471 scoped_ptr<ui::LayerAnimationElement> brightness_element( 472 ui::LayerAnimationElement::CreateBrightnessElement( 477 scoped_ptr<ui::LayerAnimationElement> grayscale_element( 478 ui::LayerAnimationElement::CreateGrayscaleElement(
|
/external/chromium_org/ash/shelf/ |
app_list_button.cc | 65 ui::LayerAnimationElement::CreateOpacityElement( 70 ui::LayerAnimationElement::AnimatableProperties opacity_properties; 71 opacity_properties.insert(ui::LayerAnimationElement::OPACITY); 73 ui::LayerAnimationElement::CreatePauseElement(
|
/external/chromium_org/ash/wm/overview/ |
window_selector_panels.cc | 76 ui::LayerAnimationElement::AnimatableProperties paused_properties; 77 paused_properties.insert(ui::LayerAnimationElement::OPACITY); 78 sequence->AddElement(ui::LayerAnimationElement::CreatePauseElement( 81 sequence->AddElement(ui::LayerAnimationElement::CreateOpacityElement(1,
|
/external/chromium_org/ui/views/corewm/ |
window_animations.cc | 329 ui::LayerAnimationElement* CreateGrowShrinkElement( 342 scoped_ptr<ui::LayerAnimationElement> transition( 343 ui::LayerAnimationElement::CreateInterpolatedTransformElement( 361 ui::LayerAnimationElement::AnimatableProperties paused_properties; 362 paused_properties.insert(ui::LayerAnimationElement::BOUNDS); 363 sequence->AddElement(ui::LayerAnimationElement::CreatePauseElement( 385 ui::LayerAnimationElement::OPACITY, 388 scoped_ptr<ui::LayerAnimationElement> opacity( 389 ui::LayerAnimationElement::CreateOpacityElement( 425 scoped_ptr<ui::LayerAnimationElement> transition [all...] |
visibility_controller.cc | 54 IsAnimatingProperty(ui::LayerAnimationElement::OPACITY) &&
|
/external/chromium_org/ash/first_run/ |
desktop_cleaner.cc | 48 if (!WasAnimationCompletedForProperty(ui::LayerAnimationElement::OPACITY)) {
|