HomeSort by relevance Sort by last modified time
    Searched refs:offsetX (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/webkit/Source/WebCore/platform/graphics/chromium/
ComplexTextControllerLinux.h 117 const unsigned offsetX() const { return m_offsetX; }
FontLinux.cpp 258 int lastX = controller.offsetX() - (controller.rtl() ? -controller.width() : controller.width());
292 int x = controller.offsetX();
294 int nextX = controller.offsetX();
365 fromX = controller.offsetX();
367 toX = controller.offsetX();
ComplexTextControllerLinux.cpp 306 double offsetX = truncateFixedPointToInteger(m_item.offsets[i].x);
309 offsetX -= advance;
311 m_xPositions[i] = m_offsetX + (position * rtlFlip) + offsetX;
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 294 float offsetX = offsets[k].du / cLogicalScale;
301 offsetX = roundf(offsetX);
342 FloatSize size(offsetX, -offsetY);
352 m_glyphOrigin.move(advance + offsetX, -offsetY);
QTMovieGWorld.cpp 413 int offsetX = (windowWidth - actualWidth) / 2;
416 rect.left = offsetX;
417 rect.right = offsetX + actualWidth;
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
ShadowUtil.java 299 float offsetX, offsetY, offsetZ;
303 offsetX = -0.5f * (splitMax.x + splitMin.x) * scaleX;
308 Matrix4f cropMatrix = new Matrix4f(scaleX, 0f, 0f, offsetX,
460 float offsetX, offsetY, offsetZ;
465 offsetX = -0.5f * (cropMax.x + cropMin.x) * scaleX;
473 Matrix4f cropMatrix = new Matrix4f(scaleX, 0f, 0f, offsetX,
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 314 float offsetX = 0.0f, offsetY = 0.0f;
316 offsetX = offsets[i].du;
321 newPath.addPath(*path, x + offsetX, y + offsetY);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
AccessibilityNodeProviderActivity.java 182 int offsetX = 0;
188 childBounds.set(offsetX, 0, offsetX + childBounds.width(), childBounds.height());
189 offsetX += childBounds.width();
  /external/webkit/Source/WebCore/html/
ImageInputType.cpp 80 m_clickLocation = IntPoint(mouseEvent->offsetX(), mouseEvent->offsetY());
  /packages/apps/Launcher2/src/com/android/launcher2/
DragView.java 73 final float offsetX = res.getDimensionPixelSize(R.dimen.dragViewOffsetX);
90 final int deltaX = (int) ((value * offsetX) - mOffsetX);
DeleteDropTarget.java 269 int offsetX = (int) (offsetY / (vel.y / vel.x));
271 final float x2 = from.left + offsetX;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
FrameLayoutRule.java 100 int offsetX = b.x - currBounds.x;
102 drawElement(gc, it, offsetX, offsetY);
AbsoluteLayoutRule.java 111 int offsetX = x - be.x + (feedback.dragBounds != null ? feedback.dragBounds.x : 0);
115 drawElement(gc, element, offsetX, offsetY);
LinearLayoutRule.java 434 int offsetX;
437 offsetX = b.x - be.x;
441 offsetX = currX - be.x - (isLast ? 0 : (be.w / 2));
459 px = bounds.x + offsetX;
472 drawElement(gc, element, offsetX, offsetY);
    [all...]
BaseLayoutRule.java 308 * @param offsetX a horizontal delta to add to the current bounds of the element when
313 public void drawElement(IGraphics gc, IDragElement element, int offsetX, int offsetY) {
316 gc.drawRect(b.x + offsetX, b.y + offsetY, b.x + offsetX + b.w, b.y + offsetY + b.h);
320 drawElement(gc, inner, offsetX, offsetY);
    [all...]
  /external/webkit/Source/WebCore/dom/
MouseRelatedEvent.cpp 184 // Adjust offsetX/Y to be relative to the target's position.
229 int MouseRelatedEvent::offsetX()
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.h 186 int offsetX() { return m_offsetX; }
  /frameworks/opt/datetimepicker/src/com/googlecode/eyesfree/utils/
TouchExplorationHelper.java 307 final int offsetX = mTempGlobalRect[0];
310 mTempScreenRect.offset(offsetX, offsetY);
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 451 int RenderListBox::listIndexAtOffset(int offsetX, int offsetY)
460 if (offsetX < borderLeft() + paddingLeft() || offsetX > width() - borderRight() - paddingRight() - scrollbarWidth)
517 int offsetX = destination.x() - absPos.x();
529 return listIndexAtOffset(offsetX, offsetY);
  /external/webkit/Source/WebKit/win/
DOMEventsClasses.cpp 484 HRESULT STDMETHODCALLTYPE DOMMouseEvent::offsetX(
689 HRESULT STDMETHODCALLTYPE DOMWheelEvent::offsetX(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 175 * @param offsetX the new mouse X coordinate
180 int offsetX, int offsetY, int modifierMask) {
192 mBounds = new Rect(offsetX, offsetY, firstBounds.w, firstBounds.h);
  /external/skia/include/core/
SkClipStack.h 416 * to the expected drawing area. Similarly, the offsetX and offsetY parameters
419 * the translation (+offsetX, +offsetY) is applied before the clamp to the
425 void getConservativeBounds(int offsetX,
  /external/webkit/Source/WebKit/win/Interfaces/
DOMEvents.idl 285 //readonly attribute long offsetX;
286 HRESULT offsetX([out, retval] long* result);
451 //readonly attribute long offsetX;
452 HRESULT offsetX([out, retval] long* result);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java     [all...]
  /external/skia/src/core/
SkClipStack.cpp 701 void SkClipStack::getConservativeBounds(int offsetX,
722 temp.offset(SkIntToScalar(offsetX), SkIntToScalar(offsetY));

Completed in 307 milliseconds

12 3 4