OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:animation_step_
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/speech/
speech_input_bubble.cc
145
animation_step_
= 0;
151
SetImage(g_images.Get().warm_up()[
animation_step_
]);
156
animation_step_
== 0 ? kWarmingUpAnimationStartMs
158
if (++
animation_step_
>= static_cast<int>(g_images.Get().warm_up().size()))
159
animation_step_
= 1; // Frame 0 is skipped during the animation.
171
animation_step_
= 0;
177
SetImage(g_images.Get().spinner()[
animation_step_
]);
178
if (++
animation_step_
>= static_cast<int>(g_images.Get().spinner().size()))
179
animation_step_
= 0;
speech_input_bubble.h
171
int
animation_step_
; // Current index/step of the animation.
member in class:SpeechInputBubbleBase
/external/chromium_org/chrome/browser/speech/
speech_recognition_bubble.cc
145
animation_step_
(0),
179
animation_step_
= 0;
185
SetImage(g_images.Get().warm_up()[
animation_step_
]);
191
animation_step_
== 0 ? kWarmingUpAnimationStartMs
193
if (++
animation_step_
>= static_cast<int>(g_images.Get().warm_up().size()))
194
animation_step_
= 1; // Frame 0 is skipped during the animation.
206
animation_step_
= 0;
212
SetImage(g_images.Get().spinner()[
animation_step_
]);
213
if (++
animation_step_
>= static_cast<int>(g_images.Get().spinner().size()))
214
animation_step_
= 0
[
all
...]
speech_recognition_bubble.h
177
int
animation_step_
; // Current index/step of the animation.
member in class:SpeechRecognitionBubbleBase
Completed in 71 milliseconds