Lines Matching refs:viewAncestor

4096         public InputMethodCallback(ViewRootImpl viewAncestor) {
4097 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
4101 final ViewRootImpl viewAncestor = mViewAncestor.get();
4102 if (viewAncestor != null) {
4103 viewAncestor.dispatchFinishedEvent(seq, handled);
4115 W(ViewRootImpl viewAncestor) {
4116 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
4121 final ViewRootImpl viewAncestor = mViewAncestor.get();
4122 if (viewAncestor != null) {
4123 viewAncestor.dispatchResized(w, h, coveredInsets, visibleInsets, reportDraw,
4129 final ViewRootImpl viewAncestor = mViewAncestor.get();
4130 if (viewAncestor != null) {
4131 viewAncestor.dispatchAppVisibility(visible);
4136 final ViewRootImpl viewAncestor = mViewAncestor.get();
4137 if (viewAncestor != null) {
4138 viewAncestor.dispatchGetNewSurface();
4143 final ViewRootImpl viewAncestor = mViewAncestor.get();
4144 if (viewAncestor != null) {
4145 viewAncestor.windowFocusChanged(hasFocus, inTouchMode);
4159 final ViewRootImpl viewAncestor = mViewAncestor.get();
4160 if (viewAncestor != null) {
4161 final View view = viewAncestor.mView;
4190 final ViewRootImpl viewAncestor = mViewAncestor.get();
4191 if (viewAncestor != null) {
4192 viewAncestor.dispatchCloseSystemDialogs(reason);
4218 final ViewRootImpl viewAncestor = mViewAncestor.get();
4219 if (viewAncestor != null) {
4220 viewAncestor.dispatchDragEvent(event);
4226 final ViewRootImpl viewAncestor = mViewAncestor.get();
4227 if (viewAncestor != null) {
4228 viewAncestor.dispatchSystemUiVisibilityChanged(seq, globalVisibility,
4580 AccessibilityInteractionConnection(ViewRootImpl viewAncestor) {
4581 mRootImpl = new WeakReference<ViewRootImpl>(viewAncestor);