Searched refs:target_value (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/cc/animation/
H A Dscroll_offset_animation_curve.h20 const gfx::Vector2dF& target_value,
27 gfx::Vector2dF target_value() const { return target_value_; } function in class:cc::ScrollOffsetAnimationCurve
36 ScrollOffsetAnimationCurve(const gfx::Vector2dF& target_value,
H A Dscroll_offset_animation_curve_unittest.cc15 gfx::Vector2dF target_value(100.f, 200.f);
18 target_value,
21 curve->SetInitialValue(target_value);
59 gfx::Vector2dF target_value(10.f, 20.f);
62 target_value,
76 EXPECT_VECTOR2DF_EQ(target_value, curve->GetValue(duration));
77 EXPECT_VECTOR2DF_EQ(target_value, curve->GetValue(duration+1.0));
88 gfx::Vector2dF target_value(10.f, 20.f);
91 target_value,
109 target_value,
[all...]
H A Dscroll_offset_animation_curve.cc48 const gfx::Vector2dF& target_value,
51 new ScrollOffsetAnimationCurve(target_value, timing_function.Pass()));
55 const gfx::Vector2dF& target_value,
57 : target_value_(target_value), timing_function_(timing_function.Pass()) {
47 Create( const gfx::Vector2dF& target_value, scoped_ptr<TimingFunction> timing_function) argument
54 ScrollOffsetAnimationCurve( const gfx::Vector2dF& target_value, scoped_ptr<TimingFunction> timing_function) argument
H A Dlayer_animation_controller_unittest.cc667 gfx::Vector2dF target_value(300.f, 200.f);
670 target_value,
720 EXPECT_VECTOR2DF_EQ(target_value, dummy_impl.scroll_offset());
727 EXPECT_VECTOR2DF_EQ(target_value, dummy.scroll_offset());
749 gfx::Vector2dF target_value(300.f, 200.f);
752 target_value,
803 EXPECT_VECTOR2DF_EQ(target_value, dummy_impl.scroll_offset());
810 EXPECT_VECTOR2DF_EQ(target_value, dummy.scroll_offset());
823 gfx::Vector2dF target_value(300.f, 200.f);
826 target_value,
[all...]
/external/chromium_org/cc/blink/
H A Dweb_scroll_offset_animation_curve_impl.cc16 WebFloatPoint target_value,
19 gfx::Vector2dF(target_value.x, target_value.y),
15 WebScrollOffsetAnimationCurveImpl( WebFloatPoint target_value, TimingFunctionType timing_function) argument
H A Dweb_scroll_offset_animation_curve_impl.h23 blink::WebFloatPoint target_value,
H A Dweb_compositor_support_impl.cc112 blink::WebFloatPoint target_value,
114 return new WebScrollOffsetAnimationCurveImpl(target_value, timing_function);
111 createScrollOffsetAnimationCurve( blink::WebFloatPoint target_value, blink::WebCompositorAnimationCurve::TimingFunctionType timing_function) argument
H A Dweb_compositor_support_impl.h52 blink::WebFloatPoint target_value,
/external/chromium_org/ui/compositor/
H A Dfloat_animation_curve_adapter.cc12 float target_value,
16 target_value_(target_value),
9 FloatAnimationCurveAdapter( gfx::Tween::Type tween_type, float initial_value, float target_value, base::TimeDelta duration) argument
H A Dfloat_animation_curve_adapter.h18 float target_value,
H A Dlayer_animation_element_unittest.cc64 LayerAnimationElement::TargetValue target_value(&delegate);
65 element->GetTargetValue(&target_value);
66 CheckApproximatelyEqual(target_transform, target_value.transform);
163 LayerAnimationElement::TargetValue target_value(&delegate);
164 element->GetTargetValue(&target_value);
165 CheckApproximatelyEqual(target, target_value.bounds);
205 LayerAnimationElement::TargetValue target_value(&delegate);
206 element->GetTargetValue(&target_value);
207 EXPECT_FLOAT_EQ(target, target_value.opacity);
239 LayerAnimationElement::TargetValue target_value(
[all...]
H A Dlayer_animation_sequence_unittest.cc250 LayerAnimationElement::TargetValue target_value(&delegate);
251 target_value.opacity = start_opacity;
252 sequence.GetTargetValue(&target_value);
253 EXPECT_FLOAT_EQ(target_opacity, target_value.opacity);
256 target_value.opacity = start_opacity;
257 sequence.GetTargetValue(&target_value);
258 EXPECT_FLOAT_EQ(start_opacity, target_value.opacity);
H A Dtransform_animation_curve_adapter.cc12 gfx::Transform target_value,
16 target_value_(target_value),
9 TransformAnimationCurveAdapter( gfx::Tween::Type tween_type, gfx::Transform initial_value, gfx::Transform target_value, base::TimeDelta duration) argument
H A Dtransform_animation_curve_adapter.h22 gfx::Transform target_value,
/external/chromium_org/ash/wm/
H A Dwindow_animations.h61 // brightness and grayscale to |target_value|. Caller takes ownership of
64 CreateBrightnessGrayscaleAnimationSequence(float target_value,
H A Dwindow_animations.cc413 CreateBrightnessGrayscaleAnimationSequence(float target_value, argument
423 target_value, duration));
429 target_value, duration));
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Dfile_before_streaming_test.cc60 void VerifyOutput(int16_t target_value) { argument
71 EXPECT_EQ(output_value, target_value);
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dvalidation_test_input_parser.cc99 TargetType target_value = static_cast<TargetType>(value); local
101 memcpy(&(*data_)[pos], &target_value, sizeof(TargetType));
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DOptimize.py328 target_value = ExprNodes.PythonCapiCallNode(
336 if target_value.type != node.target.type:
337 target_value = target_value.coerce_to(node.target.type,
342 rhs = target_value)
483 target_value = ExprNodes.CastNode(
491 target_value = ExprNodes.SliceIndexNode(
504 target_value = counter_temp
507 target_value = ExprNodes.IndexNode(
516 if target_value
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_impl.cc2354 gfx::Vector2dF new_target = curve->target_value() + scroll_delta;

Completed in 5141 milliseconds