Searched defs:allDrawn (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowAnimator.java71 // Propagated from AppWindowToken.allDrawn, to determine when
73 boolean allDrawn; field in class:AppWindowAnimator
366 if ((mAppToken.allDrawn || animating || mAppToken.startingDisplayed)
373 + " allDrawn=" + mAppToken.allDrawn + " animating=" + animating);
450 pw.print(" allDrawn="); pw.print(allDrawn);
H A DAppWindowToken.java88 boolean allDrawn; field in class:AppWindowToken
90 // case do not clear allDrawn until the animation completes.
401 // We want to save surface if the app's windows are "allDrawn".
402 // (If we started entering animation early with saved surfaces, allDrawn
405 return allDrawn;
473 // Check if we have enough drawn windows to mark allDrawn= true.
490 if (!allDrawn) {
491 allDrawn = (numInteresting > 0) && (numInteresting == numDrawn);
492 if (allDrawn) {
499 "restoreSavedSurfaces: " + appWindowToken + " allDrawn
[all...]

Completed in 145 milliseconds