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

1 2

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
AnimatedImageView.java 90 public void setAnimating(boolean animating) {
91 mAnimating = animating;
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowAnimator.java 52 boolean animating; field in class:AppWindowAnimator
124 animating = false;
183 animating = true;
215 toAppAnimator.animating = animating;
360 // it as not animating for purposes of scheduling transactions;
366 if ((mAppToken.allDrawn || animating || mAppToken.startingDisplayed)
368 if (!animating) {
373 + " allDrawn=" + mAppToken.allDrawn + " animating=" + animating);
    [all...]
DimLayer.java 285 final boolean animating = isAnimating();
286 if ((animating && (mTargetAlpha != alpha || durationEndsEarlier(duration)))
287 || (!animating && mAlpha != alpha)) {
WindowAnimator.java 69 /** How long to give statusbar to clear the private keyguard flag when animating out */
77 /** Is any window animating? */
80 /** Is any app window animating? */
175 appAnimator.wasAnimating = appAnimator.animating;
177 appAnimator.animating = true;
181 // stopped animating, do one more pass through the layout
186 "updateWindowsApps...: done animating " + appAnimator.mAppToken);
195 appAnimator.wasAnimating = appAnimator.animating;
200 // stopped animating, do one more pass through the layout
205 "updateWindowsApps...: done animating exiting
    [all...]
DisplayContent.java 495 boolean animating = false;
499 animating = true;
517 if (!animating && mDeferredRemoval) {
WindowState.java     [all...]
WindowStateAnimator.java 120 boolean mWasAnimating; // Were we animating going into the most recent animation step?
306 * Is the window or its container currently set to animate or currently animating?
322 /** Is the window animating the DummyAnimation? */
329 * Is this window currently set to animate or currently animating?
374 // we just started or just stopped animating by comparing mWasAnimating with isAnimationSet().
421 // When our app token is animating, we kind-of pretend like
425 // locally animating itself. The idea being that one that
449 // Done animating, clean up.
480 + mWin.mToken + ": first real window done animating");
696 // Currently animating, persist current state of allDrawn until animatio
    [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/webrtc/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) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 90 boolean animating; field in class:PinnedHeaderListView.PinnedHeader
267 header.animating = false;
281 if (header.animating) {
292 header.animating = true;
318 header.animating = false;
341 if (header.visible && (animate || header.animating) && header.state == BOTTOM) {
343 if (!header.animating) {
347 header.animating = true;
478 if (mHeaders[i].animating) {
551 if (header.animating) {
    [all...]
  /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) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogMotion.java 96 final boolean animating = mShowing || mDismissing;
97 if (animating == mAnimating) return;
98 mAnimating = animating;
305 void onAnimatingChanged(boolean animating);
VolumeDialog.java 225 public void onAnimatingChanged(boolean animating) {
226 if (animating) return;
644 final boolean animating = mMotion.isAnimating();
645 if (D.BUG) Log.d(TAG, "onStateChangedH animating=" + animating);
647 if (animating) {
    [all...]
  /hardware/qcom/display/msm8996/sdm/include/core/
layer_stack.h 190 uint32_t animating : 1; //!< This flag shall be set by client to indicate that the member in struct:sdm::LayerStackFlags::__anon32773::__anon32774
191 //!< current frame is animating.i
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_display.h 116 bool animating; member in struct:sdm::HWCDisplay::LayerStackCache
119 LayerStackCache() : layer_count(0), animating(false), in_use(false) { }
hwc_display.cpp 576 layer_stack_.flags.animating = true;
763 if (layer.composition == kCompositionGPUTarget && layer_stack_cache_.animating) {
776 layer_stack_cache_.animating = layer_stack_.flags.animating;
801 if (layer_stack_cache_.animating) {
802 if (!layer_stack_.flags.animating) {
868 if (layer_count > kMaxLayerCount || layer_stack_.flags.animating) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListSwipeHelper.java 41 private static final boolean ANIMATING = true;
262 setHardwareAnimatingLayerType(itemView, ANIMATING);
299 setHardwareAnimatingLayerType(itemView, ANIMATING);
309 setHardwareAnimatingLayerType(itemView, !ANIMATING);
448 final boolean animating) {
449 if (animating) {
ConversationListItemView.java 562 * The animating counter is used to reset the swipe controller when the counter becomes 0. A
565 public final void setAnimating(final boolean animating) {
567 if (animating) {
  /frameworks/base/graphics/java/android/graphics/drawable/
DrawableContainer.java 554 boolean animating = false;
564 animating = true;
581 animating = true;
588 if (schedule && animating) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableView.java 439 public void setActualHeightAnimating(boolean animating) {}
NotificationContentView.java     [all...]
ExpandableNotificationRow.java 205 public void setActualHeightAnimating(boolean animating) {
207 mPrivateLayout.setContentHeightAnimating(animating);
    [all...]
  /external/skia/resources/
slides.lua 136 -- The animation.proc returns itself or another animation (which means keep animating)
  /external/v8/benchmarks/spinning-balls/
v.js 31 * http://paulirish.com/2011/requestanimationframe-for-smart-animating/
  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]

Completed in 1046 milliseconds

1 2