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

  /frameworks/base/core/java/android/view/
ViewOverlay.java 122 View mHostView;
131 mHostView = hostView;
132 mAttachInfo = mHostView.mAttachInfo;
166 if (parent != mHostView && parent.getParent() != null &&
173 mHostView.getLocationOnScreen(hostViewLocation);
240 if (mHostView != null) {
241 mHostView.invalidate(dirty);
248 if (mHostView != null) {
249 mHostView.invalidate(l, t, r, b);
256 if (mHostView != null)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
OverScrollGlow.java 16 private View mHostView;
29 mHostView = host;
54 if (oldX == mHostView.getScrollX() && oldY == mHostView.getScrollY()) {
60 mEdgeGlowLeft.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
65 mEdgeGlowRight.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
73 if (maxY > 0 || mHostView.getOverScrollMode() == View.OVER_SCROLL_ALWAYS) {
76 mEdgeGlowTop.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
81 mEdgeGlowBottom.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
104 if (rangeY > 0 || mHostView.getOverScrollMode() == View.OVER_SCROLL_ALWAYS)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 41 private final ViewGroup mHostView;
47 mHostView = hostView;
54 return mHostView;
58 int numChildren = mHostView.getChildCount();
60 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
83 * Apply the properties saved in {@link #mStateMap} to the children of the {@link #mHostView}.
87 int numChildren = mHostView.getChildCount();
89 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
218 int childCount = mHostView.getChildCount();
220 View child = mHostView.getChildAt(i)
    [all...]

Completed in 118 milliseconds