OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LinearAnimation
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/gfx/animation/
linear_animation.h
17
class GFX_EXPORT
LinearAnimation
: public Animation {
25
LinearAnimation
(int frame_rate, AnimationDelegate* delegate);
28
LinearAnimation
(int duration, int frame_rate, AnimationDelegate* delegate);
74
DISALLOW_COPY_AND_ASSIGN(
LinearAnimation
);
linear_animation.cc
24
LinearAnimation
::
LinearAnimation
(int frame_rate,
32
LinearAnimation
::
LinearAnimation
(int duration,
43
double
LinearAnimation
::GetCurrentValue() const {
48
void
LinearAnimation
::SetCurrentValue(double new_value) {
56
void
LinearAnimation
::End() {
66
void
LinearAnimation
::SetDuration(int duration) {
74
void
LinearAnimation
::Step(base::TimeTicks time_now) {
90
void
LinearAnimation
::AnimationStarted()
[
all
...]
/packages/apps/Camera/src/com/android/camera/ui/
PieRenderer.java
118
private
LinearAnimation
mXFade;
119
private
LinearAnimation
mFadeIn;
252
mFadeIn = new
LinearAnimation
(0, 1);
530
mXFade = new
LinearAnimation
(1, 0);
803
private class
LinearAnimation
extends Animation {
808
public
LinearAnimation
(float from, float to) {
Completed in 2170 milliseconds