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

  /frameworks/base/core/java/android/view/
ViewOverlay.java 121 View mHostView;
130 mHostView = hostView;
131 mAttachInfo = mHostView.mAttachInfo;
160 if (parent != mHostView && parent.getParent() != null &&
167 mHostView.getLocationOnScreen(hostViewLocation);
226 if (mHostView != null) {
227 mHostView.invalidate(dirty);
234 if (mHostView != null) {
235 mHostView.invalidate(l, t, r, b);
242 if (mHostView != null)
    [all...]
  /frameworks/base/core/java/android/webkit/
OverScrollGlow.java 32 private WebViewClassic mHostView;
43 mHostView = host;
64 if (oldX == mHostView.getScrollX() && oldY == mHostView.getScrollY()) {
70 mEdgeGlowLeft.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
75 mEdgeGlowRight.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
83 if (maxY > 0 || mHostView.getWebView().getOverScrollMode() == View.OVER_SCROLL_ALWAYS) {
86 mEdgeGlowTop.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
91 mEdgeGlowBottom.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
123 if (rangeY > 0 || mHostView.getWebView().getOverScrollMode() == View.OVER_SCROLL_ALWAYS)
    [all...]

Completed in 219 milliseconds