Home | History | Annotate | Download | only in view

Lines Matching refs:viewAncestor

119     private static final String PROPERTY_PROFILE_RENDERING = "viewancestor.profile_rendering";    
995 Debug.startMethodTracing("ViewAncestor");
4615 // ViewAncestor never intercepts touch event, so this can be a no-op
4670 public InputMethodCallback(ViewRootImpl viewAncestor) {
4671 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
4675 final ViewRootImpl viewAncestor = mViewAncestor.get();
4676 if (viewAncestor != null) {
4677 viewAncestor.dispatchImeFinishedEvent(seq, handled);
4689 W(ViewRootImpl viewAncestor) {
4690 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
4695 final ViewRootImpl viewAncestor = mViewAncestor.get();
4696 if (viewAncestor != null) {
4697 viewAncestor.dispatchResized(w, h, contentInsets,
4703 final ViewRootImpl viewAncestor = mViewAncestor.get();
4704 if (viewAncestor != null) {
4705 viewAncestor.dispatchAppVisibility(visible);
4710 final ViewRootImpl viewAncestor = mViewAncestor.get();
4711 if (viewAncestor != null) {
4712 viewAncestor.dispatchScreenStateChange(on);
4717 final ViewRootImpl viewAncestor = mViewAncestor.get();
4718 if (viewAncestor != null) {
4719 viewAncestor.dispatchGetNewSurface();
4724 final ViewRootImpl viewAncestor = mViewAncestor.get();
4725 if (viewAncestor != null) {
4726 viewAncestor.windowFocusChanged(hasFocus, inTouchMode);
4740 final ViewRootImpl viewAncestor = mViewAncestor.get();
4741 if (viewAncestor != null) {
4742 final View view = viewAncestor.mView;
4771 final ViewRootImpl viewAncestor = mViewAncestor.get();
4772 if (viewAncestor != null) {
4773 viewAncestor.dispatchCloseSystemDialogs(reason);
4799 final ViewRootImpl viewAncestor = mViewAncestor.get();
4800 if (viewAncestor != null) {
4801 viewAncestor.dispatchDragEvent(event);
4807 final ViewRootImpl viewAncestor = mViewAncestor.get();
4808 if (viewAncestor != null) {
4809 viewAncestor.dispatchSystemUiVisibilityChanged(seq, globalVisibility,
4815 final ViewRootImpl viewAncestor = mViewAncestor.get();
4816 if (viewAncestor != null) {
4817 viewAncestor.dispatchDoneAnimating();
5175 * This class is an interface this ViewAncestor provides to the
5177 * the view hierarchy in this ViewAncestor.