HomeSort by relevance Sort by last modified time
    Searched refs:LayerAnimationElement (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/ui/compositor/
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_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;
129 typedef std::vector<linked_ptr<LayerAnimationElement> > Elements;
144 LayerAnimationElement* CurrentElement();
147 LayerAnimationElement::AnimatableProperties properties_
    [all...]
layer_animation_element.h 27 class COMPOSITOR_EXPORT LayerAnimationElement {
58 LayerAnimationElement(const AnimatableProperties& properties,
60 virtual ~LayerAnimationElement();
64 static LayerAnimationElement* CreateTransformElement(
75 static LayerAnimationElement* CreateInterpolatedTransformElement(
81 static LayerAnimationElement* CreateBoundsElement(
87 static LayerAnimationElement* CreateOpacityElement(
93 static LayerAnimationElement* CreateVisibilityElement(
99 static LayerAnimationElement* CreateBrightnessElement(
105 static LayerAnimationElement* CreateGrayscaleElement
    [all...]
layer_animation_element_unittest.cc 33 scoped_ptr<LayerAnimationElement> element(
34 LayerAnimationElement::CreateTransformElement(target_transform, delta));
63 LayerAnimationElement::TargetValue target_value(&delegate);
79 scoped_ptr<LayerAnimationElement> element(
80 LayerAnimationElement::CreateBoundsElement(target, delta));
100 LayerAnimationElement::TargetValue target_value(&delegate);
115 scoped_ptr<LayerAnimationElement> element(
116 LayerAnimationElement::CreateOpacityElement(target, delta));
142 LayerAnimationElement::TargetValue target_value(&delegate);
155 scoped_ptr<LayerAnimationElement> 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 40 LayerAnimationElement* first,
41 LayerAnimationElement* second) {
66 LayerAnimationElement::AnimatableProperty property) const {
71 LayerAnimationElement::AnimatableProperty property) const {
141 TestLayerAnimationSequence(LayerAnimationElement* element,
200 animator->StopAnimatingProperty(LayerAnimationElement::OPACITY);
203 animator->StopAnimatingProperty(LayerAnimationElement::BOUNDS);
269 LayerAnimationElement::CreateBrightnessElement(target_brightness,
307 LayerAnimationElement::CreateOpacityElement(target_opacity, delta)));
318 test_controller.GetRunningSequence(LayerAnimationElement::OPACITY)-
    [all...]
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 25 LayerAnimationSequence::LayerAnimationSequence(LayerAnimationElement* element)
153 LayerAnimationElement::TargetValue* target) const {
172 void LayerAnimationSequence::AddElement(LayerAnimationElement* element) {
179 const LayerAnimationElement::AnimatableProperties& other) const {
180 LayerAnimationElement::AnimatableProperties intersection;
181 std::insert_iterator<LayerAnimationElement::AnimatableProperties> ii(
214 const LayerAnimationElement::AnimatableProperties& element_properties =
216 LayerAnimationElement::AnimatableProperty event_property =
217 LayerAnimationElement::ToAnimatableProperty(event.target_property);
260 LayerAnimationElement* LayerAnimationSequence::CurrentElement()
    [all...]
layer_animator.h 136 LayerAnimationElement::AnimatableProperty property,
147 LayerAnimationElement::AnimatableProperty property) const;
153 LayerAnimationElement::AnimatableProperty property);
253 LayerAnimationElement::AnimatableProperty property);
290 void GetTargetValue(LayerAnimationElement::TargetValue* target) const;
layer_animator.cc 94 StopAnimatingProperty(LayerAnimationElement::property); \
98 scoped_ptr<LayerAnimationElement> element( \
99 LayerAnimationElement::Create##name##Element(value, duration)); \
105 LayerAnimationElement::TargetValue target(delegate()); \
184 LayerAnimationElement::AnimatableProperties animated_properties;
196 LayerAnimationElement::CreatePauseElement(animated_properties,
223 LayerAnimationElement::AnimatableProperties animated_properties;
234 LayerAnimationElement::CreatePauseElement(animated_properties,
256 LayerAnimationElement::AnimatableProperty property,
258 ui::LayerAnimationElement::AnimatableProperties properties_to_pause
    [all...]
layer.cc 203 LayerAnimationElement::TRANSFORM)) {
215 LayerAnimationElement::BOUNDS)) {
260 LayerAnimationElement::BRIGHTNESS)) {
272 LayerAnimationElement::GRAYSCALE)) {
352 LayerAnimationElement::OPACITY))
363 LayerAnimationElement::VISIBILITY))
434 animator_->StopAnimatingProperty(LayerAnimationElement::TRANSFORM);
435 animator_->StopAnimatingProperty(LayerAnimationElement::OPACITY);
614 animator_->StopAnimatingProperty(LayerAnimationElement::TRANSFORM);
  /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 20 LayerAnimationElement::AnimatableProperty property) {
35 LayerAnimationElement::AnimatableProperty animatable_property =
36 LayerAnimationElement::ToAnimatableProperty(threaded_properties[i]);
41 LayerAnimationElement* element = sequence->CurrentElement();
layer_animator_test_controller.h 23 LayerAnimationElement::AnimatableProperty property);
  /external/chromium_org/ash/wm/
workspace_controller.cc 115 ui::LayerAnimationElement::TRANSFORM,
116 ui::LayerAnimationElement::OPACITY,
117 ui::LayerAnimationElement::BRIGHTNESS,
118 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 114 scoped_ptr<ui::LayerAnimationElement> transition(
115 ui::LayerAnimationElement::CreateInterpolatedTransformElement(
128 (duration * 3) / 4, ui::LayerAnimationElement::OPACITY, -1);
135 ui::LayerAnimationElement::CreateOpacityElement(
482 scoped_ptr<ui::LayerAnimationElement> brightness_element(
483 ui::LayerAnimationElement::CreateBrightnessElement(
488 scoped_ptr<ui::LayerAnimationElement> grayscale_element(
489 ui::LayerAnimationElement::CreateGrayscaleElement(
frame_painter.cc 427 ui::LayerAnimationElement::OPACITY) ||
429 ui::LayerAnimationElement::VISIBILITY));
    [all...]
  /external/chromium_org/ash/launcher/
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/ui/views/corewm/
window_animations.cc 320 ui::LayerAnimationElement* CreateGrowShrinkElement(
333 scoped_ptr<ui::LayerAnimationElement> transition(
334 ui::LayerAnimationElement::CreateInterpolatedTransformElement(
352 ui::LayerAnimationElement::AnimatableProperties paused_properties;
353 paused_properties.insert(ui::LayerAnimationElement::BOUNDS);
354 sequence->AddElement(ui::LayerAnimationElement::CreatePauseElement(
376 ui::LayerAnimationElement::OPACITY,
379 scoped_ptr<ui::LayerAnimationElement> opacity(
380 ui::LayerAnimationElement::CreateOpacityElement(
416 scoped_ptr<ui::LayerAnimationElement> transition
    [all...]
visibility_controller.cc 54 IsAnimatingProperty(ui::LayerAnimationElement::OPACITY) &&
  /external/chromium_org/ash/wm/panels/
panel_layout_manager.cc 847 ui::LayerAnimationElement::OPACITY);

Completed in 642 milliseconds

1 2