Home | History | Annotate | Download | only in view

Lines Matching refs:viewAncestor

1251                 Debug.startMethodTracing("ViewAncestor");
6898 // ViewAncestor never intercepts touch event, so this can be a no-op
7030 W(ViewRootImpl viewAncestor) {
7031 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
7032 mWindowSession = viewAncestor.mWindowSession;
7040 final ViewRootImpl viewAncestor = mViewAncestor.get();
7041 if (viewAncestor != null) {
7042 viewAncestor.dispatchResized(frame, overscanInsets, contentInsets,
7050 final ViewRootImpl viewAncestor = mViewAncestor.get();
7051 if (viewAncestor != null) {
7052 viewAncestor.dispatchMoved(newX, newY);
7058 final ViewRootImpl viewAncestor = mViewAncestor.get();
7059 if (viewAncestor != null) {
7060 viewAncestor.dispatchAppVisibility(visible);
7066 final ViewRootImpl viewAncestor = mViewAncestor.get();
7067 if (viewAncestor != null) {
7068 viewAncestor.dispatchGetNewSurface();
7074 final ViewRootImpl viewAncestor = mViewAncestor.get();
7075 if (viewAncestor != null) {
7076 viewAncestor.windowFocusChanged(hasFocus, inTouchMode);
7091 final ViewRootImpl viewAncestor = mViewAncestor.get();
7092 if (viewAncestor != null) {
7093 final View view = viewAncestor.mView;
7123 final ViewRootImpl viewAncestor = mViewAncestor.get();
7124 if (viewAncestor != null) {
7125 viewAncestor.dispatchCloseSystemDialogs(reason);
7154 final ViewRootImpl viewAncestor = mViewAncestor.get();
7155 if (viewAncestor != null) {
7156 viewAncestor.dispatchDragEvent(event);
7162 final ViewRootImpl viewAncestor = mViewAncestor.get();
7163 if (viewAncestor != null) {
7164 viewAncestor.updatePointerIcon(x, y);
7171 final ViewRootImpl viewAncestor = mViewAncestor.get();
7172 if (viewAncestor != null) {
7173 viewAncestor.dispatchSystemUiVisibilityChanged(seq, globalVisibility,
7180 final ViewRootImpl viewAncestor = mViewAncestor.get();
7181 if (viewAncestor != null) {
7182 viewAncestor.dispatchWindowShown();
7188 ViewRootImpl viewAncestor = mViewAncestor.get();
7189 if (viewAncestor != null) {
7190 viewAncestor.dispatchRequestKeyboardShortcuts(receiver, deviceId);
7328 * This class is an interface this ViewAncestor provides to the
7330 * the view hierarchy in this ViewAncestor.