Searched defs:offsetY (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMMouseEvent.cpp63 int WebDOMMouseEvent::offsetY() function in class:blink::WebDOMMouseEvent
65 return unwrap<MouseEvent>()->offsetY();
H A DInspectorClientImpl.cpp90 void InspectorClientImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) argument
93 agent->setDeviceMetricsOverride(width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY);
H A DWebDevToolsAgentImpl.cpp370 void WebDevToolsAgentImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) argument
387 params.offset = WebFloatPoint(offsetX, offsetY);
/external/chromium_org/third_party/skia/gm/
H A Dpictureshadertile.cpp21 SkScalar offsetX, offsetY; member in struct:__anon15052
75 tiles[i].offsetY * kPictureSize);
/external/replicaisland/src/com/replica/replicaisland/
H A DAABoxCollisionVolume.java31 public AABoxCollisionVolume(float offsetX, float offsetY, float width, float height) { argument
33 mBottomLeft = new Vector2(offsetX, offsetY);
37 public AABoxCollisionVolume(float offsetX, float offsetY, float width, float height, argument
40 mBottomLeft = new Vector2(offsetX, offsetY);
H A DLauncherComponent.java145 public void setLaunchEffect(GameObjectFactory.GameObjectType effectType, float offsetX, float offsetY) { argument
148 mLaunchEffectOffsetY = offsetY;
H A DLaunchProjectileComponent.java135 float offsetY = mOffsetY;
143 offsetY = parentObject.height - mOffsetY;
147 final float y = parentObject.getPosition().y + offsetY;
199 public final void setOffsetY(float offsetY) { argument
200 mOffsetY = offsetY;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMouseRelatedEvent.cpp195 int MouseRelatedEvent::offsetY() function in class:blink::MouseRelatedEvent
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMatrix.h146 IN REAL offsetY,
149 return SetStatus(DllExports::GdipTranslateMatrix(nativeMatrix, offsetX, offsetY, order));
145 Translate(IN REAL offsetX, IN REAL offsetY, IN MatrixOrder order = MatrixOrderPrepend) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkClipStack.cpp804 int offsetY,
824 temp.offset(SkIntToScalar(offsetX), SkIntToScalar(offsetY));
803 getConservativeBounds(int offsetX, int offsetY, int maxWidth, int maxHeight, SkRect* devBounds, bool* isIntersectionOfRects) const argument
H A DSkAAClip.cpp802 const int offsetY = bounds.fTop; local
819 int bot = r.fBottom - offsetY;
827 int top = r.fTop - offsetY;
/external/deqp/modules/gles2/functional/
H A Des2fTextureCompletenessTests.cpp160 int offsetY = random.getInt(0, m_renderCtx.getRenderTarget().getHeight() - viewportHeight); local
164 glViewport (offsetX, offsetY, viewportWidth, viewportHeight);
168 glu::readPixels (m_renderCtx, offsetX, offsetY, renderedFrame.getAccess());
213 int offsetY = random.getInt(0, de::max(0,m_renderCtx.getRenderTarget().getHeight() - 64)); local
221 glViewport (offsetX, offsetY, viewportWidth, viewportHeight);
224 glu::readPixels (m_renderCtx, offsetX, offsetY, renderedFrame.getAccess());
/external/skia/src/core/
H A DSkClipStack.cpp804 int offsetY,
824 temp.offset(SkIntToScalar(offsetX), SkIntToScalar(offsetY));
803 getConservativeBounds(int offsetX, int offsetY, int maxWidth, int maxHeight, SkRect* devBounds, bool* isIntersectionOfRects) const argument
H A DSkAAClip.cpp734 const int offsetY = bounds.fTop; local
751 int bot = r.fBottom - offsetY;
759 int top = r.fTop - offsetY;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DLayerTreeModel.js500 offsetY: function() { },
661 offsetY: function()
663 return this._layerPayload.offsetY;
811 var offsetMatrix = new WebKitCSSMatrix().translate(this._layerPayload.offsetX, this._layerPayload.offsetY);
980 offsetY: function()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXObject.cpp770 int offsetX = 0, offsetY = 0; local
784 objectRect.move(offsetX, offsetY);
806 offsetY -= (scrollPosition.y() + point.y());
811 offsetY = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp907 float offsetY = transformOriginY().type() == Percent ? boundingBox.y() : 0; local
911 floatValueForLength(transformOriginY(), boundingBox.height()) + offsetY,
921 -floatValueForLength(transformOriginY(), boundingBox.height()) - offsetY,
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzShaper.cpp277 inline void HarfBuzzShaper::HarfBuzzRun::setGlyphAndPositions(unsigned index, uint16_t glyphId, float advance, float offsetX, float offsetY) argument
281 m_offsets[index] = FloatPoint(offsetX, offsetY);
916 float offsetY = -harfBuzzPositionToFloat(glyphPositions[i].y_offset); local
944 currentRun->setGlyphAndPositions(i, glyph, advance, offsetX, offsetY);
949 glyphOrigin += FloatSize(advance + offsetX, offsetY);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp816 double offsetY = optionalOffsetY ? *optionalOffsetY : 0; local
840 if (!deviceMetricsChanged(true, width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY))
851 m_state->setDouble(PageAgentState::deviceOffsetY, offsetY);
873 bool InspectorPageAgent::deviceMetricsChanged(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY) argument
894 || offsetY != currentOffsetY;
1338 double offsetY = m_state->getDouble(PageAgentState::deviceOffsetY, 0); local
1339 updateViewMetrics(enabled, width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY);
1342 void InspectorPageAgent::updateViewMetrics(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY) argument
1350 m_client->setDeviceMetricsOverride(width, height, static_cast<float>(deviceScaleFactor), mobile, fitWindow, static_cast<float>(scale), static_cast<float>(offsetX), static_cast<float>(offsetY));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2861 * @param offsetY Offset for Y position.
2863 public void setSmartClipOffsets(int offsetX, int offsetY) { argument
2865 mSmartClipOffsetY = offsetY;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 3138 milliseconds