HomeSort by relevance Sort by last modified time
    Searched refs:animating (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/cc/layers/
render_surface.h 70 void SetTargetSurfaceTransformsAreAnimating(bool animating) {
71 target_surface_transforms_are_animating_ = animating;
76 void SetScreenSpaceTransformsAreAnimating(bool animating) {
77 screen_space_transforms_are_animating_ = animating;
render_surface_impl.h 88 void SetTargetSurfaceTransformsAreAnimating(bool animating) {
89 target_surface_transforms_are_animating_ = animating;
94 void SetScreenSpaceTransformsAreAnimating(bool animating) {
95 screen_space_transforms_are_animating_ = animating;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderProgress.cpp 89 bool animating = style()->hasAppearance() && m_animationDuration > 0; local
90 if (animating == m_animating)
93 m_animating = animating;
  /external/chromium_org/ash/system/chromeos/network/
tray_vpn.cc 55 bool animating = false; local
56 GetNetworkStateHandlerImageAndLabel(&image, &label, &animating);
57 if (animating)
74 bool* animating) {
86 *animating = false;
89 *animating = vpn->IsConnectingState();
network_icon.h 61 // Gets the correct icon and label for |icon_type|. Also sets |animating|
62 // based on whether or not the icon is animating (i.e. connecting).
66 bool* animating);
tray_network.cc 126 bool animating = false; local
128 network_icon::ICON_TYPE_TRAY, &image, &name, &animating);
131 if (animating)
200 bool animating = false; local
202 network_icon::ICON_TYPE_DEFAULT_VIEW, &image, &label, &animating);
203 if (animating)
network_icon.cc 765 bool* animating) {
797 *animating = false;
817 *animating = true;
825 *animating = false;
829 *animating = network->IsConnectingState();
network_state_list_detailed_view.cc 497 bool animating = false; local
511 if (!animating && network->IsConnectingState())
512 animating = true;
526 if (animating)
  /frameworks/base/services/java/com/android/server/wm/
AppWindowAnimator.java 24 boolean animating; field in class:AppWindowAnimator
71 animating = false;
107 animating = true;
205 // it as not animating for purposes of scheduling transactions;
211 if ((mAppToken.allDrawn || animating || mAppToken.startingDisplayed)
213 if (!animating) {
217 + " allDrawn=" + mAppToken.allDrawn + " animating=" + animating);
219 animating = true;
237 animating = true
    [all...]
DimLayer.java 199 final boolean animating = isAnimating();
200 if ((animating && (mTargetAlpha != alpha || durationEndsEarlier(duration)))
201 || (!animating && mAlpha != alpha)) {
  /packages/apps/Settings/src/com/android/settings/widget/
AnimatedImageView.java 90 public void setAnimating(boolean animating) {
91 mAnimating = animating;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 89 boolean animating; field in class:PinnedHeaderListView.PinnedHeader
272 header.animating = false;
286 if (header.animating) {
297 header.animating = true;
323 header.animating = false;
346 if (header.visible && (animate || header.animating) && header.state == BOTTOM) {
348 if (!header.animating) {
352 header.animating = true;
471 if (mHeaders[i].animating) {
532 if (header.animating) {
    [all...]
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 51 int animating; member in struct:engine
159 engine->animating = 0;
171 engine->animating = 1;
219 // Also stop animating.
220 engine->animating = 0;
263 // If not animating, we will block forever waiting for events.
264 // If animating, we loop until all events are read, then continue
266 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
294 if (engine.animating) {
  /external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
main.c 51 int animating; member in struct:engine
159 engine->animating = 0;
171 engine->animating = 1;
219 // Also stop animating.
220 engine->animating = 0;
263 // If not animating, we will block forever waiting for events.
264 // If animating, we loop until all events are read, then continue
266 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
294 if (engine.animating) {
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 117 .animating-tile-page .tile,
126 .animating-tile-page .top-margin {
130 .animating-tile-page #notification-container {
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 379 int animating; member in struct:engine
410 engine->animating = 0;
416 engine->animating = 1;
440 engine->animating = 0;
475 // If not animating, we will block forever waiting for events.
476 // If animating, we loop until all events are read, then continue
478 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
494 if (engine.animating) {
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_dropdown.cc 185 bool animating = false; local
187 ash::network_icon::ICON_TYPE_LIST, &icon_image, &text, &animating);
188 if (animating) {
  /external/chromium/chrome/browser/ui/gtk/
browser_actions_toolbar_gtk.h 68 bool animating() { function in class:BrowserActionsToolbarGtk
209 // This is the final width we are animating towards.
211 // This is the width we were at when we started animating.
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview_animations.js 23 * Generates css code for fading in an element by animating the height.
155 * for animating the height of table cells.
  /external/chromium_org/chrome/browser/ui/gtk/
browser_actions_toolbar_gtk.h 73 bool animating() { function in class:BrowserActionsToolbarGtk
218 // This is the final width we are animating towards.
220 // This is the width we were at when we started animating.
  /external/chromium_org/chrome/browser/ui/views/
browser_actions_container.h 96 // Animating the BrowserActionsContainer:
133 bool animating() const { return animation_target_size_ > 0; } function in class:BrowserActionsContainer
355 // Don't show the chevron while animating.
364 // are done animating.
  /frameworks/base/graphics/java/android/graphics/drawable/
DrawableContainer.java 399 boolean animating = false;
410 animating = true;
427 animating = true;
434 if (schedule && animating) {
  /external/chromium_org/ui/views/controls/button/
text_button.cc 121 bool animating = button->GetAnimation()->is_animating(); local
125 // STATE_NORMAL and |animating| so that we show throb animations started from
131 ((state == TextButton::STATE_NORMAL) && animating))) {
136 if (animating) {
  /external/chromium/chrome/browser/ui/views/
browser_actions_container.h 244 // Animating the BrowserActionsContainer:
283 bool animating() const { return animation_target_size_ > 0; } function in class:BrowserActionsContainer
502 // Don't show the chevron while animating.
511 // are done animating.
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs 605 return stillAnimating; // still animating;
717 * Returns true if we're still animating any property of the cards (e.g. fades).
828 * Returns true if we're still animating any property of the cards (e.g. fades).
    [all...]

Completed in 1088 milliseconds

1 2