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 122 View mHostView;
131 mHostView = hostView;
132 mAttachInfo = mHostView.mAttachInfo;
161 if (parent != mHostView && parent.getParent() != null &&
168 mHostView.getLocationOnScreen(hostViewLocation);
235 if (mHostView != null) {
236 mHostView.invalidate(dirty);
243 if (mHostView != null) {
244 mHostView.invalidate(l, t, r, b);
251 if (mHostView != null)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
OverScrollGlow.java 16 private View mHostView;
27 mHostView = host;
48 if (oldX == mHostView.getScrollX() && oldY == mHostView.getScrollY()) {
54 mEdgeGlowLeft.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
59 mEdgeGlowRight.onPull((float) mOverScrollDeltaX / mHostView.getWidth());
67 if (maxY > 0 || mHostView.getOverScrollMode() == View.OVER_SCROLL_ALWAYS) {
70 mEdgeGlowTop.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
75 mEdgeGlowBottom.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
98 if (rangeY > 0 || mHostView.getOverScrollMode() == View.OVER_SCROLL_ALWAYS)
    [all...]

Completed in 3377 milliseconds