Home
last modified time | relevance | path

Searched refs:newSource (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DInsetsSourceConsumer.java401 public void updateSource(InsetsSource newSource, @AnimationType int animationType) { in updateSource() argument
404 || source.getFrame().equals(newSource.getFrame())) { in updateSource()
407 mState.addSource(newSource); in updateSource()
413 newSource = new InsetsSource(newSource); in updateSource()
414 mPendingFrame = new Rect(newSource.getFrame()); in updateSource()
415 mPendingVisibleFrame = newSource.getVisibleFrame() != null in updateSource()
416 ? new Rect(newSource.getVisibleFrame()) in updateSource()
418 newSource.setFrame(source.getFrame()); in updateSource()
419 newSource.setVisibleFrame(source.getVisibleFrame()); in updateSource()
420 mState.addSource(newSource); in updateSource()
[all …]
DViewRootImpl.java12112 View newSource = getCommonPredecessor(mSource, source); in runOrPost() local
12113 if (newSource != null) { in runOrPost()
12114 newSource = newSource.getSelfOrParentImportantForA11y(); in runOrPost()
12116 if (newSource == null) { in runOrPost()
12119 newSource = source; in runOrPost()
12123 if (mSource != newSource) { in runOrPost()
12125 mSource = newSource; in runOrPost()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/sysui/
DShellController.java99 InsetsSource newSource = insetsState.peekSource(InsetsSource.ID_IME);
100 boolean isVisible = (newSource != null && newSource.isVisible());
101 Rect newFrame = isVisible ? newSource.getFrame() : null;
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/
DDisplayImeController.java257 final InsetsSource newSource = insetsState.peekSource(InsetsSource.ID_IME); in insetsChanged() local
258 final Rect newFrame = newSource != null ? newSource.getFrame() : null; in insetsChanged()
259 final boolean newSourceVisible = newSource != null && newSource.isVisible(); in insetsChanged()
/frameworks/base/core/java/com/android/internal/app/
DIBatteryStats.aidl143 void noteGpsChanged(in WorkSource oldSource, in WorkSource newSource); in noteGpsChanged() argument