OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsFinishedAt
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/cc/animation/
animation_unittest.cc
161
EXPECT_FALSE(anim->
IsFinishedAt
(-1.0));
162
EXPECT_TRUE(anim->
IsFinishedAt
(0.0));
163
EXPECT_TRUE(anim->
IsFinishedAt
(1.0));
169
EXPECT_FALSE(anim->
IsFinishedAt
(-1.0));
170
EXPECT_FALSE(anim->
IsFinishedAt
(0.0));
171
EXPECT_TRUE(anim->
IsFinishedAt
(1.0));
172
EXPECT_TRUE(anim->
IsFinishedAt
(2.0));
178
EXPECT_FALSE(anim->
IsFinishedAt
(0.0));
179
EXPECT_FALSE(anim->
IsFinishedAt
(0.5));
180
EXPECT_FALSE(anim->
IsFinishedAt
(1.0))
[
all
...]
animation.h
88
bool
IsFinishedAt
(double monotonic_time) const;
animation.cc
144
bool Animation::
IsFinishedAt
(double monotonic_time) const {
layer_animation_controller.cc
576
if (active_animations_[i]->
IsFinishedAt
(monotonic_time) &&
Completed in 361 milliseconds