Searched refs:newSource (Results 1 – 5 of 5) sorted by relevance
401 public void updateSource(InsetsSource newSource, @AnimationType int animationType) { in updateSource() argument404 || 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 …]
12112 View newSource = getCommonPredecessor(mSource, source); in runOrPost() local12113 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()
99 InsetsSource newSource = insetsState.peekSource(InsetsSource.ID_IME);100 boolean isVisible = (newSource != null && newSource.isVisible());101 Rect newFrame = isVisible ? newSource.getFrame() : null;
257 final InsetsSource newSource = insetsState.peekSource(InsetsSource.ID_IME); in insetsChanged() local258 final Rect newFrame = newSource != null ? newSource.getFrame() : null; in insetsChanged()259 final boolean newSourceVisible = newSource != null && newSource.isVisible(); in insetsChanged()
143 void noteGpsChanged(in WorkSource oldSource, in WorkSource newSource); in noteGpsChanged() argument