OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRenderCoordinates
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewCore.java
276
private final RenderCoordinates
mRenderCoordinates
;
376
mRenderCoordinates
= new RenderCoordinates();
383
mRenderCoordinates
.setDeviceScaleFactor(deviceScaleFactor);
472
int topMargin = Math.round(
mRenderCoordinates
.getContentOffsetYPix() + y * scale);
497
leftMargin +=
mRenderCoordinates
.getScrollXPixInt();
498
topMargin +=
mRenderCoordinates
.getScrollYPixInt();
625
mRenderCoordinates
.reset();
[
all
...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
BrowserAccessibilityManager.java
45
private final RenderCoordinates
mRenderCoordinates
;
92
mRenderCoordinates
= mContentViewCore.getRenderCoordinates();
249
int cssX = (int) (
mRenderCoordinates
.fromPixToLocalCss(x));
250
int cssY = (int) (
mRenderCoordinates
.fromPixToLocalCss(y));
260
* the first time, since until that point, we can't use
mRenderCoordinates
to transform
394
* notifyFrameInfoInitialized might not be called at all if
mRenderCoordinates
398
return
mRenderCoordinates
.getContentWidthCss() != 0.0 ||
399
mRenderCoordinates
.getContentHeightCss() != 0.0;
555
boundsInParent.offset(0, (int)
mRenderCoordinates
.getContentOffsetYPix());
563
rect.offset(-(int)
mRenderCoordinates
.getScrollX()
[
all
...]
Completed in 632 milliseconds