Searched refs:mRenderCoordinates (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DBrowserAccessibilityManager.java41 private RenderCoordinates mRenderCoordinates; field in class:BrowserAccessibilityManager
82 mRenderCoordinates = mContentViewCore.getRenderCoordinates();
192 int cssX = (int) (mRenderCoordinates.fromPixToLocalCss(x) +
193 mRenderCoordinates.getScrollX());
194 int cssY = (int) (mRenderCoordinates.fromPixToLocalCss(y) +
195 mRenderCoordinates.getScrollY());
208 * the first time, since until that point, we can't use mRenderCoordinates to transform
369 boundsInParent.offset(0, (int) mRenderCoordinates.getContentOffsetYPix());
377 rect.offset(-(int) mRenderCoordinates.getScrollX(),
378 -(int) mRenderCoordinates
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java379 private final RenderCoordinates mRenderCoordinates; field in class:ContentViewCore
449 mRenderCoordinates = new RenderCoordinates();
450 mRenderCoordinates.setDeviceScaleFactor(
452 mStartHandlePoint = mRenderCoordinates.createNormalizedPoint();
453 mEndHandlePoint = mRenderCoordinates.createNormalizedPoint();
454 mInsertionHandlePoint = mRenderCoordinates.createNormalizedPoint();
520 int topMargin = Math.round(mRenderCoordinates.getContentOffsetYPix() + y * scale);
538 leftMargin += mRenderCoordinates.getScrollXPixInt();
539 topMargin += mRenderCoordinates.getScrollYPixInt();
776 mRenderCoordinates
[all...]

Completed in 151 milliseconds