/external/chromium_org/cc/animation/ |
scroll_offset_animation_curve.h | 20 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,
|
scroll_offset_animation_curve_unittest.cc | 15 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...] |
scroll_offset_animation_curve.cc | 48 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()) {
|
layer_animation_controller_unittest.cc | 667 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, [all...] |
/external/chromium_org/cc/blink/ |
web_scroll_offset_animation_curve_impl.cc | 16 WebFloatPoint target_value, 19 gfx::Vector2dF(target_value.x, target_value.y),
|
web_scroll_offset_animation_curve_impl.h | 23 blink::WebFloatPoint target_value,
|
web_compositor_support_impl.cc | 112 blink::WebFloatPoint target_value, 114 return new WebScrollOffsetAnimationCurveImpl(target_value, timing_function);
|
web_compositor_support_impl.h | 52 blink::WebFloatPoint target_value,
|
/external/chromium_org/ui/compositor/ |
float_animation_curve_adapter.cc | 12 float target_value, 16 target_value_(target_value),
|
float_animation_curve_adapter.h | 18 float target_value,
|
layer_animation_element_unittest.cc | 64 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(&delegate) [all...] |
layer_animation_sequence_unittest.cc | 250 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);
|
transform_animation_curve_adapter.cc | 12 gfx::Transform target_value, 16 target_value_(target_value),
|
transform_animation_curve_adapter.h | 22 gfx::Transform target_value,
|
/external/chromium_org/ash/wm/ |
window_animations.h | 61 // brightness and grayscale to |target_value|. Caller takes ownership of 64 CreateBrightnessGrayscaleAnimationSequence(float target_value,
|
window_animations.cc | 413 CreateBrightnessGrayscaleAnimationSequence(float target_value, 423 target_value, duration)); 429 target_value, duration));
|
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/ |
file_before_streaming_test.cc | 60 void VerifyOutput(int16_t target_value) { 71 EXPECT_EQ(output_value, target_value);
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
validation_test_input_parser.cc | 99 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/ |
Optimize.py | 328 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.type != node.target.type [all...] |
/external/chromium_org/cc/trees/ |
layer_tree_host_impl.cc | [all...] |