HomeSort by relevance Sort by last modified time
    Searched defs:mHostView (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/view/
ViewOverlay.java 128 final View mHostView;
137 mHostView = hostView;
138 mAttachInfo = mHostView.mAttachInfo;
184 if (parent != mHostView && parent.getParent() != null &&
191 mHostView.getLocationOnScreen(hostViewLocation);
277 if (mHostView != null) {
278 mHostView.invalidate(dirty);
285 if (mHostView != null) {
286 mHostView.invalidate(l, t, r, b);
293 if (mHostView != null)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
MessagingMessageState.java 28 private final View mHostView;
35 mHostView = hostView;
59 ViewParent parent = mHostView.getParent();
61 mHostView.invalidate();
72 return mHostView;
76 mHostView.setAlpha(1.0f);
77 mHostView.setTranslationY(0);
78 MessagingPropertyAnimator.recycle(mHostView);
  /frameworks/base/core/tests/coretests/src/android/widget/
AppWidgetHostViewTest.java 58 private AppWidgetHostView mHostView;
67 mHostView = new AppWidgetHostView(mContext);
68 mHostView.setAppWidget(0, AppWidgetManager.getInstance(
72 mHostView.setOnHierarchyChangeListener(mViewAddListener);
79 mHostView.updateAppWidget(mViews);
80 assertNotNull(mHostView.findViewById(R.id.image));
86 mHostView.setExecutor(executor);
88 mHostView.updateAppWidget(mViews);
89 assertNull(mHostView.findViewById(R.id.image));
97 assertNotNull(mHostView.findViewById(R.id.image))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 38 private final ViewGroup mHostView;
42 mHostView = hostView;
47 return mHostView;
51 int numChildren = mHostView.getChildCount();
53 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
99 * Apply the properties saved in {@link #mStateMap} to the children of the {@link #mHostView}.
103 int numChildren = mHostView.getChildCount();
105 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
AppCompatViewInflater.java 367 private final View mHostView;
374 mHostView = hostView;
381 resolveMethod(mHostView.getContext(), mMethodName);
419 final int id = mHostView.getId();
421 + mHostView.getContext().getResources().getResourceEntryName(id) + "'";
424 + "attribute defined on view " + mHostView.getClass() + idText);
  /frameworks/support/transition/src/main/java/androidx/transition/
ViewOverlayApi14.java 145 ViewGroup mHostView;
159 mHostView = hostView;
202 if (parent != mHostView && parent.getParent() != null
209 mHostView.getLocationOnScreen(hostViewLocation);
229 mHostView.removeView(this);
254 mHostView.getLocationOnScreen(contentViewLocation);
284 mHostView.getLocationOnScreen(contentViewLocation);
291 if (mHostView != null) {
304 mHostView.invalidate(dirty);
313 if (mHostView instanceof ViewGroup && sInvalidateChildInParentFastMethod != null)
    [all...]

Completed in 276 milliseconds