x 146 Source/bindings/v8/V8Binding.cpp static double enforceRange(double x, double minimum, double maximum, const char* typeName, ExceptionState& exceptionState) x 148 Source/bindings/v8/V8Binding.cpp if (std::isnan(x) || std::isinf(x)) { x 149 Source/bindings/v8/V8Binding.cpp exceptionState.throwTypeError("Value is" + String(std::isinf(x) ? " infinite and" : "") + " not of type '" + String(typeName) + "'."); x 152 Source/bindings/v8/V8Binding.cpp x = trunc(x); x 153 Source/bindings/v8/V8Binding.cpp if (x < minimum || x > maximum) { x 157 Source/bindings/v8/V8Binding.cpp return x; x 404 Source/bindings/v8/V8Binding.cpp double x = numberObject->Value(); x 407 Source/bindings/v8/V8Binding.cpp return enforceRange(x, -kJSMaxInteger, kJSMaxInteger, "long long", exceptionState); x 410 Source/bindings/v8/V8Binding.cpp if (std::isnan(x) || std::isinf(x)) x 415 Source/bindings/v8/V8Binding.cpp doubleToInteger(x, integer); x 450 Source/bindings/v8/V8Binding.cpp double x = numberObject->Value(); x 453 Source/bindings/v8/V8Binding.cpp return enforceRange(x, 0, kJSMaxInteger, "unsigned long long", exceptionState); x 456 Source/bindings/v8/V8Binding.cpp if (std::isnan(x) || std::isinf(x)) x 461 Source/bindings/v8/V8Binding.cpp doubleToInteger(x, integer); x 49 Source/bindings/v8/custom/V8DeviceMotionEventCustom.cpp double x = xValue->NumberValue(); x 66 Source/bindings/v8/custom/V8DeviceMotionEventCustom.cpp return DeviceMotionData::Acceleration::create(canProvideX, x, canProvideY, y, canProvideZ, z); x 43 Source/bindings/v8/custom/V8WebKitPointCustom.cpp float x = 0; x 47 Source/bindings/v8/custom/V8WebKitPointCustom.cpp x = toFloat(info[0]); x 48 Source/bindings/v8/custom/V8WebKitPointCustom.cpp if (std::isnan(x)) x 49 Source/bindings/v8/custom/V8WebKitPointCustom.cpp x = 0; x 57 Source/bindings/v8/custom/V8WebKitPointCustom.cpp RefPtrWillBeRawPtr<DOMPoint> point = DOMPoint::create(x, y); x 79 Source/bindings/v8/npruntime.cpp inline bool operator==(const StringKey& x, const StringKey& y) x 81 Source/bindings/v8/npruntime.cpp if (x.m_length != y.m_length) x 83 Source/bindings/v8/npruntime.cpp if (x.m_string == y.m_string) x 86 Source/bindings/v8/npruntime.cpp ASSERT(!x.isHashTableDeletedValue() && !y.isHashTableDeletedValue()); x 87 Source/bindings/v8/npruntime.cpp return !memcmp(x.m_string, y.m_string, y.m_length); x 112 Source/bindings/v8/npruntime.cpp static bool equal(const StringKey& x, const StringKey& y) x 114 Source/bindings/v8/npruntime.cpp return x == y; x 470 Source/core/accessibility/AXObject.cpp return roundedIntPoint(LayoutPoint(rect.x() + rect.width() / 2, rect.y() + rect.height() / 2)); x 752 Source/core/accessibility/AXObject.cpp scrollPosition.x(), x 753 Source/core/accessibility/AXObject.cpp objectRect.x() + subfocus.x(), objectRect.x() + subfocus.maxX(), x 754 Source/core/accessibility/AXObject.cpp objectRect.x(), objectRect.maxX(), x 799 Source/core/accessibility/AXObject.cpp objectRect.move(scrollPosition.x(), scrollPosition.y()); x 803 Source/core/accessibility/AXObject.cpp objectRect.x(), objectRect.maxX(), x 804 Source/core/accessibility/AXObject.cpp objectRect.x(), objectRect.maxX(), x 805 Source/core/accessibility/AXObject.cpp point.x(), point.x()); x 818 Source/core/accessibility/AXObject.cpp offsetX -= (scrollPosition.x() + point.x()); x 820 Source/core/accessibility/AXObject.cpp point.move(scrollPosition.x() - innerRect.x(), scrollPosition.y() - innerRect.y()); x 1273 Source/core/accessibility/AXRenderObject.cpp return IntPoint(bounds.x() + (bounds.width() / 2), bounds.y() - (bounds.height() / 2)); x 1643 Source/core/accessibility/AXRenderObject.cpp box->scrollToOffset(IntSize(point.x(), point.y())); x 39 Source/core/animation/AnimatableColor.cpp double square(double x) x 41 Source/core/animation/AnimatableColor.cpp return x * x; x 40 Source/core/animation/AnimatableLengthPoint.cpp AnimatableValue::interpolate(this->x(), lengthPoint->x(), fraction), x 48 Source/core/animation/AnimatableLengthPoint.cpp AnimatableValue::add(this->x(), lengthPoint->x()), x 55 Source/core/animation/AnimatableLengthPoint.cpp return x()->equals(lengthPoint->x()) && y()->equals(lengthPoint->y()); x 41 Source/core/animation/AnimatableLengthPoint.h static PassRefPtrWillBeRawPtr<AnimatableLengthPoint> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y) x 43 Source/core/animation/AnimatableLengthPoint.h return adoptRefWillBeNoop(new AnimatableLengthPoint(x, y)); x 45 Source/core/animation/AnimatableLengthPoint.h const AnimatableValue* x() const { return m_x.get(); } x 55 Source/core/animation/AnimatableLengthPoint.h AnimatableLengthPoint(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y) x 56 Source/core/animation/AnimatableLengthPoint.h : m_x(x) x 40 Source/core/animation/AnimatableLengthPoint3D.cpp AnimatableValue::interpolate(this->x(), lengthPoint->x(), fraction), x 49 Source/core/animation/AnimatableLengthPoint3D.cpp AnimatableValue::add(this->x(), lengthPoint->x()), x 57 Source/core/animation/AnimatableLengthPoint3D.cpp return x()->equals(lengthPoint->x()) && y()->equals(lengthPoint->y()) && z()->equals(lengthPoint->z()); x 41 Source/core/animation/AnimatableLengthPoint3D.h static PassRefPtrWillBeRawPtr<AnimatableLengthPoint3D> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z) x 43 Source/core/animation/AnimatableLengthPoint3D.h return adoptRefWillBeNoop(new AnimatableLengthPoint3D(x, y, z)); x 45 Source/core/animation/AnimatableLengthPoint3D.h const AnimatableValue* x() const { return m_x.get(); } x 56 Source/core/animation/AnimatableLengthPoint3D.h AnimatableLengthPoint3D(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z) x 57 Source/core/animation/AnimatableLengthPoint3D.h : m_x(x) x 85 Source/core/animation/AnimatableValueTestHelper.cpp PrintTo(*(animLengthPoint.x()), os); x 59 Source/core/animation/AnimationTranslationUtil.cpp webTransformOperations->appendScale(transform->x(), transform->y(), transform->z()); x 68 Source/core/animation/AnimationTranslationUtil.cpp ASSERT(transform->x().isFixed() && transform->y().isFixed()); x 69 Source/core/animation/AnimationTranslationUtil.cpp webTransformOperations->appendTranslate(transform->x().value(), transform->y().value(), transform->z()); x 77 Source/core/animation/AnimationTranslationUtil.cpp webTransformOperations->appendRotate(transform->x(), transform->y(), transform->z(), transform->angle()); x 41 Source/core/animation/TimedItemCalculations.h static inline double multiplyZeroAlwaysGivesZero(double x, double y) x 43 Source/core/animation/TimedItemCalculations.h ASSERT(!isNull(x)); x 45 Source/core/animation/TimedItemCalculations.h return x && y ? x * y : 0; x 146 Source/core/animation/css/CSSAnimatableValueFactory.cpp createFromLength(lengthPoint.x(), style), x 215 Source/core/clipboard/Clipboard.cpp void Clipboard::setDragImage(Element* image, int x, int y, ExceptionState& exceptionState) x 224 Source/core/clipboard/Clipboard.cpp IntPoint location(x, y); x 81 Source/core/clipboard/Clipboard.h void setDragImage(Element*, int x, int y, ExceptionState&); x 124 Source/core/css/CSSBasicShapes.h void appendPoint(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y) x 126 Source/core/css/CSSBasicShapes.h m_values.append(x); x 1199 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> x = zoomAdjustedPixelValue(shadow.x(), style); x 1205 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), shadowStyle.release(), color.release()); x 2108 Source/core/css/CSSComputedStyleDeclaration.cpp zoomAdjustedPixelValueForLength(style->objectPosition().x(), *style), x 80 Source/core/css/CSSCursorImageValue.cpp result.appendNumber(m_hotSpot.x()); x 100 Source/core/css/CSSCursorImageValue.cpp float x = roundf(cursorElement->x()->currentValue()->value(lengthContext)); x 101 Source/core/css/CSSCursorImageValue.cpp m_hotSpot.setX(static_cast<int>(x)); x 342 Source/core/css/CSSGradientValue.cpp gradient->setP0(FloatPoint(p0.x() + firstOffset * (p1.x() - p0.x()), p0.y() + firstOffset * (p1.y() - p0.y()))); x 343 Source/core/css/CSSGradientValue.cpp gradient->setP1(FloatPoint(p1.x() + (lastOffset - 1) * (p1.x() - p0.x()), p1.y() + (lastOffset - 1) * (p1.y() - p0.y()))); x 638 Source/core/css/CSSGradientValue.cpp float c = endCorner.y() - perpendicularSlope * endCorner.x(); x 666 Source/core/css/CSSGradientValue.cpp secondPoint.setX(size.width() - firstPoint.x()); x 674 Source/core/css/CSSGradientValue.cpp secondPoint.setX(size.width() - firstPoint.x()); x 693 Source/core/css/CSSGradientValue.cpp firstPoint.setX(size.width() - secondPoint.x()); x 1059 Source/core/css/CSSGradientValue.cpp float xDist = min(secondPoint.x(), size.width() - secondPoint.x()); x 1071 Source/core/css/CSSGradientValue.cpp float xDist = max(secondPoint.x(), size.width() - secondPoint.x()); x 1090 Source/core/css/CSSGradientValue.cpp float xDist = min(secondPoint.x(), size.width() - secondPoint.x()); x 1107 Source/core/css/CSSGradientValue.cpp float xDist = max(secondPoint.x(), size.width() - secondPoint.x()); x 111 Source/core/css/CSSMatrix.cpp PassRefPtrWillBeRawPtr<CSSMatrix> CSSMatrix::translate(double x, double y, double z) const x 113 Source/core/css/CSSMatrix.cpp if (std::isnan(x)) x 114 Source/core/css/CSSMatrix.cpp x = 0; x 119 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).translate3d(x, y, z)); x 151 Source/core/css/CSSMatrix.cpp PassRefPtrWillBeRawPtr<CSSMatrix> CSSMatrix::rotateAxisAngle(double x, double y, double z, double angle) const x 153 Source/core/css/CSSMatrix.cpp if (std::isnan(x)) x 154 Source/core/css/CSSMatrix.cpp x = 0; x 161 Source/core/css/CSSMatrix.cpp if (!x && !y && !z) x 163 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(x, y, z, angle)); x 112 Source/core/css/CSSMatrix.h PassRefPtrWillBeRawPtr<CSSMatrix> translate(double x, double y, double z) const; x 132 Source/core/css/CSSMatrix.h PassRefPtrWillBeRawPtr<CSSMatrix> rotateAxisAngle(double x, double y, double z, double angle) const; x 30 Source/core/css/CSSShadowValue.cpp CSSShadowValue::CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, x 37 Source/core/css/CSSShadowValue.cpp , x(x) x 52 Source/core/css/CSSShadowValue.cpp if (x) { x 55 Source/core/css/CSSShadowValue.cpp text.append(x->cssText()); x 84 Source/core/css/CSSShadowValue.cpp && compareCSSValuePtr(x, other.x) x 93 Source/core/css/CSSShadowValue.cpp visitor->trace(x); x 35 Source/core/css/CSSShadowValue.h static PassRefPtrWillBeRawPtr<CSSShadowValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, x 42 Source/core/css/CSSShadowValue.h return adoptRefWillBeRefCountedGarbageCollected(new CSSShadowValue(x, y, blur, spread, style, color)); x 49 Source/core/css/CSSShadowValue.h RefPtrWillBeMember<CSSPrimitiveValue> x; x 59 Source/core/css/CSSShadowValue.h CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, x 5416 Source/core/css/parser/CSSPropertyParser.cpp if (x || y || blur || spread || color || style) { x 5421 Source/core/css/parser/CSSPropertyParser.cpp values->append(CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release())); x 5425 Source/core/css/parser/CSSPropertyParser.cpp x = nullptr; x 5446 Source/core/css/parser/CSSPropertyParser.cpp x = val.release(); x 5500 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeMember<CSSPrimitiveValue> x; x 117 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthPoint->x(), state, range), x 563 Source/core/css/resolver/AnimatedStyleBuilder.cpp style->setPerspectiveOriginX(animatableValueToLength(animatableLengthPoint->x(), state)); x 597 Source/core/css/resolver/AnimatedStyleBuilder.cpp style->setTransformOriginX(animatableValueToLength(animatableLengthPoint3D->x(), state)); x 193 Source/core/css/resolver/FilterOperationResolver.cpp IntPoint location(item->x->computeLength<int>(conversionData), item->y->computeLength<int>(conversionData)); x 99 Source/core/css/resolver/StyleBuilderConverter.cpp Length x = pair->first()->convertToLength<FixedConversion | PercentConversion>(state.cssToLengthConversionData()); x 101 Source/core/css/resolver/StyleBuilderConverter.cpp return LengthPoint(x, y); x 139 Source/core/css/resolver/StyleBuilderConverter.cpp float x = item->x->computeLength<float>(state.cssToLengthConversionData()); x 149 Source/core/css/resolver/StyleBuilderConverter.cpp shadows.append(ShadowData(FloatPoint(x, y), blur, spread, shadowStyle, color)); x 37 Source/core/css/resolver/StyleResolverStats.cpp #define PERCENT(x, y) ((!y) ? 0 : (((x) * 100.0) / (y))) x 214 Source/core/css/resolver/TransformBuilder.cpp double x = 0; x 220 Source/core/css/resolver/TransformBuilder.cpp x = 1; x 225 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType()))); x 234 Source/core/css/resolver/TransformBuilder.cpp double x = firstValue->getDoubleValue(); x 238 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType()))); x 48 Source/core/dom/ClientRect.h float left() const { return m_rect.x(); } x 719 Source/core/dom/ContainerNode.cpp point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root().lineTop().toFloat()); x 1225 Source/core/dom/Document.cpp Element* Document::elementFromPoint(int x, int y) const x 1230 Source/core/dom/Document.cpp return TreeScope::elementFromPoint(x, y); x 1233 Source/core/dom/Document.cpp PassRefPtrWillBeRawPtr<Range> Document::caretRangeFromPoint(int x, int y) x 1237 Source/core/dom/Document.cpp HitTestResult result = hitTestInDocument(this, x, y); x 5144 Source/core/dom/Document.cpp quads[i].move(-FloatSize(visibleContentRect.x().toFloat(), visibleContentRect.y().toFloat())); x 5155 Source/core/dom/Document.cpp rect.move(-FloatSize(visibleContentRect.x().toFloat(), visibleContentRect.y().toFloat())); x 342 Source/core/dom/Document.h Element* elementFromPoint(int x, int y) const; x 343 Source/core/dom/Document.h PassRefPtrWillBeRawPtr<Range> caretRangeFromPoint(int x, int y); x 71 Source/core/dom/Touch.cpp float x = pageX * scaleFactor; x 73 Source/core/dom/Touch.cpp m_absoluteLocation = roundedLayoutPoint(FloatPoint(x, y)); x 218 Source/core/dom/TreeScope.cpp HitTestResult hitTestInDocument(const Document* document, int x, int y) x 229 Source/core/dom/TreeScope.cpp IntPoint point = roundedIntPoint(FloatPoint(x * scaleFactor + frameView->scrollX(), y * scaleFactor + frameView->scrollY())); x 240 Source/core/dom/TreeScope.cpp Element* TreeScope::elementFromPoint(int x, int y) const x 242 Source/core/dom/TreeScope.cpp HitTestResult result = hitTestInDocument(&rootNode().document(), x, y); x 79 Source/core/dom/TreeScope.h Element* elementFromPoint(int x, int y) const; x 229 Source/core/dom/TreeScope.h HitTestResult hitTestInDocument(const Document*, int x, int y); x 646 Source/core/editing/DeleteSelectionCommand.cpp if (!m_startsAtEmptyLine && isStartOfParagraph(mergeDestination) && startOfParagraphToMove.absoluteCaretBounds().x() > mergeDestination.absoluteCaretBounds().x()) { x 1065 Source/core/editing/Editor.cpp return IntRect(min(startCaretRect.x(), endCaretRect.x()), x 1067 Source/core/editing/Editor.cpp abs(endCaretRect.x() - startCaretRect.x()), x 1072 Source/core/editing/Editor.cpp return IntRect(startCaretRect.x(), x 988 Source/core/editing/FrameSelection.cpp LayoutUnit x = lineDirectionPointForBlockDirectionNavigation(START); x 1025 Source/core/editing/FrameSelection.cpp m_xPosForVerticalArrowNavigation = x; x 1125 Source/core/editing/FrameSelection.cpp LayoutUnit x = 0; x 1128 Source/core/editing/FrameSelection.cpp return x; x 1148 Source/core/editing/FrameSelection.cpp return x; x 1154 Source/core/editing/FrameSelection.cpp x = visiblePosition.isNotNull() ? visiblePosition.lineDirectionPointForBlockDirectionNavigation() : 0; x 1155 Source/core/editing/FrameSelection.cpp m_xPosForVerticalArrowNavigation = x; x 1157 Source/core/editing/FrameSelection.cpp x = m_xPosForVerticalArrowNavigation; x 1159 Source/core/editing/FrameSelection.cpp return x; x 696 Source/core/editing/VisiblePosition.cpp return containingBlock->isHorizontalWritingMode() ? caretPoint.x() : caretPoint.y(); x 910 Source/core/editing/VisibleUnits.cpp return IntPoint(lineDirectionPoint - absoluteBlockPoint.x(), root->blockDirectionPointInLine()); x 1262 Source/core/editing/VisibleUnits.cpp VisiblePosition previousParagraphPosition(const VisiblePosition& p, int x) x 1266 Source/core/editing/VisibleUnits.cpp VisiblePosition n = previousLinePosition(pos, x); x 1274 Source/core/editing/VisibleUnits.cpp VisiblePosition nextParagraphPosition(const VisiblePosition& p, int x) x 1278 Source/core/editing/VisibleUnits.cpp VisiblePosition n = nextLinePosition(pos, x); x 70 Source/core/editing/VisibleUnits.h VisiblePosition previousParagraphPosition(const VisiblePosition &, int x); x 71 Source/core/editing/VisibleUnits.h VisiblePosition nextParagraphPosition(const VisiblePosition &, int x); x 68 Source/core/events/GestureEvent.cpp return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY)); x 62 Source/core/events/MouseEvent.cpp detail, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), x 63 Source/core/events/MouseEvent.cpp event.movementDelta().x(), event.movementDelta().y(), x 175 Source/core/events/MouseRelatedEvent.cpp return m_layerLocation.x(); x 189 Source/core/events/MouseRelatedEvent.cpp return roundToInt(m_offsetLocation.x()); x 201 Source/core/events/MouseRelatedEvent.cpp return m_pageLocation.x(); x 213 Source/core/events/MouseRelatedEvent.cpp return m_clientLocation.x(); x 37 Source/core/events/MouseRelatedEvent.h int screenX() const { return m_screenLocation.x(); } x 40 Source/core/events/MouseRelatedEvent.h int clientX() const { return m_clientLocation.x(); } x 42 Source/core/events/MouseRelatedEvent.h int webkitMovementX() const { return m_movementDelta.x(); } x 52 Source/core/events/MouseRelatedEvent.h int x() const; x 67 Source/core/events/WheelEvent.cpp true, true, view, 0, screenLocation.x(), screenLocation.y(), x 68 Source/core/events/WheelEvent.cpp pageLocation.x(), pageLocation.y(), x 71 Source/core/events/WheelEvent.cpp , m_wheelDelta(wheelTicks.x() * TickMultiplier, wheelTicks.y() * TickMultiplier) x 72 Source/core/events/WheelEvent.cpp , m_deltaX(-rawDelta.x()) x 88 Source/core/events/WheelEvent.h int wheelDeltaX() const { return m_wheelDelta.x(); } // Deprecated, negative when scrolling right. x 91 Source/core/events/WheelEvent.h float ticksX() const { return static_cast<float>(m_wheelDelta.x()) / TickMultiplier; } x 42 Source/core/frame/DOMPoint.h static PassRefPtrWillBeRawPtr<DOMPoint> create(float x, float y) x 44 Source/core/frame/DOMPoint.h return adoptRefWillBeNoop(new DOMPoint(x, y)); x 47 Source/core/frame/DOMPoint.h float x() const { return m_x; } x 50 Source/core/frame/DOMPoint.h void setX(float x) { m_x = x; } x 56 Source/core/frame/DOMPoint.h DOMPoint(float x = 0, float y = 0) x 57 Source/core/frame/DOMPoint.h : m_x(x) x 266 Source/core/frame/DOMWindow.cpp ASSERT(std::isfinite(screen.x())); x 270 Source/core/frame/DOMWindow.cpp ASSERT(std::isfinite(window.x())); x 276 Source/core/frame/DOMWindow.cpp if (!std::isnan(pendingChanges.x())) x 277 Source/core/frame/DOMWindow.cpp window.setX(pendingChanges.x()); x 293 Source/core/frame/DOMWindow.cpp window.setX(max(screen.x(), min(window.x(), screen.maxX() - window.width()))); x 1135 Source/core/frame/DOMWindow.cpp return lroundf(host->chrome().windowRect().x() * host->deviceScaleFactor()); x 1136 Source/core/frame/DOMWindow.cpp return static_cast<int>(host->chrome().windowRect().x()); x 1335 Source/core/frame/DOMWindow.cpp FloatPoint pagePoint(p->x(), p->y()); x 1337 Source/core/frame/DOMWindow.cpp return DOMPoint::create(pagePoint.x(), pagePoint.y()); x 1350 Source/core/frame/DOMWindow.cpp FloatPoint nodePoint(p->x(), p->y()); x 1352 Source/core/frame/DOMWindow.cpp return DOMPoint::create(nodePoint.x(), nodePoint.y()); x 1378 Source/core/frame/DOMWindow.cpp void DOMWindow::scrollBy(int x, int y, const Dictionary& scrollOptions, ExceptionState &exceptionState) const x 1393 Source/core/frame/DOMWindow.cpp IntSize scaledOffset(x * m_frame->pageZoomFactor(), y * m_frame->pageZoomFactor()); x 1398 Source/core/frame/DOMWindow.cpp void DOMWindow::scrollTo(int x, int y, const Dictionary& scrollOptions, ExceptionState& exceptionState) const x 1413 Source/core/frame/DOMWindow.cpp IntPoint layoutPos(x * m_frame->pageZoomFactor(), y * m_frame->pageZoomFactor()); x 1418 Source/core/frame/DOMWindow.cpp void DOMWindow::moveBy(float x, float y) const x 1428 Source/core/frame/DOMWindow.cpp windowRect.move(x, y); x 1433 Source/core/frame/DOMWindow.cpp void DOMWindow::moveTo(float x, float y) const x 1443 Source/core/frame/DOMWindow.cpp windowRect.setLocation(FloatPoint(x, y)); x 1448 Source/core/frame/DOMWindow.cpp void DOMWindow::resizeBy(float x, float y) const x 1458 Source/core/frame/DOMWindow.cpp FloatSize dest = fr.size() + FloatSize(x, y); x 236 Source/core/frame/DOMWindow.h void scrollBy(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const; x 237 Source/core/frame/DOMWindow.h void scrollTo(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const; x 238 Source/core/frame/DOMWindow.h void scroll(int x, int y, const Dictionary& scrollOptions, ExceptionState& exceptionState) const { scrollTo(x, y, scrollOptions, exceptionState); } x 240 Source/core/frame/DOMWindow.h void moveBy(float x, float y) const; x 241 Source/core/frame/DOMWindow.h void moveTo(float x, float y) const; x 243 Source/core/frame/DOMWindow.h void resizeBy(float x, float y) const; x 491 Source/core/frame/FrameView.cpp IntPoint maxScrollExtent(contentsSize().width() - scrollOrigin().x(), contentsSize().height() - scrollOrigin().y()); x 513 Source/core/frame/FrameView.cpp ScrollView::setScrollOrigin(IntPoint(-rect.x(), -rect.y()), !m_frame->document()->printing(), size == contentsSize()); x 1631 Source/core/frame/FrameView.cpp setScrollPosition(IntPoint(bounds.x() - centeringOffsetX - rect.x(), bounds.y() - centeringOffsetY - rect.y())); x 2959 Source/core/frame/FrameView.cpp LayoutUnit docLogicalTop = horizontalWritingMode ? updatedDocumentRect.y() : updatedDocumentRect.x(); x 3144 Source/core/frame/FrameView.cpp ts << " (rect " << m_trackedRepaintRects[i].x() << " " << m_trackedRepaintRects[i].y() << " " << m_trackedRepaintRects[i].width() << " " << m_trackedRepaintRects[i].height() << ")\n"; x 23 Source/core/frame/ImageBitmap.cpp return IntRect(min(rect.x(), rect.maxX()), x 46 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, -cropRect.x()), max(0, -cropRect.y())), srcRect.size()); x 71 Source/core/frame/ImageBitmap.cpp c->translate(-srcRect.x(), -srcRect.y()); x 74 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, -cropRect.x()), max(0, -cropRect.y())), srcRect.size()); x 89 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, -cropRect.x()), max(0, -cropRect.y())), srcRect.size()); x 106 Source/core/frame/ImageBitmap.cpp buf->putByteArray(Premultiplied, data->data(), data->size(), srcRect, IntPoint(min(0, -cropRect.x()), min(0, -cropRect.y()))); x 109 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, -cropRect.x()), max(0, -cropRect.y())), srcRect.size()); x 122 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, oldBitmapRect.x() - cropRect.x()), max(0, oldBitmapRect.y() - cropRect.y())), srcRect.size()); x 128 Source/core/frame/ImageBitmap.cpp IntRect adjustedCropRect(IntPoint(cropRect.x() -oldBitmapRect.x(), cropRect.y() - oldBitmapRect.y()), cropRect.size()); x 141 Source/core/frame/ImageBitmap.cpp m_bitmapRect = IntRect(IntPoint(max(0, -cropRect.x()), max(0, -cropRect.y())), srcRect.size()); x 446 Source/core/frame/LocalFrame.cpp view->setScrollPosition(IntPoint(scrollPosition.x() * percentDifference, scrollPosition.y() * percentDifference)); x 558 Source/core/frame/LocalFrame.cpp buffer->context()->translate(-paintingRect.x(), -paintingRect.y()); x 587 Source/core/frame/LocalFrame.cpp buffer->context()->translate(-paintingRect.x(), -paintingRect.y()); x 89 Source/core/frame/Screen.cpp return lroundf(screenAvailableRect(m_frame->view()).x() * host->deviceScaleFactor()); x 90 Source/core/frame/Screen.cpp return static_cast<int>(screenAvailableRect(m_frame->view()).x()); x 80 Source/core/frame/SmartClip.cpp result.append(String::number(m_rect.x())); x 186 Source/core/html/HTMLAnchorElement.cpp int x = absolutePosition.x(); x 189 Source/core/html/HTMLAnchorElement.cpp url.appendNumber(x); x 370 Source/core/html/HTMLImageElement.cpp return absPos.x(); x 71 Source/core/html/HTMLImageElement.h int x() const; x 249 Source/core/html/ImageDocument.cpp void ImageDocument::imageClicked(int x, int y) x 265 Source/core/html/ImageDocument.cpp int scrollX = static_cast<int>(x / scale - (float)frame()->view()->width() / 2); x 382 Source/core/html/ImageDocument.cpp m_doc->imageClicked(mouseEvent->x(), mouseEvent->y()); x 48 Source/core/html/ImageDocument.h void imageClicked(int x, int y); x 56 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::moveTo(float x, float y) x 58 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(x) || !std::isfinite(y)) x 62 Source/core/html/canvas/CanvasPathMethods.cpp m_path.moveTo(FloatPoint(x, y)); x 65 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::lineTo(float x, float y) x 67 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(x) || !std::isfinite(y)) x 72 Source/core/html/canvas/CanvasPathMethods.cpp FloatPoint p1 = FloatPoint(x, y); x 79 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::quadraticCurveTo(float cpx, float cpy, float x, float y) x 81 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(cpx) || !std::isfinite(cpy) || !std::isfinite(x) || !std::isfinite(y)) x 88 Source/core/html/canvas/CanvasPathMethods.cpp FloatPoint p1 = FloatPoint(x, y); x 94 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::bezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) x 96 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(cp1x) || !std::isfinite(cp1y) || !std::isfinite(cp2x) || !std::isfinite(cp2y) || !std::isfinite(x) || !std::isfinite(y)) x 103 Source/core/html/canvas/CanvasPathMethods.cpp FloatPoint p1 = FloatPoint(x, y); x 171 Source/core/html/canvas/CanvasPathMethods.cpp path->lineTo(p.x(), p.y()); x 225 Source/core/html/canvas/CanvasPathMethods.cpp void degenerateEllipse(CanvasPathMethods* path, float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise) x 231 Source/core/html/canvas/CanvasPathMethods.cpp FloatPoint center(x, y); x 254 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::arc(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState& exceptionState) x 256 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(radius) || !std::isfinite(startAngle) || !std::isfinite(endAngle)) x 269 Source/core/html/canvas/CanvasPathMethods.cpp lineTo(x + radius * cosf(startAngle), y + radius * sinf(startAngle)); x 275 Source/core/html/canvas/CanvasPathMethods.cpp m_path.addArc(FloatPoint(x, y), radius, startAngle, adjustedEndAngle, anticlockwise); x 278 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise, ExceptionState& exceptionState) x 280 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(radiusX) || !std::isfinite(radiusY) || !std::isfinite(rotation) || !std::isfinite(startAngle) || !std::isfinite(endAngle)) x 299 Source/core/html/canvas/CanvasPathMethods.cpp degenerateEllipse(this, x, y, radiusX, radiusY, rotation, startAngle, adjustedEndAngle, anticlockwise); x 303 Source/core/html/canvas/CanvasPathMethods.cpp m_path.addEllipse(FloatPoint(x, y), radiusX, radiusY, rotation, startAngle, adjustedEndAngle, anticlockwise); x 306 Source/core/html/canvas/CanvasPathMethods.cpp void CanvasPathMethods::rect(float x, float y, float width, float height) x 311 Source/core/html/canvas/CanvasPathMethods.cpp if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(width) || !std::isfinite(height)) x 315 Source/core/html/canvas/CanvasPathMethods.cpp m_path.moveTo(FloatPoint(x, y)); x 319 Source/core/html/canvas/CanvasPathMethods.cpp m_path.addRect(FloatRect(x, y, width, height)); x 44 Source/core/html/canvas/CanvasPathMethods.h void moveTo(float x, float y); x 45 Source/core/html/canvas/CanvasPathMethods.h void lineTo(float x, float y); x 46 Source/core/html/canvas/CanvasPathMethods.h void quadraticCurveTo(float cpx, float cpy, float x, float y); x 47 Source/core/html/canvas/CanvasPathMethods.h void bezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y); x 49 Source/core/html/canvas/CanvasPathMethods.h void arc(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState&); x 50 Source/core/html/canvas/CanvasPathMethods.h void ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise, ExceptionState&); x 51 Source/core/html/canvas/CanvasPathMethods.h void rect(float x, float y, float width, float height); x 58 Source/core/html/canvas/CanvasPathMethods.h static void moveTo(CanvasPathMethods& object, float x, float y) x 59 Source/core/html/canvas/CanvasPathMethods.h { object.moveTo(x, y); } x 60 Source/core/html/canvas/CanvasPathMethods.h static void lineTo(CanvasPathMethods& object, float x, float y) x 61 Source/core/html/canvas/CanvasPathMethods.h { object.lineTo(x, y); } x 62 Source/core/html/canvas/CanvasPathMethods.h static void quadraticCurveTo(CanvasPathMethods& object, float cpx, float cpy, float x, float y) x 63 Source/core/html/canvas/CanvasPathMethods.h { object.quadraticCurveTo(cpx, cpy, x, y); } x 64 Source/core/html/canvas/CanvasPathMethods.h static void bezierCurveTo(CanvasPathMethods& object, float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) x 65 Source/core/html/canvas/CanvasPathMethods.h { object.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); } x 68 Source/core/html/canvas/CanvasPathMethods.h static void arc(CanvasPathMethods& object, float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState& es) x 69 Source/core/html/canvas/CanvasPathMethods.h { object.arc(x, y, radius, startAngle, endAngle, anticlockwise, es); } x 70 Source/core/html/canvas/CanvasPathMethods.h static void ellipse(CanvasPathMethods& object, float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise, ExceptionState& es) x 71 Source/core/html/canvas/CanvasPathMethods.h { object.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise, es); } x 72 Source/core/html/canvas/CanvasPathMethods.h static void rect(CanvasPathMethods& object, float x, float y, float width, float height) x 73 Source/core/html/canvas/CanvasPathMethods.h { object.rect(x, y, width, height); } x 524 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::setShadowOffsetX(float x) x 526 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!std::isfinite(x)) x 528 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (state().m_shadowOffset.width() == x) x 531 Source/core/html/canvas/CanvasRenderingContext2D.cpp modifiableState().m_shadowOffset.setWidth(x); x 945 Source/core/html/canvas/CanvasRenderingContext2D.cpp static bool validateRectForCanvas(float& x, float& y, float& width, float& height) x 947 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!std::isfinite(x) | !std::isfinite(y) | !std::isfinite(width) | !std::isfinite(height)) x 955 Source/core/html/canvas/CanvasRenderingContext2D.cpp x -= width; x 1136 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInPath(const float x, const float y, const String& windingRuleString) x 1138 Source/core/html/canvas/CanvasRenderingContext2D.cpp return isPointInPathInternal(m_path, x, y, windingRuleString); x 1141 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInPath(Path2D* domPath, const float x, const float y, ExceptionState& exceptionState) x 1143 Source/core/html/canvas/CanvasRenderingContext2D.cpp return isPointInPath(domPath, x, y, "nonzero", exceptionState); x 1146 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInPath(Path2D* domPath, const float x, const float y, const String& windingRuleString, ExceptionState& exceptionState) x 1153 Source/core/html/canvas/CanvasRenderingContext2D.cpp return isPointInPathInternal(domPath->path(), x, y, windingRuleString); x 1156 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInPathInternal(const Path& path, const float x, const float y, const String& windingRuleString) x 1164 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatPoint point(x, y); x 1167 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!std::isfinite(transformedPoint.x()) || !std::isfinite(transformedPoint.y())) x 1177 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInStroke(const float x, const float y) x 1179 Source/core/html/canvas/CanvasRenderingContext2D.cpp return isPointInStrokeInternal(m_path, x, y); x 1182 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInStroke(Path2D* domPath, const float x, const float y, ExceptionState& exceptionState) x 1189 Source/core/html/canvas/CanvasRenderingContext2D.cpp return isPointInStrokeInternal(domPath->path(), x, y); x 1192 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool CanvasRenderingContext2D::isPointInStrokeInternal(const Path& path, const float x, const float y) x 1200 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatPoint point(x, y); x 1203 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!std::isfinite(transformedPoint.x()) || !std::isfinite(transformedPoint.y())) x 1259 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::clearRect(float x, float y, float width, float height) x 1261 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!validateRectForCanvas(x, y, width, height)) x 1268 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatRect rect(x, y, width, height); x 1301 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::fillRect(float x, float y, float width, float height) x 1303 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!validateRectForCanvas(x, y, width, height)) x 1322 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatRect rect(x, y, width, height); x 1342 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height) x 1344 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!validateRectForCanvas(x, y, width, height)) x 1361 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatRect rect(x, y, width, height); x 1453 Source/core/html/canvas/CanvasRenderingContext2D.cpp return FloatRect(min(rect.x(), rect.maxX()), x 1488 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::drawImage(CanvasImageSource* imageSource, float x, float y, ExceptionState& exceptionState) x 1493 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawImage(imageSource, x, y, destRectSize.width(), destRectSize.height(), exceptionState); x 1497 Source/core/html/canvas/CanvasRenderingContext2D.cpp float x, float y, float width, float height, ExceptionState& exceptionState) x 1502 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawImage(imageSource, 0, 0, sourceRectSize.width(), sourceRectSize.height(), x, y, width, height, exceptionState); x 1593 Source/core/html/canvas/CanvasRenderingContext2D.cpp c->translate(dstRect.x(), dstRect.y()); x 1595 Source/core/html/canvas/CanvasRenderingContext2D.cpp c->translate(-srcRect.x(), -srcRect.y()); x 2108 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::fillText(const String& text, float x, float y) x 2110 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawTextInternal(text, x, y, true); x 2113 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::fillText(const String& text, float x, float y, float maxWidth) x 2115 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawTextInternal(text, x, y, true, maxWidth, true); x 2118 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::strokeText(const String& text, float x, float y) x 2120 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawTextInternal(text, x, y, false); x 2123 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::strokeText(const String& text, float x, float y, float maxWidth) x 2125 Source/core/html/canvas/CanvasRenderingContext2D.cpp drawTextInternal(text, x, y, false, maxWidth, true); x 2144 Source/core/html/canvas/CanvasRenderingContext2D.cpp metrics->setActualBoundingBoxLeft(-textBounds.x()); x 2179 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::drawTextInternal(const String& text, float x, float y, bool fill, float maxWidth, bool useMaxWidth) x 2195 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!std::isfinite(x) | !std::isfinite(y)) x 2226 Source/core/html/canvas/CanvasRenderingContext2D.cpp FloatPoint location(x, y + getFontBaseline(fontMetrics)); x 2241 Source/core/html/canvas/CanvasRenderingContext2D.cpp location.setX(location.x() - width / 2); x 2244 Source/core/html/canvas/CanvasRenderingContext2D.cpp location.setX(location.x() - width); x 2252 Source/core/html/canvas/CanvasRenderingContext2D.cpp textRunPaintInfo.bounds = FloatRect(location.x() - fontMetrics.height() / 2, x 2266 Source/core/html/canvas/CanvasRenderingContext2D.cpp c->translate(location.x(), location.y()); x 163 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInPath(const float x, const float y, const String& winding = "nonzero"); x 164 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInPath(Path2D*, const float x, const float y, ExceptionState&); x 165 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInPath(Path2D*, const float x, const float y, const String& winding, ExceptionState&); x 166 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInStroke(const float x, const float y); x 167 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInStroke(Path2D*, const float x, const float y, ExceptionState&); x 172 Source/core/html/canvas/CanvasRenderingContext2D.h void clearRect(float x, float y, float width, float height); x 173 Source/core/html/canvas/CanvasRenderingContext2D.h void fillRect(float x, float y, float width, float height); x 174 Source/core/html/canvas/CanvasRenderingContext2D.h void strokeRect(float x, float y, float width, float height); x 186 Source/core/html/canvas/CanvasRenderingContext2D.h void drawImage(CanvasImageSource*, float x, float y, ExceptionState&); x 187 Source/core/html/canvas/CanvasRenderingContext2D.h void drawImage(CanvasImageSource*, float x, float y, float width, float height, ExceptionState&); x 218 Source/core/html/canvas/CanvasRenderingContext2D.h void fillText(const String& text, float x, float y); x 219 Source/core/html/canvas/CanvasRenderingContext2D.h void fillText(const String& text, float x, float y, float maxWidth); x 220 Source/core/html/canvas/CanvasRenderingContext2D.h void strokeText(const String& text, float x, float y); x 221 Source/core/html/canvas/CanvasRenderingContext2D.h void strokeText(const String& text, float x, float y, float maxWidth); x 316 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInPathInternal(const Path&, const float x, const float y, const String& windingRuleString); x 317 Source/core/html/canvas/CanvasRenderingContext2D.h bool isPointInStrokeInternal(const Path&, const float x, const float y); x 321 Source/core/html/canvas/CanvasRenderingContext2D.h void drawTextInternal(const String& text, float x, float y, bool fill, float maxWidth = 0, bool useMaxWidth = false); x 1407 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::copyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) x 1433 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->copyTexImage2D(target, level, internalformat, x, y, width, height, border); x 1438 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::copyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) x 1476 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->copyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); x 3008 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::readPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, ArrayBufferView* pixels) x 3071 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->readPixels(x, y, width, height, format, type, data); x 3148 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::scissor(GLint x, GLint y, GLsizei width, GLsizei height) x 3154 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->scissor(x, y, width, height); x 3700 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform1f(const WebGLUniformLocation* location, GLfloat x) x 3710 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform1f(location->location(), x); x 3729 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform1i(const WebGLUniformLocation* location, GLint x) x 3739 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform1i(location->location(), x); x 3758 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform2f(const WebGLUniformLocation* location, GLfloat x, GLfloat y) x 3768 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform2f(location->location(), x, y); x 3787 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform2i(const WebGLUniformLocation* location, GLint x, GLint y) x 3797 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform2i(location->location(), x, y); x 3816 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform3f(const WebGLUniformLocation* location, GLfloat x, GLfloat y, GLfloat z) x 3826 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform3f(location->location(), x, y, z); x 3845 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform3i(const WebGLUniformLocation* location, GLint x, GLint y, GLint z) x 3855 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform3i(location->location(), x, y, z); x 3874 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform4f(const WebGLUniformLocation* location, GLfloat x, GLfloat y, GLfloat z, GLfloat w) x 3884 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform4f(location->location(), x, y, z, w); x 3903 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::uniform4i(const WebGLUniformLocation* location, GLint x, GLint y, GLint z, GLint w) x 3913 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->uniform4i(location->location(), x, y, z, w); x 4119 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::viewport(GLint x, GLint y, GLsizei width, GLsizei height) x 4125 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->viewport(x, y, width, height); x 4472 Source/core/html/canvas/WebGLRenderingContextBase.cpp bool WebGLRenderingContextBase::validateSize(const char* functionName, GLint x, GLint y) x 4474 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (x < 0 || y < 0) { x 142 Source/core/html/canvas/WebGLRenderingContextBase.h void copyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); x 143 Source/core/html/canvas/WebGLRenderingContextBase.h void copyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); x 220 Source/core/html/canvas/WebGLRenderingContextBase.h void readPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, ArrayBufferView* pixels); x 223 Source/core/html/canvas/WebGLRenderingContextBase.h void scissor(GLint x, GLint y, GLsizei width, GLsizei height); x 259 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform1f(const WebGLUniformLocation*, GLfloat x); x 262 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform1i(const WebGLUniformLocation*, GLint x); x 265 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform2f(const WebGLUniformLocation*, GLfloat x, GLfloat y); x 268 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform2i(const WebGLUniformLocation*, GLint x, GLint y); x 271 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform3f(const WebGLUniformLocation*, GLfloat x, GLfloat y, GLfloat z); x 274 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform3i(const WebGLUniformLocation*, GLint x, GLint y, GLint z); x 277 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform4f(const WebGLUniformLocation*, GLfloat x, GLfloat y, GLfloat z, GLfloat w); x 280 Source/core/html/canvas/WebGLRenderingContextBase.h void uniform4i(const WebGLUniformLocation*, GLint x, GLint y, GLint z, GLint w); x 293 Source/core/html/canvas/WebGLRenderingContextBase.h void vertexAttrib1f(GLuint index, GLfloat x); x 296 Source/core/html/canvas/WebGLRenderingContextBase.h void vertexAttrib2f(GLuint index, GLfloat x, GLfloat y); x 299 Source/core/html/canvas/WebGLRenderingContextBase.h void vertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z); x 302 Source/core/html/canvas/WebGLRenderingContextBase.h void vertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); x 310 Source/core/html/canvas/WebGLRenderingContextBase.h void viewport(GLint x, GLint y, GLsizei width, GLsizei height); x 703 Source/core/html/canvas/WebGLRenderingContextBase.h bool validateSize(const char* functionName, GLint x, GLint y); x 303 Source/core/html/canvas/WebGLTexture.cpp GLsizei x = (value >> shift); x 304 Source/core/html/canvas/WebGLTexture.cpp if (x) { x 305 Source/core/html/canvas/WebGLTexture.cpp value = x; x 69 Source/core/html/forms/ImageInputType.cpp encoding.appendData("x", m_clickLocation.x()); x 76 Source/core/html/forms/ImageInputType.cpp encoding.appendData(name + dotXString, m_clickLocation.x()); x 87 Source/core/html/forms/ImageInputType.cpp result.appendNumber(m_clickLocation.x()); x 178 Source/core/html/shadow/SliderThumbElement.cpp thumbLocation.setX(thumbLocation.x() + offset); x 180 Source/core/html/shadow/SliderThumbElement.cpp thumbLocation.setX(thumbLocation.x() - offset); x 277 Source/core/html/shadow/SliderThumbElement.cpp position = offset.x() - renderBox()->width() / 2 - trackBoundingBox.x() + inputBoundingBox.x(); x 279 Source/core/html/shadow/SliderThumbElement.cpp currentPosition = absoluteThumbOrigin.x() - absoluteSliderContentOrigin.x(); x 419 Source/core/html/track/vtt/VTTRegion.cpp double leftOffset = m_regionAnchor.x() * m_width / 100; x 421 Source/core/html/track/vtt/VTTRegion.cpp m_viewportAnchor.x() - leftOffset, x 69 Source/core/html/track/vtt/VTTRegion.h double regionAnchorX() const { return m_regionAnchor.x(); } x 75 Source/core/html/track/vtt/VTTRegion.h double viewportAnchorX() const { return m_viewportAnchor.x(); } x 1229 Source/core/inspector/InspectorDOMAgent.cpp void InspectorDOMAgent::highlightRect(ErrorString*, int x, int y, int width, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) x 1231 Source/core/inspector/InspectorDOMAgent.cpp OwnPtr<FloatQuad> quad = adoptPtr(new FloatQuad(FloatRect(x, y, width, height))); x 1382 Source/core/inspector/InspectorDOMAgent.cpp array->addItem(quad.p1().x()); x 1384 Source/core/inspector/InspectorDOMAgent.cpp array->addItem(quad.p2().x()); x 1386 Source/core/inspector/InspectorDOMAgent.cpp array->addItem(quad.p3().x()); x 1388 Source/core/inspector/InspectorDOMAgent.cpp array->addItem(quad.p4().x()); x 1422 Source/core/inspector/InspectorDOMAgent.cpp void InspectorDOMAgent::getNodeForLocation(ErrorString* errorString, int x, int y, int* nodeId) x 1427 Source/core/inspector/InspectorDOMAgent.cpp Node* node = hoveredNodeForPoint(m_document->frame(), IntPoint(x, y), false); x 140 Source/core/inspector/InspectorDOMAgent.h virtual void highlightRect(ErrorString*, int x, int y, int width, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) OVERRIDE; x 152 Source/core/inspector/InspectorDOMAgent.h virtual void getNodeForLocation(ErrorString*, int x, int y, int* nodeId) OVERRIDE; x 134 Source/core/inspector/InspectorInputAgent.cpp void InspectorInputAgent::dispatchMouseEvent(ErrorString* error, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount, const bool* deviceSpace) x 171 Source/core/inspector/InspectorInputAgent.cpp ConvertInspectorPoint(m_page, IntPoint(x, y), &convertedPoint, &globalPoint); x 211 Source/core/inspector/InspectorInputAgent.cpp int x, y, radiusX, radiusY, id; x 218 Source/core/inspector/InspectorInputAgent.cpp if (!pointObj->getNumber("x", &x)) { x 265 Source/core/inspector/InspectorInputAgent.cpp ConvertInspectorPoint(m_page, IntPoint(x, y), &convertedPoint, &globalPoint); x 57 Source/core/inspector/InspectorInputAgent.h virtual void dispatchMouseEvent(ErrorString*, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount, const bool* deviceSpace) OVERRIDE; x 83 Source/core/inspector/InspectorLayerTreeAgent.cpp .setX(rect.x) x 104 Source/core/inspector/InspectorLayerTreeAgent.cpp blink::WebRect webRect(webLayer->position().x, webLayer->position().y, webLayer->bounds().width, webLayer->bounds().height); x 115 Source/core/inspector/InspectorLayerTreeAgent.cpp .setOffsetX(webLayer->position().x) x 140 Source/core/inspector/InspectorLayerTreeAgent.cpp layerObject->setAnchorX(anchor.x()); x 206 Source/core/inspector/InspectorLayerTreeAgent.cpp .setX(rect.x()) x 175 Source/core/inspector/InspectorOverlay.cpp paddingBox = LayoutRect(contentBox.x() - renderBox->paddingLeft(), contentBox.y() - renderBox->paddingTop(), x 177 Source/core/inspector/InspectorOverlay.cpp borderBox = LayoutRect(paddingBox.x() - renderBox->borderLeft(), paddingBox.y() - renderBox->borderTop(), x 179 Source/core/inspector/InspectorOverlay.cpp marginBox = LayoutRect(borderBox.x() - renderBox->marginLeft(), borderBox.y() - renderBox->marginTop(), x 186 Source/core/inspector/InspectorOverlay.cpp paddingBox = LayoutRect(borderBox.x() + renderInline->borderLeft(), borderBox.y() + renderInline->borderTop(), x 188 Source/core/inspector/InspectorOverlay.cpp contentBox = LayoutRect(paddingBox.x() + renderInline->paddingLeft(), paddingBox.y() + renderInline->paddingTop(), x 191 Source/core/inspector/InspectorOverlay.cpp marginBox = LayoutRect(borderBox.x() - renderInline->marginLeft(), borderBox.y(), x 422 Source/core/inspector/InspectorOverlay.cpp reset(size, m_size.isEmpty() ? IntSize() : frameViewFullSize, viewRect.x(), viewRect.y()); x 454 Source/core/inspector/InspectorOverlay.cpp object->setNumber("x", point.x()); x 246 Source/core/inspector/TimelineRecordFactory.cpp array->pushNumber(quad.p1().x()); x 248 Source/core/inspector/TimelineRecordFactory.cpp array->pushNumber(quad.p2().x()); x 250 Source/core/inspector/TimelineRecordFactory.cpp array->pushNumber(quad.p3().x()); x 252 Source/core/inspector/TimelineRecordFactory.cpp array->pushNumber(quad.p4().x()); x 268 Source/core/page/AutoscrollController.cpp bool east = m_panScrollStartPos.x() < (lastKnownMousePosition.x() - ScrollView::noPanScrollRadius); x 269 Source/core/page/AutoscrollController.cpp bool west = m_panScrollStartPos.x() > (lastKnownMousePosition.x() + ScrollView::noPanScrollRadius); x 97 Source/core/page/CreateWindow.cpp windowRect.setX(features.x); x 317 Source/core/page/DragController.cpp LayoutPoint point = roundedLayoutPoint(FloatPoint(p.x() * zoomFactor, p.y() * zoomFactor)); x 777 Source/core/page/DragController.cpp return IntPoint(mouseDraggedPoint.x() - dragImageOffset.x(), mouseDraggedPoint.y() + yOffset); x 779 Source/core/page/DragController.cpp return IntPoint(dragOrigin.x() - dragImageOffset.x(), dragOrigin.y() + yOffset); x 786 Source/core/page/DragController.cpp xpos = draggingRect.x() < xpos ? draggingRect.x() : xpos; x 819 Source/core/page/DragController.cpp float dx = origin.x() - dragOrigin.x(); x 839 Source/core/page/DragController.cpp dragLoc = IntPoint(mouseDraggedPoint.x() + dragImageOffset.x(), mouseDraggedPoint.y() + dragImageOffset.y()); x 1754 Source/core/page/EventHandler.cpp 0, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), x 1755 Source/core/page/EventHandler.cpp event.movementDelta().x(), event.movementDelta().y(), x 2656 Source/core/page/EventHandler.cpp IntPoint point(gestureEvent.position().x(), gestureEvent.position().y()); x 2657 Source/core/page/EventHandler.cpp IntPoint globalPoint(gestureEvent.globalPosition().x(), gestureEvent.globalPosition().y()); x 2842 Source/core/page/EventHandler.cpp int x = rightAligned ? firstRect.maxX() : firstRect.x(); x 2845 Source/core/page/EventHandler.cpp location = IntPoint(x, y); x 2851 Source/core/page/EventHandler.cpp location = IntPoint(clippedRect.x(), clippedRect.maxY() - 1); x 3219 Source/core/page/EventHandler.cpp FloatPoint dragViewportLocation(floatDragViewportLocation.x(), floatDragViewportLocation.y()); x 3726 Source/core/page/EventHandler.cpp int adjustedPageX = lroundf(pagePoint.x() / scaleFactor); x 3732 Source/core/page/EventHandler.cpp point.screenPos().x(), point.screenPos().y(), x 3873 Source/core/page/EventHandler.cpp int dx = m_lastSyntheticPanLocation ? position.x() - m_lastSyntheticPanLocation->x() : 0; x 760 Source/core/page/FocusController.cpp LayoutUnit x = intersectionRect.x() + intersectionRect.width() / 2; x 762 Source/core/page/FocusController.cpp HitTestResult result = candidate.visibleNode->document().page()->mainFrame()->eventHandler().hitTestResultAtPoint(IntPoint(x, y), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::ConfusingAndOftenMisusedDisallowShadowContent); x 105 Source/core/page/PagePopupClient.cpp addProperty("x", rect.x(), data); x 123 Source/core/page/PrintContext.cpp inlineDirectionStart = view->style()->isLeftToRightDirection() ? docRect.x() : docRect.maxX(); x 124 Source/core/page/PrintContext.cpp inlineDirectionEnd = view->style()->isLeftToRightDirection() ? docRect.maxX() : docRect.x(); x 128 Source/core/page/PrintContext.cpp blockDirectionEnd = docRect.x(); x 130 Source/core/page/PrintContext.cpp blockDirectionStart = docRect.x(); x 200 Source/core/page/PrintContext.cpp ctx.translate(-pageRect.x(), -pageRect.y()); x 212 Source/core/page/PrintContext.cpp ctx.translate(-rect.x(), -rect.y()); x 260 Source/core/page/PrintContext.cpp if (page.x() <= left && left < page.maxX() && page.y() <= top && top < page.maxY()) x 119 Source/core/page/SpatialNavigation.cpp return isHorizontalMove(type) ? rect.y() : rect.x(); x 125 Source/core/page/SpatialNavigation.cpp return isHorizontalMove(type) ? center.y(): center.x(); x 146 Source/core/page/SpatialNavigation.cpp aStart = a.x(); x 150 Source/core/page/SpatialNavigation.cpp aStart = b.x(); x 246 Source/core/page/SpatialNavigation.cpp return curRect.x() - targetRect.maxX() > viewSize.width(); x 248 Source/core/page/SpatialNavigation.cpp return targetRect.x() - curRect.maxX() > viewSize.width(); x 268 Source/core/page/SpatialNavigation.cpp return a.x() > b.maxX(); x 275 Source/core/page/SpatialNavigation.cpp return targetRect.maxX() <= curRect.x(); x 277 Source/core/page/SpatialNavigation.cpp return targetRect.x() >= curRect.maxX(); x 309 Source/core/page/SpatialNavigation.cpp containerViewportRect.setX(containerViewportRect.x() - ScrollableArea::pixelsPerLineStep()); x 546 Source/core/page/SpatialNavigation.cpp exitPoint.setX(startingRect.x()); x 555 Source/core/page/SpatialNavigation.cpp entryPoint.setX(potentialRect.x()); x 582 Source/core/page/SpatialNavigation.cpp exitPoint.setX(startingRect.x()); x 586 Source/core/page/SpatialNavigation.cpp entryPoint.setX(potentialRect.x()); x 588 Source/core/page/SpatialNavigation.cpp exitPoint.setX(max(startingRect.x(), potentialRect.x())); x 589 Source/core/page/SpatialNavigation.cpp entryPoint.setX(exitPoint.x()); x 645 Source/core/page/SpatialNavigation.cpp sameAxisDistance = exitPoint.x() - entryPoint.x(); x 650 Source/core/page/SpatialNavigation.cpp otherAxisDistance = absoluteValue(exitPoint.x() - entryPoint.x()); x 653 Source/core/page/SpatialNavigation.cpp sameAxisDistance = entryPoint.x() - exitPoint.x(); x 658 Source/core/page/SpatialNavigation.cpp otherAxisDistance = absoluteValue(entryPoint.x() - exitPoint.x()); x 665 Source/core/page/SpatialNavigation.cpp float x = ((entryPoint.x() - exitPoint.x()) * (entryPoint.x() - exitPoint.x())).toFloat(); x 668 Source/core/page/SpatialNavigation.cpp float euclidianDistance = sqrt(x + y); x 365 Source/core/page/TouchAdjustment.cpp int x = static_cast<int>(pt.x() + 0.5f); x 367 Source/core/page/TouchAdjustment.cpp IntPoint adjusted = view->contentsToWindow(IntPoint(x, y)); x 368 Source/core/page/TouchAdjustment.cpp return FloatPoint(adjusted.x(), adjusted.y()); x 374 Source/core/page/TouchAdjustment.cpp if (point.x() < rect.x()) x 375 Source/core/page/TouchAdjustment.cpp point.setX(rect.x()); x 376 Source/core/page/TouchAdjustment.cpp else if (point.x() > rect.maxX()) x 137 Source/core/page/WindowFeatures.cpp x = value; x 188 Source/core/page/WindowFeatures.cpp x = floatFeature(features, "dialogleft", screenAvailableRect.x(), screenAvailableRect.maxX() - width, -1); x 189 Source/core/page/WindowFeatures.cpp xSet = x > 0; x 195 Source/core/page/WindowFeatures.cpp x = screenAvailableRect.x() + (screenAvailableRect.width() - width) / 2; x 58 Source/core/page/WindowFeatures.h float x; x 36 Source/core/page/scrolling/ScrollingConstraints.cpp offset.setWidth(viewportRect.x() - m_viewportRectAtLastLayout.x()); x 55 Source/core/page/scrolling/ScrollingConstraints.cpp float availableSpace = std::min<float>(0, m_absoluteContainingBlockRect.x() - m_absoluteStickyBoxRect.x()); x 63 Source/core/page/scrolling/ScrollingConstraints.cpp float leftLimit = viewportRect.x() + m_leftOffset; x 64 Source/core/page/scrolling/ScrollingConstraints.cpp float leftDelta = std::max<float>(0, leftLimit - m_absoluteStickyBoxRect.x()); x 70 Source/core/rendering/ClipRect.h void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); } x 50 Source/core/rendering/EllipsisBox.cpp FloatPoint textOrigin = FloatPoint(boxOrigin.x(), boxOrigin.y() + font.fontMetrics().ascent()); x 72 Source/core/rendering/EllipsisBox.cpp float shadowX = isHorizontal() ? shadow.x() : shadow.y(); x 73 Source/core/rendering/EllipsisBox.cpp float shadowY = isHorizontal() ? shadow.y() : -shadow.x(); x 123 Source/core/rendering/EllipsisBox.cpp adjustedPaintOffset.move(x() + m_logicalWidth - markupBox->x(), x 152 Source/core/rendering/EllipsisBox.cpp const FloatPoint localOrigin(boxOrigin.x(), boxOrigin.y() - deltaY); x 166 Source/core/rendering/EllipsisBox.cpp LayoutUnit mtx = adjustedLocation.x() + m_logicalWidth - markupBox->x(); x 33 Source/core/rendering/EllipsisBox.h int width, int height, int x, int y, bool firstLine, bool isVertical, InlineBox* markupBox) x 34 Source/core/rendering/EllipsisBox.h : InlineBox(obj, FloatPoint(x, y), width, firstLine, true, false, false, isVertical, 0, 0, parent) x 228 Source/core/rendering/FilterEffectRenderer.cpp float x = dropShadowOperation->x() * invZoom; x 230 Source/core/rendering/FilterEffectRenderer.cpp effect = FEDropShadow::create(this, stdDeviation, stdDeviation, x, y, dropShadowOperation->color(), 1); x 331 Source/core/rendering/FilterEffectRenderer.cpp absoluteTransform.translate(filterBoxRect.x().toDouble(), filterBoxRect.y().toDouble()); x 381 Source/core/rendering/FilterEffectRenderer.cpp sourceGraphicsContext->translate(-offset.x(), -offset.y()); x 64 Source/core/rendering/FloatingObjects.h LayoutUnit x() const { ASSERT(isPlaced()); return m_frameRect.x(); } x 71 Source/core/rendering/FloatingObjects.h void setX(LayoutUnit x) { ASSERT(!isInPlacedTree()); m_frameRect.setX(x); } x 67 Source/core/rendering/HitTestLocation.h int rightPadding() const { return m_boundingBox.maxX() - roundedPoint().x() - 1; } x 69 Source/core/rendering/HitTestLocation.h int leftPadding() const { return roundedPoint().x() - m_boundingBox.x(); } x 34 Source/core/rendering/HitTestingTransformState.cpp void HitTestingTransformState::translate(int x, int y, TransformAccumulation accumulate) x 36 Source/core/rendering/HitTestingTransformState.cpp m_accumulatedTransform.translate(x, y); x 56 Source/core/rendering/HitTestingTransformState.h void translate(int x, int y, TransformAccumulation); x 114 Source/core/rendering/InlineBox.cpp renderer().renderName(), &renderer(), x(), y(), width(), height(), x 319 Source/core/rendering/InlineBox.cpp return FloatPoint(x(), y()); x 322 Source/core/rendering/InlineBox.cpp return FloatPoint(x(), block.height() - height() - y()); x 324 Source/core/rendering/InlineBox.cpp return FloatPoint(block.width() - width() - x(), y()); x 190 Source/core/rendering/InlineBox.h void setX(float x) { m_topLeft.setX(x); } x 191 Source/core/rendering/InlineBox.h float x() const { return m_topLeft.x(); } x 192 Source/core/rendering/InlineBox.h float left() const { return m_topLeft.x(); } x 208 Source/core/rendering/InlineBox.h float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); } x 223 Source/core/rendering/InlineBox.h float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); } x 240 Source/core/rendering/InlineBox.h FloatRect logicalFrameRect() const { return isHorizontal() ? FloatRect(m_topLeft.x(), m_topLeft.y(), m_logicalWidth, logicalHeight()) : FloatRect(m_topLeft.y(), m_topLeft.x(), m_logicalWidth, logicalHeight()); } x 76 Source/core/rendering/InlineFlowBox.cpp int snappedX = lroundf(x()); x 79 Source/core/rendering/InlineFlowBox.cpp int snappedMaxX = lroundf(x() + width()); x 793 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(pixelSnappedLogicalLeft() + boxShadowLogicalLeft, logicalVisualOverflow.x()); x 828 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(pixelSnappedLogicalLeft() - outsetLogicalLeft, logicalVisualOverflow.x()); x 899 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalLeftVisualOverflow = min(textBox->pixelSnappedLogicalLeft() + childOverflowLogicalLeft, logicalVisualOverflow.x()); x 1058 Source/core/rendering/InlineFlowBox.cpp LayoutUnit minX = frameRect.x(); x 1183 Source/core/rendering/InlineFlowBox.cpp paintInfo.context->clip(LayoutRect(rect.x(), rect.y(), width(), height())); x 1207 Source/core/rendering/InlineFlowBox.cpp LayoutUnit stripX = rect.x() - (isHorizontal() ? logicalOffsetOnLine : LayoutUnit()); x 1213 Source/core/rendering/InlineFlowBox.cpp paintInfo.context->clip(LayoutRect(rect.x(), rect.y(), width(), height())); x 1234 Source/core/rendering/InlineFlowBox.cpp LayoutUnit logicalTop = isHorizontal() ? rect.y() : rect.x(); x 1258 Source/core/rendering/InlineFlowBox.cpp clipRect.setX(paintRect.x() - outsets.left()); x 1264 Source/core/rendering/InlineFlowBox.cpp clipRect.setX(paintRect.x() - outsets.left()); x 1334 Source/core/rendering/InlineFlowBox.cpp LayoutUnit stripX = adjustedPaintoffset.x() - (isHorizontal() ? logicalOffsetOnLine : LayoutUnit()); x 1406 Source/core/rendering/InlineFlowBox.cpp LayoutUnit stripX = adjustedPaintOffset.x() - (isHorizontal() ? logicalOffsetOnLine : LayoutUnit()); x 224 Source/core/rendering/InlineFlowBox.h return m_overflow ? (isHorizontal() ? m_overflow->layoutOverflowRect().x() : m_overflow->layoutOverflowRect().y()) : x 235 Source/core/rendering/InlineFlowBox.h return isHorizontal() ? m_overflow->layoutOverflowRect().y() : m_overflow->layoutOverflowRect().x(); x 256 Source/core/rendering/InlineFlowBox.h LayoutUnit logicalLeftVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().x() : m_overflow->visualOverflowRect().y()) : static_cast<LayoutUnit>(logicalLeft()); } x 261 Source/core/rendering/InlineFlowBox.h return isHorizontal() ? m_overflow->visualOverflowRect().y() : m_overflow->visualOverflowRect().x(); x 283 Source/core/rendering/InlineFlowBox.h return FloatRect(m_topLeft.x(), lineTop.toFloat(), width(), (lineBottom - lineTop).toFloat()); x 222 Source/core/rendering/InlineTextBox.cpp if (r.x() > logicalRight()) x 225 Source/core/rendering/InlineTextBox.cpp logicalWidth = logicalRight() - r.x(); x 227 Source/core/rendering/InlineTextBox.cpp LayoutPoint topPoint = isHorizontal() ? LayoutPoint(r.x(), selTop) : LayoutPoint(selTop, r.x()); x 402 Source/core/rendering/InlineTextBox.cpp float shadowX = horizontal ? shadow.x() : shadow.y(); x 403 Source/core/rendering/InlineTextBox.cpp float shadowY = horizontal ? shadow.y() : -shadow.x(); x 477 Source/core/rendering/InlineTextBox.cpp LayoutUnit logicalStart = logicalLeftSide + (isHorizontal() ? paintOffset.x() : paintOffset.y()); x 481 Source/core/rendering/InlineTextBox.cpp LayoutUnit paintStart = isHorizontal() ? paintInfo.rect.x() : paintInfo.rect.y(); x 523 Source/core/rendering/InlineTextBox.cpp boxOrigin.move(adjustedPaintOffset.x().toFloat(), adjustedPaintOffset.y().toFloat()); x 629 Source/core/rendering/InlineTextBox.cpp FloatPoint textOrigin = FloatPoint(boxOrigin.x(), boxOrigin.y() + font.fontMetrics().ascent()); x 705 Source/core/rendering/InlineTextBox.cpp FloatPoint emphasisMarkTextOrigin = combinedText ? FloatPoint(boxOrigin.x() + boxRect.width() / 2, boxOrigin.y() + font.fontMetrics().ascent()) : textOrigin; x 739 Source/core/rendering/InlineTextBox.cpp FloatPoint emphasisMarkTextOrigin = combinedText ? FloatPoint(boxOrigin.x() + boxRect.width() / 2, boxOrigin.y() + font.fontMetrics().ascent()) : textOrigin; x 818 Source/core/rendering/InlineTextBox.cpp rect.setX(floorf(rect.x())); x 819 Source/core/rendering/InlineTextBox.cpp rect.setWidth(roundf(maxX - rect.x())); x 865 Source/core/rendering/InlineTextBox.cpp FloatPoint localOrigin(boxOrigin.x(), boxOrigin.y() - deltaY); x 891 Source/core/rendering/InlineTextBox.cpp FloatPoint localOrigin(boxOrigin.x(), boxOrigin.y() - deltaY); x 1006 Source/core/rendering/InlineTextBox.cpp bool isVerticalLine = (p1.x() == p2.x()); x 1009 Source/core/rendering/InlineTextBox.cpp ASSERT(p1.x() == p2.x()); x 1011 Source/core/rendering/InlineTextBox.cpp float xAxis = p1.x(); x 1040 Source/core/rendering/InlineTextBox.cpp if (p1.x() < p2.x()) { x 1041 Source/core/rendering/InlineTextBox.cpp x1 = p1.x(); x 1042 Source/core/rendering/InlineTextBox.cpp x2 = p2.x(); x 1044 Source/core/rendering/InlineTextBox.cpp x1 = p2.x(); x 1045 Source/core/rendering/InlineTextBox.cpp x2 = p1.x(); x 1052 Source/core/rendering/InlineTextBox.cpp for (float x = x1; x + 2 * step <= x2;) { x 1053 Source/core/rendering/InlineTextBox.cpp controlPoint1.setX(x + step); x 1054 Source/core/rendering/InlineTextBox.cpp controlPoint2.setX(x + step); x 1055 Source/core/rendering/InlineTextBox.cpp x += 2 * step; x 1056 Source/core/rendering/InlineTextBox.cpp path.addBezierCurveTo(controlPoint1, controlPoint2, FloatPoint(x, yAxis)); x 1149 Source/core/rendering/InlineTextBox.cpp float shadowX = isHorizontal() ? s.x() : s.y(); x 1150 Source/core/rendering/InlineTextBox.cpp float shadowY = isHorizontal() ? s.y() : -s.x(); x 1169 Source/core/rendering/InlineTextBox.cpp float shadowX = isHorizontal() ? shadow.x() : shadow.y(); x 1170 Source/core/rendering/InlineTextBox.cpp float shadowY = isHorizontal() ? shadow.y() : -shadow.x(); x 1235 Source/core/rendering/InlineTextBox.cpp FloatPoint startPoint(boxOrigin.x(), boxOrigin.y() - deltaY); x 1240 Source/core/rendering/InlineTextBox.cpp start = markerRect.x() - startPoint.x(); x 1246 Source/core/rendering/InlineTextBox.cpp markerRect.move(-boxOrigin.x(), -boxOrigin.y()); x 1269 Source/core/rendering/InlineTextBox.cpp pt->drawLineForDocumentMarker(FloatPoint(boxOrigin.x() + start, boxOrigin.y() + underlineOffset), width, lineStyleForMarkerType(marker->type())); x 1284 Source/core/rendering/InlineTextBox.cpp IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, IntPoint(x(), selectionTop()), selHeight, sPos, ePos)); x 1295 Source/core/rendering/InlineTextBox.cpp pt->clip(FloatRect(boxOrigin.x(), boxOrigin.y() - deltaY, m_logicalWidth, selHeight)); x 1296 Source/core/rendering/InlineTextBox.cpp pt->drawHighlightForText(font, run, FloatPoint(boxOrigin.x(), boxOrigin.y() - deltaY), selHeight, color, sPos, ePos); x 1397 Source/core/rendering/InlineTextBox.cpp ctx->drawLineForText(FloatPoint(boxOrigin.x() + start, boxOrigin.y() + logicalHeight() - lineThickness), width, textRenderer().document().printing()); x 93 Source/core/rendering/InlineTextBox.h LayoutUnit logicalLeftVisualOverflow() const { return logicalOverflowRect().x(); } x 114 Source/core/rendering/InlineTextBox.h virtual FloatRect calculateBoundaries() const OVERRIDE { return FloatRect(x(), y(), width(), height()); } x 160 Source/core/rendering/InlineTextBox.h virtual int offsetForPosition(float x, bool includePartialGlyphs = true) const; x 209 Source/core/rendering/InlineTextBox.h return rotationDirection == Clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - boxRect.x()) x 210 Source/core/rendering/InlineTextBox.h : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect.maxY()); x 49 Source/core/rendering/LayoutState.cpp m_paintOffset = LayoutSize(fixedOffset.x(), fixedOffset.y()) + offset; x 139 Source/core/rendering/LayoutState.cpp m_paintOffset = LayoutSize(absContentPoint.x(), absContentPoint.y()); x 1362 Source/core/rendering/RenderBlock.cpp LayoutSize result = isHorizontalWritingMode() ? LayoutSize(blockRect.x(), blockRect.y()) : LayoutSize(blockRect.y(), blockRect.x()); x 1426 Source/core/rendering/RenderBlock.cpp rectToApply = LayoutRect(clientRect.x(), clientRect.y(), 1, max<LayoutUnit>(0, oldClientAfterEdge - clientRect.y())); x 1428 Source/core/rendering/RenderBlock.cpp rectToApply = LayoutRect(clientRect.x(), clientRect.y(), max<LayoutUnit>(0, oldClientAfterEdge - clientRect.x()), 1); x 1460 Source/core/rendering/RenderBlock.cpp addOverflowFromChild(positionedObject, LayoutSize(positionedObject->x(), positionedObject->y())); x 1805 Source/core/rendering/RenderBlock.cpp LayoutUnit ruleLeft = isHorizontalWritingMode() ? paintOffset.x() + ruleLogicalLeft - ruleThickness / 2 + ruleAdd : paintOffset.x() + borderLeft() + paddingLeft(); x 1810 Source/core/rendering/RenderBlock.cpp drawLineForBoxSide(paintInfo.context, pixelSnappedRuleRect.x(), pixelSnappedRuleRect.y(), pixelSnappedRuleRect.maxX(), pixelSnappedRuleRect.maxY(), boxSide, ruleColor, ruleStyle, 0, 0, antialias); x 1847 Source/core/rendering/RenderBlock.cpp drawLineForBoxSide(paintInfo.context, pixelSnappedRuleRect.x(), pixelSnappedRuleRect.y(), pixelSnappedRuleRect.maxX(), pixelSnappedRuleRect.maxY(), boxSide, ruleColor, ruleStyle, 0, 0, antialias); x 1866 Source/core/rendering/RenderBlock.cpp LayoutUnit logicalLeftOffset = (isHorizontalWritingMode() ? colRect.x() : colRect.y()) - logicalLeftOffsetForContent(); x 1872 Source/core/rendering/RenderBlock.cpp offset.expand(colRect.x() - borderLeft() - paddingLeft(), 0); x 2256 Source/core/rendering/RenderBlock.cpp paintInfo->context->clipOut(IntRect(offset.x() + r->x(), offset.y() + r->y(), r->width(), r->height())); x 2276 Source/core/rendering/RenderBlock.cpp result = LayoutRect(logicalRect.y(), logicalRect.x(), logicalRect.height(), logicalRect.width()); x 2295 Source/core/rendering/RenderBlock.cpp clipOutPositionedObjects(paintInfo, LayoutPoint(cb->x(), cb->y()), cb->positionedObjects()); // FIXME: Not right for flipped writing modes. x 2381 Source/core/rendering/RenderBlock.cpp result.unite(toRenderBlock(curr)->selectionGaps(rootBlock, rootBlockPhysicalPosition, LayoutSize(offsetFromRootBlock.width() + curr->x(), offsetFromRootBlock.height() + curr->y()), x 2840 Source/core/rendering/RenderBlock.cpp LayoutUnit currLogicalLeftOffset = (m_isHorizontal ? m_colRect.x() : m_colRect.y()) - m_logicalLeft; x 2846 Source/core/rendering/RenderBlock.cpp offset.expand(m_colRect.x() - m_block.borderLeft() - m_block.paddingLeft(), 0); x 2981 Source/core/rendering/RenderBlock.cpp LayoutUnit logicalLeft = parent->isHorizontalWritingMode() ? pointInChildCoordinates.x() : pointInChildCoordinates.y(); x 3024 Source/core/rendering/RenderBlock.cpp closestBox = root->closestLeafChildForLogicalLeftPosition(pointInLogicalContents.x()); x 3034 Source/core/rendering/RenderBlock.cpp closestBox = lastRootBoxWithChildren->closestLeafChildForLogicalLeftPosition(pointInLogicalContents.x()); x 3053 Source/core/rendering/RenderBlock.cpp LayoutPoint point(pointInLogicalContents.x(), closestBox->root().blockDirectionPointInLine()); x 3087 Source/core/rendering/RenderBlock.cpp LayoutUnit pointLogicalLeft = isHorizontalWritingMode() ? point.x() : point.y(); x 3088 Source/core/rendering/RenderBlock.cpp LayoutUnit pointLogicalTop = isHorizontalWritingMode() ? point.y() : point.x(); x 3303 Source/core/rendering/RenderBlock.cpp LayoutRect gapAndColumnRect(colRect.x() - halfColGap, colRect.y(), colRect.width() + colGap, colRect.height()); x 3304 Source/core/rendering/RenderBlock.cpp if (point.x() >= gapAndColumnRect.x() && point.x() < gapAndColumnRect.maxX()) { x 3318 Source/core/rendering/RenderBlock.cpp if (point.x() < colRect.x()) x 3319 Source/core/rendering/RenderBlock.cpp point.setX(colRect.x()); x 3320 Source/core/rendering/RenderBlock.cpp else if (point.x() >= colRect.maxX()) x 3326 Source/core/rendering/RenderBlock.cpp point.move(columnPoint.x() - colRect.x(), (!style()->isFlippedBlocksWritingMode() ? logicalOffset : -logicalOffset)); x 3328 Source/core/rendering/RenderBlock.cpp point.move((!style()->isFlippedBlocksWritingMode() ? logicalOffset : -logicalOffset) - colRect.x() + borderLeft() + paddingLeft(), 0); x 3335 Source/core/rendering/RenderBlock.cpp LayoutRect gapAndColumnRect(colRect.x(), colRect.y() - halfColGap, colRect.width(), colRect.height() + colGap); x 3341 Source/core/rendering/RenderBlock.cpp if (point.x() < gapAndColumnRect.x()) x 3345 Source/core/rendering/RenderBlock.cpp else if (point.x() >= gapAndColumnRect.maxX()) { x 3392 Source/core/rendering/RenderBlock.cpp LayoutUnit startOffset = max(isHorizontal ? r.y() : r.x(), beforeBorderPadding); x 3408 Source/core/rendering/RenderBlock.cpp repaintRect.move(colRect.x() - logicalLeftOffset, - static_cast<int>(startColumn) * colHeight); x 3415 Source/core/rendering/RenderBlock.cpp repaintRect.move(colRect.x() - startColumn * colHeight - beforeBorderPadding, 0); x 3438 Source/core/rendering/RenderBlock.cpp return LayoutPoint(point.x(), expandedLogicalHeight - point.y()); x 3439 Source/core/rendering/RenderBlock.cpp return LayoutPoint(expandedLogicalHeight - point.x(), point.y()); x 3482 Source/core/rendering/RenderBlock.cpp offset.expand(columnRectAt(colInfo, i).x() - logicalLeft, -logicalOffset); x 3488 Source/core/rendering/RenderBlock.cpp if (point.x() >= sliceRect.x() && point.x() < sliceRect.maxX()) { x 3492 Source/core/rendering/RenderBlock.cpp offset.expand(columnRectAt(colInfo, i).x() - logicalOffset - borderBefore() - paddingBefore(), 0); x 4353 Source/core/rendering/RenderBlock.cpp void RenderBlock::adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const x 4361 Source/core/rendering/RenderBlock.cpp left = min(left, x + static_cast<LayoutUnit>(box->firstChild()->x())); x 4363 Source/core/rendering/RenderBlock.cpp right = max(right, x + static_cast<LayoutUnit>(ceilf(box->lastChild()->logicalRight()))); x 4369 Source/core/rendering/RenderBlock.cpp toRenderBlock(obj)->adjustForBorderFit(x + obj->x(), left, right); x 4372 Source/core/rendering/RenderBlock.cpp left = min(left, x + obj->x()); x 4373 Source/core/rendering/RenderBlock.cpp right = max(right, x + obj->x() + obj->width()); x 4489 Source/core/rendering/RenderBlock.cpp rects.append(pixelSnappedIntRect(accumulatedOffset.x(), accumulatedOffset.y() - collapsedMarginBefore(), x 4580 Source/core/rendering/RenderBlock.cpp LayoutUnit containerRight = containingBlock()->x() + containingBlockLogicalWidthForContent(); x 4583 Source/core/rendering/RenderBlock.cpp *extraWidthToEndOfLine = absContainerPoint.x() - absRightPoint.x(); x 4604 Source/core/rendering/RenderBlock.cpp LayoutRect rect(additionalOffset.x(), additionalOffset.y() - topMargin, width(), height() + topMargin + bottomMargin); x 4614 Source/core/rendering/RenderBlock.cpp LayoutRect rect(additionalOffset.x() + curr->x(), additionalOffset.y() + top, curr->width(), bottom - top); x 4627 Source/core/rendering/RenderBlock.cpp pos = FloatPoint((additionalOffset.x() + box->x()).toFloat(), (additionalOffset.y() + box->y()).toFloat()); // FIXME: Snap offsets? crbug.com/350474 x 4645 Source/core/rendering/RenderBlock.cpp LayoutRect rect(layerOffset.x() + curr->x(), layerOffset.y() + top, curr->width(), bottom - top); x 237 Source/core/rendering/RenderBlock.h LayoutUnit logicalTopForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->y() : child->x(); } x 443 Source/core/rendering/RenderBlock.h virtual void adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const; // Helper function for borderFitAdjust x 482 Source/core/rendering/RenderBlockFlow.cpp view()->addLayoutDelta(LayoutSize(child->x() - logicalLeft, 0)); x 499 Source/core/rendering/RenderBlockFlow.cpp view()->addLayoutDelta(LayoutSize(child->x() - logicalTop, 0)); x 2024 Source/core/rendering/RenderBlockFlow.cpp LayoutPoint childPoint = flipFloatForWritingModeForChild(floatingObject, LayoutPoint(paintOffset.x() + xPositionForFloatIncludingMargin(floatingObject) - floatingObject->renderer()->x(), paintOffset.y() + yPositionForFloatIncludingMargin(floatingObject) - floatingObject->renderer()->y())); x 2051 Source/core/rendering/RenderBlockFlow.cpp floatBox.move(rootBlockPhysicalPosition.x(), rootBlockPhysicalPosition.y()); x 2102 Source/core/rendering/RenderBlockFlow.cpp return LayoutPoint(point.x(), point.y() + height() - child->renderer()->height() - 2 * yPositionForFloatIncludingMargin(child)); x 2103 Source/core/rendering/RenderBlockFlow.cpp return LayoutPoint(point.x() + width() - child->renderer()->width() - 2 * xPositionForFloatIncludingMargin(child), point.y()); x 2339 Source/core/rendering/RenderBlockFlow.cpp setLogicalLeftForFloat(floatingObject, floatLogicalLocation.x()); x 2341 Source/core/rendering/RenderBlockFlow.cpp setLogicalLeftForChild(childBox, floatLogicalLocation.x() + childLogicalLeftMargin); x 2370 Source/core/rendering/RenderBlockFlow.cpp setLogicalLeftForFloat(floatingObject, floatLogicalLocation.x()); x 2372 Source/core/rendering/RenderBlockFlow.cpp setLogicalLeftForChild(childBox, floatLogicalLocation.x() + childLogicalLeftMargin); x 2554 Source/core/rendering/RenderBlockFlow.cpp LayoutUnit xOffset = xPositionForFloatIncludingMargin(floatingObject) - floatingObject->renderer()->x(); x 2567 Source/core/rendering/RenderBlockFlow.cpp void RenderBlockFlow::adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const x 2569 Source/core/rendering/RenderBlockFlow.cpp RenderBlock::adjustForBorderFit(x, left, right); x 2577 Source/core/rendering/RenderBlockFlow.cpp LayoutUnit floatLeft = xPositionForFloatIncludingMargin(floatingObject) - floatingObject->renderer()->x(); x 2638 Source/core/rendering/RenderBlockFlow.cpp || (!isHorizontalWritingMode() && physicalRect.x() < paintInfo->rect.maxX() && physicalRect.maxX() > paintInfo->rect.x())) x 122 Source/core/rendering/RenderBlockFlow.h LayoutUnit logicalTopForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->y() : floatingObject->x(); } x 124 Source/core/rendering/RenderBlockFlow.h LayoutUnit logicalLeftForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->x() : floatingObject->y(); } x 250 Source/core/rendering/RenderBlockFlow.h return child->x() + child->renderer()->marginLeft(); x 252 Source/core/rendering/RenderBlockFlow.h return child->x() + marginBeforeForChild(child->renderer()); x 300 Source/core/rendering/RenderBlockFlow.h virtual void adjustForBorderFit(LayoutUnit x, LayoutUnit& left, LayoutUnit& right) const OVERRIDE; // Helper function for borderFitAdjust x 315 Source/core/rendering/RenderBlockFlow.h , rect(LayoutRect(f->x() - f->marginLeft(), f->y() - f->marginTop(), f->width() + f->marginWidth(), f->height() + f->marginHeight())) x 1239 Source/core/rendering/RenderBlockLineLayout.cpp if (!f->x() && !f->y() && f->checkForRepaint()) { x 1792 Source/core/rendering/RenderBlockLineLayout.cpp LayoutUnit floatTop = isHorizontalWritingMode() ? floats[floatIndex].rect.y() : floats[floatIndex].rect.x(); x 350 Source/core/rendering/RenderBox.cpp return snapSizeToPixel(clientWidth(), x() + clientLeft()); x 360 Source/core/rendering/RenderBox.cpp return snapSizeToPixel(offsetWidth(), x() + clientLeft()); x 397 Source/core/rendering/RenderBox.cpp return snapSizeToPixel(max(clientWidth(), layoutOverflowRect().maxX() - borderLeft()), x() + clientLeft()); x 398 Source/core/rendering/RenderBox.cpp return clientWidth() - min<LayoutUnit>(0, layoutOverflowRect().x() - borderLeft()); x 499 Source/core/rendering/RenderBox.cpp int xOffset = roundToInt(exposeRect.x()); x 510 Source/core/rendering/RenderBox.cpp newRect.setX(rect.x() - frameView->scrollX() + frameView->x()); x 583 Source/core/rendering/RenderBox.cpp rect.move(absPos.x(), absPos.y()); x 667 Source/core/rendering/RenderBox.cpp result.setX(box.x() - reflectionOffset() - box.width() + (box.maxX() - r.maxX())); x 796 Source/core/rendering/RenderBox.cpp if (windowAutoscrollPoint.x() < windowBox.x() + autoscrollBeltSize) x 798 Source/core/rendering/RenderBox.cpp else if (windowAutoscrollPoint.x() > windowBox.maxX() - autoscrollBeltSize) x 851 Source/core/rendering/RenderBox.cpp if (lastKnownMousePosition.x() < 0 || lastKnownMousePosition.y() < 0) x 1351 Source/core/rendering/RenderBox.cpp if (childLocalRect.y() < 0 || childLocalRect.x() < 0) { x 4006 Source/core/rendering/RenderBox.cpp *extraWidthToEndOfLine = x() + width() - rect.maxX(); x 4015 Source/core/rendering/RenderBox.cpp rect.setX(rect.x() + borderLeft() + paddingLeft()); x 4035 Source/core/rendering/RenderBox.cpp if (point.x() < 0 || point.x() > right || point.y() < 0 || point.y() > bottom) { x 4036 Source/core/rendering/RenderBox.cpp if (point.x() <= right / 2) x 4061 Source/core/rendering/RenderBox.cpp LayoutUnit left = renderer->borderLeft() + renderer->paddingLeft() + (isTableRow() ? LayoutUnit() : renderer->x()); x 4064 Source/core/rendering/RenderBox.cpp if (point.x() <= right && point.x() >= left && point.y() <= top && point.y() >= bottom) { x 4073 Source/core/rendering/RenderBox.cpp if (point.x() > right) { x 4080 Source/core/rendering/RenderBox.cpp } else if (point.x() < left) { x 4089 Source/core/rendering/RenderBox.cpp cmp = LayoutPoint(point.x(), top); x 4091 Source/core/rendering/RenderBox.cpp cmp = LayoutPoint(point.x(), bottom); x 4141 Source/core/rendering/RenderBox.cpp LayoutUnit overflowMinX = borderBox.x(); x 4155 Source/core/rendering/RenderBox.cpp overflowMinX = borderBox.x() + ((!isFlipped || isHorizontal) ? shadowLeft : -shadowRight); x 4167 Source/core/rendering/RenderBox.cpp overflowMinX = min(overflowMinX, borderBox.x() - ((!isFlipped || isHorizontal) ? borderOutsets.left() : borderOutsets.right())); x 4176 Source/core/rendering/RenderBox.cpp overflowMinX = min(overflowMinX, borderBox.x() - outlineSize); x 4237 Source/core/rendering/RenderBox.cpp overflowRect.shiftXEdgeTo(max(overflowRect.x(), clientBox.x())); x 4521 Source/core/rendering/RenderBox.cpp return adjustedPositionRelativeToOffsetParent(topLeftLocation()).x(); x 4537 Source/core/rendering/RenderBox.cpp return LayoutPoint(point.x(), point.y() + height() - child->height() - (2 * child->y())); x 4538 Source/core/rendering/RenderBox.cpp return LayoutPoint(point.x() + width() - child->width() - (2 * child->x()), point.y()); x 4563 Source/core/rendering/RenderBox.cpp return isHorizontalWritingMode() ? LayoutPoint(position.x(), height() - position.y()) : LayoutPoint(width() - position.x(), position.y()); x 4584 Source/core/rendering/RenderBox.cpp return isHorizontalWritingMode() ? FloatPoint(position.x(), height() - position.y()) : FloatPoint(width() - position.x(), position.y()); x 4614 Source/core/rendering/RenderBox.cpp return LayoutSize(rect.x(), rect.y()); x 90 Source/core/rendering/RenderBox.h LayoutUnit x() const { return m_frameRect.x(); } x 101 Source/core/rendering/RenderBox.h LayoutUnit left() const { return topLeftLocation().x(); } x 103 Source/core/rendering/RenderBox.h void setX(LayoutUnit x) { m_frameRect.setX(x); } x 108 Source/core/rendering/RenderBox.h LayoutUnit logicalLeft() const { return style()->isHorizontalWritingMode() ? x() : y(); } x 110 Source/core/rendering/RenderBox.h LayoutUnit logicalTop() const { return style()->isHorizontalWritingMode() ? y() : x(); } x 166 Source/core/rendering/RenderBox.h LayoutSize locationOffset() const { return LayoutSize(x(), y()); } x 212 Source/core/rendering/RenderBox.h LayoutUnit logicalLeftLayoutOverflow() const { return style()->isHorizontalWritingMode() ? layoutOverflowRect().x() : layoutOverflowRect().y(); } x 216 Source/core/rendering/RenderBox.h LayoutUnit logicalLeftVisualOverflow() const { return style()->isHorizontalWritingMode() ? visualOverflowRect().x() : visualOverflowRect().y(); } x 595 Source/core/rendering/RenderBox.h return layoutOverflowRect.x() < noOverflowRect.x() || layoutOverflowRect.maxX() > noOverflowRect.maxX(); x 371 Source/core/rendering/RenderBoxModelObject.cpp return adjustedPositionRelativeToOffsetParent(LayoutPoint()).x(); x 418 Source/core/rendering/RenderBoxModelObject.cpp IntRect topCorner(clipRect.rect().x(), clipRect.rect().y(), rect.maxX() - clipRect.rect().x(), rect.maxY() - clipRect.rect().y()); x 423 Source/core/rendering/RenderBoxModelObject.cpp IntRect bottomCorner(rect.x(), rect.y(), clipRect.rect().maxX() - rect.x(), clipRect.rect().maxY() - rect.y()); x 430 Source/core/rendering/RenderBoxModelObject.cpp IntRect topCorner(rect.x(), clipRect.rect().y(), clipRect.rect().maxX() - rect.x(), rect.maxY() - clipRect.rect().y()); x 435 Source/core/rendering/RenderBoxModelObject.cpp IntRect bottomCorner(clipRect.rect().x(), rect.y(), rect.maxX() - clipRect.rect().x(), clipRect.rect().maxY() - rect.y()); x 478 Source/core/rendering/RenderBoxModelObject.cpp FloatSize shadowOffset(boxShadow.x(), boxShadow.y()); x 603 Source/core/rendering/RenderBoxModelObject.cpp LayoutRect clipRect = LayoutRect(scrolledPaintRect.x() + bLeft + (includePadding ? pLeft : LayoutUnit()), x 730 Source/core/rendering/RenderBoxModelObject.cpp box->paint(info, LayoutPoint(scrolledPaintRect.x() - box->x(), scrolledPaintRect.y() - box->y()), root.lineTop(), root.lineBottom()); x 926 Source/core/rendering/RenderBoxModelObject.cpp m_phase.move(max(alignedPoint.x() - m_destRect.x(), 0), max(alignedPoint.y() - m_destRect.y(), 0)); x 1219 Source/core/rendering/RenderBoxModelObject.cpp graphicsContext->drawImage(image.get(), IntRect(borderImageRect.x(), borderImageRect.maxY() - bottomWidth, leftWidth, bottomWidth), x 1225 Source/core/rendering/RenderBoxModelObject.cpp graphicsContext->drawTiledImage(image.get(), IntRect(borderImageRect.x(), borderImageRect.y() + topWidth, leftWidth, destinationHeight), x 1255 Source/core/rendering/RenderBoxModelObject.cpp graphicsContext->drawTiledImage(image.get(), IntRect(borderImageRect.x() + leftWidth, borderImageRect.y(), destinationWidth, topWidth), x 1261 Source/core/rendering/RenderBoxModelObject.cpp graphicsContext->drawTiledImage(image.get(), IntRect(borderImageRect.x() + leftWidth, borderImageRect.maxY() - bottomWidth, x 1290 Source/core/rendering/RenderBoxModelObject.cpp IntRect(borderImageRect.x() + leftWidth, borderImageRect.y() + topWidth, destinationWidth, destinationHeight), x 1595 Source/core/rendering/RenderBoxModelObject.cpp drawLineForBoxSide(graphicsContext, sideRect.x(), sideRect.y(), sideRect.maxX(), sideRect.maxY(), side, colorToPaint, edgeToRender.style, x 1650 Source/core/rendering/RenderBoxModelObject.cpp sideRect.setWidth(edges[BSLeft].width + innerBorderAdjustment.x()); x 1658 Source/core/rendering/RenderBoxModelObject.cpp sideRect.shiftXEdgeTo(sideRect.maxX() - edges[BSRight].width - innerBorderAdjustment.x()); x 1810 Source/core/rendering/RenderBoxModelObject.cpp innerThirdRect.shiftXEdgeTo(innerThirdRect.x() + innerWidth); x 1811 Source/core/rendering/RenderBoxModelObject.cpp outerThirdRect.shiftXEdgeTo(outerThirdRect.x() + outerWidth); x 1878 Source/core/rendering/RenderBoxModelObject.cpp IntPoint innerBorderAdjustment(innerBorder.rect().x() - unadjustedInnerBorder.rect().x(), innerBorder.rect().y() - unadjustedInnerBorder.rect().y()); x 2045 Source/core/rendering/RenderBoxModelObject.cpp FloatPoint centerPoint(innerRect.location().x().toFloat() + innerRect.width().toFloat() / 2, innerRect.location().y().toFloat() + innerRect.height().toFloat() / 2); x 2071 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x() + innerBorder.radii().topLeft().width(), x 2074 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x(), x 2082 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x() - innerBorder.radii().topRight().width(), x 2085 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x(), x 2100 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x() + innerBorder.radii().topLeft().width(), x 2103 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x(), x 2111 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x() + innerBorder.radii().bottomLeft().width(), x 2114 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x(), x 2129 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x() + innerBorder.radii().bottomLeft().width(), x 2132 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x(), x 2140 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x() - innerBorder.radii().bottomRight().width(), x 2143 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x(), x 2158 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x() - innerBorder.radii().topRight().width(), x 2161 Source/core/rendering/RenderBoxModelObject.cpp quad[1].x(), x 2169 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x() - innerBorder.radii().bottomRight().width(), x 2172 Source/core/rendering/RenderBoxModelObject.cpp quad[2].x(), x 2189 Source/core/rendering/RenderBoxModelObject.cpp float ax = quad[1].x() - quad[0].x(); x 2191 Source/core/rendering/RenderBoxModelObject.cpp float bx = quad[2].x() - quad[1].x(); x 2193 Source/core/rendering/RenderBoxModelObject.cpp float cx = quad[3].x() - quad[2].x(); x 2212 Source/core/rendering/RenderBoxModelObject.cpp firstQuad[2] = FloatPoint(quad[3].x() + r2 * ax, quad[3].y() + r2 * ay); x 2218 Source/core/rendering/RenderBoxModelObject.cpp secondQuad[1] = FloatPoint(quad[0].x() - r1 * cx, quad[0].y() - r1 * cy); x 2481 Source/core/rendering/RenderBoxModelObject.cpp FloatSize shadowOffset(shadow.x(), shadow.y()); x 2675 Source/core/rendering/RenderBoxModelObject.cpp LayoutUnit x = borderLeft() + paddingLeft(); x 2681 Source/core/rendering/RenderBoxModelObject.cpp x += textIndentOffset; x 2684 Source/core/rendering/RenderBoxModelObject.cpp x = (x + maxX) / 2; x 2686 Source/core/rendering/RenderBoxModelObject.cpp x += textIndentOffset / 2; x 2688 Source/core/rendering/RenderBoxModelObject.cpp x -= textIndentOffset / 2; x 2691 Source/core/rendering/RenderBoxModelObject.cpp x = maxX - caretWidth; x 2693 Source/core/rendering/RenderBoxModelObject.cpp x -= textIndentOffset; x 2696 Source/core/rendering/RenderBoxModelObject.cpp x = min(x, max<LayoutUnit>(maxX - caretWidth, 0)); x 2700 Source/core/rendering/RenderBoxModelObject.cpp return currentStyle->isHorizontalWritingMode() ? LayoutRect(x, y, caretWidth, height) : LayoutRect(y, x, height, caretWidth); x 241 Source/core/rendering/RenderBoxModelObject.h void setPhaseX(int x) { m_phase.setX(x); } x 113 Source/core/rendering/RenderButton.cpp return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom()); x 965 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp if (!lastVisibleLine->lineCanAccommodateEllipsis(leftToRight, blockRightEdge, lastVisibleLine->x() + lastVisibleLine->logicalWidth(), totalWidth)) x 42 Source/core/rendering/RenderDetailsMarker.cpp result.moveTo(FloatPoint(path[0].x(), path[0].y())); x 44 Source/core/rendering/RenderDetailsMarker.cpp result.addLineTo(FloatPoint(path[i].x(), path[i].y())); x 111 Source/core/rendering/RenderDetailsMarker.cpp result.translate(FloatSize(origin.x().toFloat(), origin.y().toFloat())); x 152 Source/core/rendering/RenderEmbeddedObject.cpp float labelX = roundf(replacementTextRect.location().x() + (replacementTextRect.size().width() - textWidth) / 2); x 181 Source/core/rendering/RenderEmbeddedObject.cpp float x = (contentRect.size().width() / 2 - replacementTextRect.size().width() / 2) + contentRect.location().x(); x 183 Source/core/rendering/RenderEmbeddedObject.cpp replacementTextRect.setLocation(FloatPoint(x, y)); x 157 Source/core/rendering/RenderFieldset.cpp LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2; x 159 Source/core/rendering/RenderFieldset.cpp paintRect.setX(paintRect.x() + xOff); x 180 Source/core/rendering/RenderFieldset.cpp graphicsContext->clipOut(pixelSnappedIntRect(paintRect.x() + legend->x(), clipTop, legend->width(), clipHeight)); x 182 Source/core/rendering/RenderFieldset.cpp LayoutUnit clipLeft = paintRect.x(); x 208 Source/core/rendering/RenderFieldset.cpp LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2; x 97 Source/core/rendering/RenderFileUploadControl.cpp IntRect clipRect = enclosingIntRect(LayoutRect(paintOffset.x() + borderLeft(), paintOffset.y() + borderTop(), x 112 Source/core/rendering/RenderFileUploadControl.cpp LayoutUnit contentLeft = paintOffset.x() + borderLeft() + paddingLeft(); x 400 Source/core/rendering/RenderFlowThread.cpp RenderRegion* renderRegion = const_cast<RenderFlowThread*>(this)->regionAtBlockOffset(isHorizontalWritingMode() ? center.y() : center.x(), true, DisallowRegionAutoGeneration); x 634 Source/core/rendering/RenderFlowThread.cpp return currentBlock->isHorizontalWritingMode() ? blockRect.y() : blockRect.x(); x 114 Source/core/rendering/RenderFrameSet.cpp context->fillRect(IntRect(IntPoint(borderRect.x(), borderRect.maxY() - 1), IntSize(width(), 1)), borderEndEdgeColor()); x 142 Source/core/rendering/RenderFrameSet.cpp paintColumnBorder(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x() + xPos, adjustedPaintOffset.y() + yPos, borderThickness, height()))); x 151 Source/core/rendering/RenderFrameSet.cpp paintRowBorder(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x(), adjustedPaintOffset.y() + yPos, width(), borderThickness))); x 569 Source/core/rendering/RenderFrameSet.cpp startResizing(m_cols, localPos.x()); x 579 Source/core/rendering/RenderFrameSet.cpp continueResizing(m_cols, localPos.x()); x 620 Source/core/rendering/RenderFrameSet.cpp int c = hitTestSplit(m_cols, p.x()); x 1344 Source/core/rendering/RenderGrid.cpp GridSpan dirtiedColumns = dirtiedGridAreas(m_columnPositions, localRepaintRect.x(), localRepaintRect.maxX()); x 313 Source/core/rendering/RenderImage.cpp context->drawRect(pixelSnappedIntRect(LayoutRect(paintOffset.x() + leftBorder + leftPad, paintOffset.y() + topBorder + topPad, cWidth, cHeight))); x 349 Source/core/rendering/RenderImage.cpp LayoutPoint textOrigin(textRectOrigin.x(), textRectOrigin.y() + ascent); x 565 Source/core/rendering/RenderInline.cpp yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, (currBox->width() + currBox->marginWidth()).toFloat(), logicalHeight)); x 580 Source/core/rendering/RenderInline.cpp yield(FloatRect(childLine->x() - childLine->marginLogicalLeft(), x 598 Source/core/rendering/RenderInline.cpp yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight)); x 617 Source/core/rendering/RenderInline.cpp intRect.move(m_accumulatedOffset.x(), m_accumulatedOffset.y()); x 678 Source/core/rendering/RenderInline.cpp return adjustedPositionRelativeToOffsetParent(topLeft).x(); x 868 Source/core/rendering/RenderInline.cpp float x = isHorizontal ? logicalLeftSide : firstLineBox()->x(); x 870 Source/core/rendering/RenderInline.cpp float width = isHorizontal ? logicalRightSide - logicalLeftSide : lastLineBox()->logicalBottom() - x; x 872 Source/core/rendering/RenderInline.cpp result = enclosingIntRect(FloatRect(x, y, width, height)); x 1387 Source/core/rendering/RenderInline.cpp layoutRect.move(m_accumulatedOffset.x(), m_accumulatedOffset.y()); x 1430 Source/core/rendering/RenderInline.cpp rects.append(LayoutRect(curr->x(), top, curr->logicalWidth(), bottom - top)); x 1460 Source/core/rendering/RenderInline.cpp LayoutRect box(LayoutPoint(paintOffset.x() + thisline.x() - offset, paintOffset.y() + thisline.y() - offset), x 1464 Source/core/rendering/RenderInline.cpp IntRect pixelSnappedLastLine = pixelSnappedIntRect(paintOffset.x() + lastline.x(), 0, lastline.width(), 0); x 1465 Source/core/rendering/RenderInline.cpp IntRect pixelSnappedNextLine = pixelSnappedIntRect(paintOffset.x() + nextline.x(), 0, nextline.width(), 0); x 1469 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x() - outlineWidth, x 1470 Source/core/rendering/RenderInline.cpp pixelSnappedBox.y() - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : 0), x 1471 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x(), x 1472 Source/core/rendering/RenderInline.cpp pixelSnappedBox.maxY() + (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : 0), x 1475 Source/core/rendering/RenderInline.cpp (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth), x 1476 Source/core/rendering/RenderInline.cpp (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth), x 1482 Source/core/rendering/RenderInline.cpp pixelSnappedBox.y() - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineWidth : 0), x 1484 Source/core/rendering/RenderInline.cpp pixelSnappedBox.maxY() + (nextline.isEmpty() || nextline.maxX() <= thisline.maxX() || (thisline.maxX() - 1) <= nextline.x() ? outlineWidth : 0), x 1487 Source/core/rendering/RenderInline.cpp (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineWidth : -outlineWidth), x 1488 Source/core/rendering/RenderInline.cpp (nextline.isEmpty() || nextline.maxX() <= thisline.maxX() || (thisline.maxX() - 1) <= nextline.x() ? outlineWidth : -outlineWidth), x 1491 Source/core/rendering/RenderInline.cpp if (thisline.x() < lastline.x()) x 1493 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x() - outlineWidth, x 1495 Source/core/rendering/RenderInline.cpp min(pixelSnappedBox.maxX() + outlineWidth, (lastline.isEmpty() ? 1000000 : pixelSnappedLastLine.x())), x 1499 Source/core/rendering/RenderInline.cpp (!lastline.isEmpty() && paintOffset.x() + lastline.x() + 1 < pixelSnappedBox.maxX() + outlineWidth) ? -outlineWidth : outlineWidth, x 1504 Source/core/rendering/RenderInline.cpp max(lastline.isEmpty() ? -1000000 : pixelSnappedLastLine.maxX(), pixelSnappedBox.x() - outlineWidth), x 1509 Source/core/rendering/RenderInline.cpp (!lastline.isEmpty() && pixelSnappedBox.x() - outlineWidth < paintOffset.x() + lastline.maxX()) ? -outlineWidth : outlineWidth, x 1512 Source/core/rendering/RenderInline.cpp if (thisline.x() == thisline.maxX()) x 1514 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x() - outlineWidth, x 1524 Source/core/rendering/RenderInline.cpp if (thisline.x() < nextline.x()) x 1526 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x() - outlineWidth, x 1528 Source/core/rendering/RenderInline.cpp min(pixelSnappedBox.maxX() + outlineWidth, !nextline.isEmpty() ? pixelSnappedNextLine.x() + 1 : 1000000), x 1532 Source/core/rendering/RenderInline.cpp (!nextline.isEmpty() && paintOffset.x() + nextline.x() + 1 < pixelSnappedBox.maxX() + outlineWidth) ? -outlineWidth : outlineWidth, x 1537 Source/core/rendering/RenderInline.cpp max(!nextline.isEmpty() ? pixelSnappedNextLine.maxX() : -1000000, pixelSnappedBox.x() - outlineWidth), x 1542 Source/core/rendering/RenderInline.cpp (!nextline.isEmpty() && pixelSnappedBox.x() - outlineWidth < paintOffset.x() + nextline.maxX()) ? -outlineWidth : outlineWidth, x 1545 Source/core/rendering/RenderInline.cpp if (thisline.x() == thisline.maxX()) x 1547 Source/core/rendering/RenderInline.cpp pixelSnappedBox.x() - outlineWidth, x 1575 Source/core/rendering/RenderInline.cpp region.bounds.setX(absPos.x() + region.bounds.x()); x 1309 Source/core/rendering/RenderLayer.cpp clipRect.move(-delta.x(), -delta.y()); x 1334 Source/core/rendering/RenderLayer.cpp transform.translate(pixelSnappedDelta.x(), pixelSnappedDelta.y()); x 1617 Source/core/rendering/RenderLayer.cpp location += LayoutSize(absPos.x(), absPos.y()); x 1720 Source/core/rendering/RenderLayer.cpp rect.move(-delta.x(), -delta.y()); x 2142 Source/core/rendering/RenderLayer.cpp filterRepaintRect.move(offsetFromRoot.x(), offsetFromRoot.y()); x 2274 Source/core/rendering/RenderLayer.cpp transform.translateRight(roundedDelta.x(), roundedDelta.y()); x 2643 Source/core/rendering/RenderLayer.cpp LayoutUnit logicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - columnBlock->logicalLeftOffsetForContent(); x 2654 Source/core/rendering/RenderLayer.cpp offset = LayoutSize(colRect.x() + currLogicalTopOffset - columnBlock->borderLeft() - columnBlock->paddingLeft(), 0); x 2694 Source/core/rendering/RenderLayer.cpp transform.translateRight(roundToInt(childOffset.x() + offset.width()), roundToInt(childOffset.y() + offset.height())); x 2830 Source/core/rendering/RenderLayer.cpp transformState->translate(offset.x(), offset.y(), HitTestingTransformState::AccumulateTransform); x 3232 Source/core/rendering/RenderLayer.cpp LayoutUnit currLogicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - logicalLeft; x 3249 Source/core/rendering/RenderLayer.cpp offset = LayoutSize(colRect.x() + currLogicalTopOffset - columnBlock->borderLeft() - columnBlock->paddingLeft(), 0); x 270 Source/core/rendering/RenderLayerScrollableArea.cpp return IntRect(cornerStart(style, bounds.x(), bounds.maxX(), horizontalThickness), x 538 Source/core/rendering/RenderLayerScrollableArea.cpp return snapSizeToPixel(m_overflowRect.width(), m_box->clientLeft() + m_box->x()); x 555 Source/core/rendering/RenderLayerScrollableArea.cpp int scrollableLeftOverflow = m_overflowRect.x() - m_box->borderLeft() - (m_box->style()->shouldPlaceBlockDirectionScrollbarOnLogicalLeft() ? m_box->verticalScrollbarWidth() : 0); x 764 Source/core/rendering/RenderLayerScrollableArea.cpp int x = std::max(std::min(scrollOffset.width(), maxX), 0); x 766 Source/core/rendering/RenderLayerScrollableArea.cpp return IntSize(x, y); x 776 Source/core/rendering/RenderLayerScrollableArea.cpp return IntRect(horizontalScrollbarStart(borderBoxRect.x()), x 789 Source/core/rendering/RenderLayerScrollableArea.cpp return IntRect(verticalScrollbarStart(borderBoxRect.x(), borderBoxRect.maxX()), x 804 Source/core/rendering/RenderLayerScrollableArea.cpp int x = minX + m_box->borderLeft(); x 806 Source/core/rendering/RenderLayerScrollableArea.cpp x += m_vBar ? m_vBar->width() : resizerCornerRect(m_box->pixelSnappedBorderBoxRect(), ResizerForPointer).width(); x 807 Source/core/rendering/RenderLayerScrollableArea.cpp return x; x 1288 Source/core/rendering/RenderLayerScrollableArea.cpp context->translate(resizerCornerRect.x() + cornerResizerSize.width(), resizerCornerRect.y() + resizerCornerRect.height() - cornerResizerSize.height()); x 112 Source/core/rendering/RenderLayerScrollableArea.h int scrollXOffset() const { return m_scrollOffset.width() + scrollOrigin().x(); } x 121 Source/core/rendering/RenderLayerScrollableArea.h void scrollToXOffset(int x, ScrollOffsetClamping clamp = ScrollOffsetUnclamped) { scrollToOffset(IntSize(x, scrollYOffset()), clamp); } x 165 Source/core/rendering/RenderLineBoxList.cpp physicalStart += offset.x(); x 166 Source/core/rendering/RenderLineBoxList.cpp if (physicalStart >= rect.maxX() || physicalStart + physicalExtent <= rect.x()) x 250 Source/core/rendering/RenderLineBoxList.cpp IntRect(point.x(), point.y() - locationInContainer.topPadding(), 1, locationInContainer.topPadding() + locationInContainer.bottomPadding() + 1) : x 251 Source/core/rendering/RenderLineBoxList.cpp IntRect(point.x() - locationInContainer.leftPadding(), point.y(), locationInContainer.rightPadding() + locationInContainer.leftPadding() + 1, 1); x 288 Source/core/rendering/RenderListBox.cpp return LayoutRect(additionalOffset.x() + borderLeft() + paddingLeft() + scrollbarOffset, x 375 Source/core/rendering/RenderListBox.cpp IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + scrollbarLeft(), x 485 Source/core/rendering/RenderListBox.cpp LayoutRect vertRect(accumulatedOffset.x() + scrollbarLeft(), x 364 Source/core/rendering/RenderListItem.cpp if (markerLogicalLeft < newLogicalVisualOverflowRect.x() && !hitSelfPaintingLayer) { x 370 Source/core/rendering/RenderListItem.cpp if (markerLogicalLeft < newLogicalLayoutOverflowRect.x()) { x 388 Source/core/rendering/RenderListItem.cpp newLogicalVisualOverflowRect.setWidth(markerLogicalLeft + m_marker->logicalWidth() - newLogicalVisualOverflowRect.x()); x 393 Source/core/rendering/RenderListItem.cpp newLogicalLayoutOverflowRect.setWidth(markerLogicalLeft + m_marker->logicalWidth() - newLogicalLayoutOverflowRect.x()); x 1274 Source/core/rendering/RenderListMarker.cpp marker.moveBy(IntPoint(roundToInt(box.x()), roundToInt(box.y() - logicalHeight()))); x 1276 Source/core/rendering/RenderListMarker.cpp context->translate(marker.x(), marker.maxY()); x 1278 Source/core/rendering/RenderListMarker.cpp context->translate(-marker.x(), -marker.maxY()); x 1283 Source/core/rendering/RenderListMarker.cpp IntPoint textOrigin = IntPoint(marker.x(), marker.y() + style()->fontMetrics().ascent()); x 1817 Source/core/rendering/RenderListMarker.cpp relativeRect.setX(width() - relativeRect.x() - relativeRect.width()); x 272 Source/core/rendering/RenderMenuList.cpp LayoutRect outerBox(additionalOffset.x() + borderLeft() + paddingLeft(), x 277 Source/core/rendering/RenderMenuList.cpp LayoutRect innerBox(additionalOffset.x() + m_innerBlock->x() + m_innerBlock->paddingLeft(), x 67 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit portionLogicalTop = (isHorizontalWritingMode() ? flowThreadPortionRect().y() : flowThreadPortionRect().x()); x 322 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit flowThreadLogicalTop = isHorizontalWritingMode() ? portionRect.y() : portionRect.x(); x 341 Source/core/rendering/RenderMultiColumnSet.cpp portionRect = LayoutRect(portionRect.x(), portionRect.y() + index * computedColumnHeight(), portionRect.width(), computedColumnHeight()); x 343 Source/core/rendering/RenderMultiColumnSet.cpp portionRect = LayoutRect(portionRect.x() + index * computedColumnHeight(), portionRect.y(), computedColumnHeight(), portionRect.height()); x 372 Source/core/rendering/RenderMultiColumnSet.cpp overflowRect.shiftXEdgeTo(portionRect.x() - colGap / 2); x 444 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit ruleLeft = isHorizontalWritingMode() ? paintOffset.x() + ruleLogicalLeft - ruleThickness / 2 + ruleAdd : paintOffset.x() + borderLeft() + paddingLeft(); x 449 Source/core/rendering/RenderMultiColumnSet.cpp drawLineForBoxSide(paintInfo.context, pixelSnappedRuleRect.x(), pixelSnappedRuleRect.y(), pixelSnappedRuleRect.maxX(), pixelSnappedRuleRect.maxY(), boxSide, ruleColor, ruleStyle, 0, 0, antialias); x 472 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit repaintLogicalTop = isHorizontalWritingMode() ? flowThreadRepaintRect.y() : flowThreadRepaintRect.x(); x 524 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit layerLogicalTop = isHorizontalWritingMode() ? layerBoundsInFlowThread.y() : layerBoundsInFlowThread.x(); x 556 Source/core/rendering/RenderMultiColumnSet.cpp LayoutUnit blockOffset = isHorizontalWritingMode() ? -flowThreadPortion.y() : -flowThreadPortion.x(); x 1226 Source/core/rendering/RenderObject.cpp int leftOuter = outer.x(); x 1227 Source/core/rendering/RenderObject.cpp int leftInner = inner.x(); x 1286 Source/core/rendering/RenderObject.cpp rect.move(-absolutePoint.x(), -absolutePoint.y()); x 1373 Source/core/rendering/RenderObject.cpp r.x(), r.y(), r.width(), r.height(), invalidationReasonToString(invalidationReason)).ascii().data())); x 1559 Source/core/rendering/RenderObject.cpp LayoutUnit deltaLeft = newBounds.x() - oldBounds.x(); x 1561 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds.x(), oldBounds.y(), deltaLeft, oldBounds.height()), invalidationReason); x 1563 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds.x(), newBounds.y(), -deltaLeft, newBounds.height()), invalidationReason); x 1573 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds.x(), oldBounds.y(), oldBounds.width(), deltaTop), invalidationReason); x 1575 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds.x(), newBounds.y(), newBounds.width(), -deltaTop), invalidationReason); x 1579 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds.x(), oldBounds.maxY(), newBounds.width(), deltaBottom), invalidationReason); x 1581 Source/core/rendering/RenderObject.cpp repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds.x(), newBounds.maxY(), oldBounds.width(), -deltaBottom), invalidationReason); x 1603 Source/core/rendering/RenderObject.cpp LayoutRect rightRect(newBounds.x() + min(newBounds.width(), oldBounds.width()) - decorationsLeftWidth, x 1608 Source/core/rendering/RenderObject.cpp if (rightRect.x() < right) { x 1609 Source/core/rendering/RenderObject.cpp rightRect.setWidth(min(rightRect.width(), right - rightRect.x())); x 1624 Source/core/rendering/RenderObject.cpp LayoutRect bottomRect(newBounds.x(), x 2326 Source/core/rendering/RenderObject.cpp transform.translateRight3d(-perspectiveOrigin.x(), -perspectiveOrigin.y(), 0); x 2328 Source/core/rendering/RenderObject.cpp transform.translateRight3d(perspectiveOrigin.x(), perspectiveOrigin.y(), 0); x 84 Source/core/rendering/RenderOverflow.h LayoutUnit minX = std::min(rect.x(), m_layoutOverflow.x()); x 97 Source/core/rendering/RenderOverflow.h m_visualOverflow.setX(std::min(rect.x(), m_visualOverflow.x())); x 99 Source/core/rendering/RenderOverflow.h m_visualOverflow.setWidth(maxX - m_visualOverflow.x()); x 46 Source/core/rendering/RenderOverflowTest.cpp << rect.x().toFloat() << ", " x 88 Source/core/rendering/RenderRegion.cpp LayoutUnit minX = min(flowThreadPortionRect.x(), flowThreadOverflow.x()); x 92 Source/core/rendering/RenderRegion.cpp LayoutUnit minX = isFirstPortion ? flowThreadOverflow.x() : flowThreadPortionRect.x(); x 104 Source/core/rendering/RenderRegion.cpp return flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().y() : flowThreadPortionRect().x(); x 191 Source/core/rendering/RenderRegion.cpp return flowThread()->isHorizontalWritingMode() ? rect.y() : rect.x(); x 51 Source/core/rendering/RenderRegionSet.cpp LayoutUnit logicalTopOffset = isHorizontal ? rect.y() : rect.x(); x 54 Source/core/rendering/RenderRegionSet.cpp setFlowThreadPortionRect(LayoutRect(rect.x(), rect.y(), isHorizontal ? rect.width() : logicalHeightWithOverflow, isHorizontal ? logicalHeightWithOverflow : rect.height())); x 207 Source/core/rendering/RenderReplaced.cpp if (adjustedPaintOffset.x() + visualOverflowRect().x() >= paintInfo.rect.maxX() || adjustedPaintOffset.x() + visualOverflowRect().maxX() <= paintInfo.rect.x()) x 362 Source/core/rendering/RenderReplaced.cpp LayoutUnit xOffset = minimumValueForLength(style()->objectPosition().x(), contentRect.width() - finalRect.width()); x 540 Source/core/rendering/RenderReplaced.cpp LayoutUnit blockDirectionPosition = isHorizontalWritingMode() ? point.y() + y() : point.x() + x(); x 541 Source/core/rendering/RenderReplaced.cpp LayoutUnit lineDirectionPosition = isHorizontalWritingMode() ? point.x() + x() : point.y() + y(); x 287 Source/core/rendering/RenderScrollbar.cpp return IntRect(isHorizontal ? x() + width() - partRenderer->pixelSnappedWidth() : x(), x 294 Source/core/rendering/RenderScrollbar.cpp return IntRect(isHorizontal ? x() + previousButton.width() : x(), x 301 Source/core/rendering/RenderScrollbar.cpp return IntRect(isHorizontal ? x() + width() - followingButton.width() - partRenderer->pixelSnappedWidth() : x(), x 319 Source/core/rendering/RenderScrollbar.cpp return IntRect(x() + startLength, y(), width() - totalLength, height()); x 328 Source/core/rendering/RenderScrollbar.cpp return IntRect(x(), y() + startLength, width(), height() - totalLength); x 341 Source/core/rendering/RenderScrollbar.cpp rect.setX(rect.x() + partRenderer->marginLeft()); x 101 Source/core/rendering/RenderScrollbarTheme.cpp result.setX(backRect.x()); x 102 Source/core/rendering/RenderScrollbarTheme.cpp result.setWidth(forwardRect.maxX() - backRect.x()); x 546 Source/core/rendering/RenderTable.cpp movedSectionLogicalTop = min(logicalHeight(), section->logicalTop()) + (style()->isHorizontalWritingMode() ? section->visualOverflowRect().y() : section->visualOverflowRect().x()); x 585 Source/core/rendering/RenderTable.cpp repaintRectangle(LayoutRect(visualOverflowRect().x(), movedSectionLogicalTop, visualOverflowRect().width(), visualOverflowRect().maxY() - movedSectionLogicalTop)); x 1403 Source/core/rendering/RenderTable.cpp rect.setX(location.x()); x 360 Source/core/rendering/RenderTableCell.cpp LayoutPoint location(max<LayoutUnit>(left, -visualOverflowRect().x()), max<LayoutUnit>(top, -visualOverflowRect().y())); x 361 Source/core/rendering/RenderTableCell.cpp LayoutRect r(-location.x(), -location.y(), location.x() + max(width() + right, visualOverflowRect().maxX()), location.y() + max(height() + bottom, visualOverflowRect().maxY())); x 1133 Source/core/rendering/RenderTableCell.cpp IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2, x 1151 Source/core/rendering/RenderTableCell.cpp borders.addBorder(topVal, BSTop, renderTop, borderRect.x(), borderRect.y(), borderRect.maxX(), borderRect.y() + topWidth, topStyle); x 1152 Source/core/rendering/RenderTableCell.cpp borders.addBorder(bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWidth, borderRect.maxX(), borderRect.maxY(), bottomStyle); x 1153 Source/core/rendering/RenderTableCell.cpp borders.addBorder(leftVal, BSLeft, renderLeft, borderRect.x(), borderRect.y(), borderRect.x() + leftWidth, borderRect.maxY(), leftStyle); x 1194 Source/core/rendering/RenderTableCell.cpp LayoutRect clipRect(adjustedPaintOffset.x() + borderLeft(), adjustedPaintOffset.y() + borderTop(), x 1330 Source/core/rendering/RenderTableSection.cpp if (coveredColumns.start() >= columnPos.size() - 1 && columnPos[columnPos.size() - 1] + table()->outerBorderEnd() >= damageRect.x()) x 1371 Source/core/rendering/RenderTableSection.cpp unsigned nextColumn = std::upper_bound(columnPos.begin(), columnPos.end(), flippedRect.x()) - columnPos.begin(); x 341 Source/core/rendering/RenderText.cpp r.setX(box->x()); x 372 Source/core/rendering/RenderText.cpp r.setX(selectionRect.x().toFloat()); x 419 Source/core/rendering/RenderText.cpp boundaries.setWidth(ellipsisRect.maxX() - boundaries.x()); x 455 Source/core/rendering/RenderText.cpp r.setX(selectionRect.x().toFloat()); x 621 Source/core/rendering/RenderText.cpp LayoutUnit pointLineDirection = firstTextBox()->isHorizontal() ? point.x() : point.y(); x 622 Source/core/rendering/RenderText.cpp LayoutUnit pointBlockDirection = firstTextBox()->isHorizontal() ? point.y() : point.x(); x 1189 Source/core/rendering/RenderText.cpp return m_firstTextBox ? m_firstTextBox->x() : 0; x 1555 Source/core/rendering/RenderText.cpp float x = isHorizontal ? logicalLeftSide : firstTextBox()->x(); x 1557 Source/core/rendering/RenderText.cpp float width = isHorizontal ? logicalRightSide - logicalLeftSide : lastTextBox()->logicalBottom() - x; x 1559 Source/core/rendering/RenderText.cpp result = enclosingIntRect(FloatRect(x, y, width, height)); x 233 Source/core/rendering/RenderTextControl.cpp float RenderTextControl::scaleEmToUnits(int x) const x 237 Source/core/rendering/RenderTextControl.cpp return roundf(style()->font().fontDescription().computedSize() * x / unitsPerEm); x 55 Source/core/rendering/RenderTextControl.h float scaleEmToUnits(int x) const; x 907 Source/core/rendering/RenderTheme.cpp trackBounds.setX(trackBounds.x() - sliderBounds.x() + rect.x()); x 914 Source/core/rendering/RenderTheme.cpp tickRegionSideMargin = trackBounds.x() + (thumbSize.width() - tickSize.width() * zoomFactor) / 2.0; x 919 Source/core/rendering/RenderTheme.cpp tickRect.setX(floor(rect.x() + rect.width() / 2.0 + sliderTickOffsetFromTrackCenter() * zoomFactor)); x 1187 Source/core/rendering/RenderTheme.cpp i.context->translate(unzoomedRect.x(), unzoomedRect.y()); x 1189 Source/core/rendering/RenderTheme.cpp i.context->translate(-unzoomedRect.x(), -unzoomedRect.y()); x 1229 Source/core/rendering/RenderTheme.cpp i.context->translate(unzoomedRect.x(), unzoomedRect.y()); x 1231 Source/core/rendering/RenderTheme.cpp i.context->translate(-unzoomedRect.x(), -unzoomedRect.y()); x 259 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(unzoomedRect.x(), unzoomedRect.y()); x 261 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(-unzoomedRect.x(), -unzoomedRect.y()); x 344 Source/core/rendering/RenderThemeChromiumDefault.cpp const int right = rect.x() + rect.width(); x 372 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight; x 375 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13; x 389 Source/core/rendering/RenderThemeChromiumDefault.cpp const int right = rect.x() + rect.width(); x 406 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight; x 409 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13; x 434 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(unzoomedRect.x(), unzoomedRect.y()); x 436 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(-unzoomedRect.x(), -unzoomedRect.y()); x 459 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(unzoomedRect.x(), unzoomedRect.y()); x 461 Source/core/rendering/RenderThemeChromiumDefault.cpp i.context->translate(-unzoomedRect.x(), -unzoomedRect.y()); x 497 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.progressBar.valueRectX = valueRect.x(); x 150 Source/core/rendering/RenderThemeChromiumSkia.cpp int x = original.x() + (original.width() - width) / 2; x 153 Source/core/rendering/RenderThemeChromiumSkia.cpp return IntRect(x, y, width, height); x 217 Source/core/rendering/RenderThemeChromiumSkia.cpp partRect.move(localOffset.x(), localOffset.y()); x 435 Source/core/rendering/RenderThemeChromiumSkia.cpp return IntRect(rect.x(), rect.y(), dx, rect.height()); x 448 Source/core/rendering/RenderThemeChromiumSkia.cpp return IntRect(rect.x() + progress * 2 * movableWidth, rect.y(), valueWidth, rect.height()); x 449 Source/core/rendering/RenderThemeChromiumSkia.cpp return IntRect(rect.x() + (1.0 - progress) * 2 * movableWidth, rect.y(), valueWidth, rect.height()); x 474 Source/core/rendering/RenderThemeChromiumSkia.cpp m_paintInfo.context->translate(2 * rect.x() + rect.width(), 0); x 207 Source/core/rendering/RenderTreeAsText.cpp r = LayoutRect(cell.x(), cell.y() + cell.intrinsicPaddingBefore(), cell.width(), cell.height() - cell.intrinsicPaddingBefore() - cell.intrinsicPaddingAfter()); x 408 Source/core/rendering/RenderTreeAsText.cpp int x = run.x(); x 410 Source/core/rendering/RenderTreeAsText.cpp int logicalWidth = ceilf(run.left() + run.logicalWidth()) - x; x 416 Source/core/rendering/RenderTreeAsText.cpp ts << "text run at (" << x << "," << y << ") width " << logicalWidth; x 123 Source/core/rendering/RenderVTTCue.cpp setX(x() + position); x 155 Source/core/rendering/RenderVTTCue.cpp LayoutUnit left = x(); x 192 Source/core/rendering/RenderVTTCue.cpp setX(x() + step); x 199 Source/core/rendering/RenderVTTCue.cpp setX(m_fallbackPosition.x()); x 323 Source/core/rendering/RenderView.cpp ASSERT(LayoutPoint(IntPoint(paintOffset.x(), paintOffset.y())) == paintOffset); x 175 Source/core/rendering/RenderWidget.cpp IntPoint paintLocation(roundToInt(adjustedPaintOffset.x() + borderLeft() + paddingLeft()), x 132 Source/core/rendering/RootInlineBox.cpp x(), y(), !prevRootBox(), isHorizontal(), markupBox); x 494 Source/core/rendering/RootInlineBox.cpp return closestLeafChildForLogicalLeftPosition(block().isHorizontalWritingMode() ? pointInContents.x() : pointInContents.y(), onlyEditableLeaves); x 591 Source/core/rendering/RootInlineBox.cpp lineLayoutOverflow.shiftXEdgeTo(min<LayoutUnit>(lineLayoutOverflow.x(), logicalLeft() - endPadding)); x 63 Source/core/rendering/ScrollAlignment.cpp LayoutRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height()); x 93 Source/core/rendering/ScrollAlignment.cpp LayoutUnit x; x 95 Source/core/rendering/ScrollAlignment.cpp x = visibleRect.x(); x 97 Source/core/rendering/ScrollAlignment.cpp x = exposeRect.maxX() - visibleRect.width(); x 99 Source/core/rendering/ScrollAlignment.cpp x = exposeRect.x() + (exposeRect.width() - visibleRect.width()) / 2; x 101 Source/core/rendering/ScrollAlignment.cpp x = exposeRect.x(); x 105 Source/core/rendering/ScrollAlignment.cpp LayoutRect exposeRectY(visibleRect.x(), exposeRect.y(), visibleRect.width(), exposeRect.height()); x 143 Source/core/rendering/ScrollAlignment.cpp return LayoutRect(LayoutPoint(x, y), visibleRect.size()); x 393 Source/core/rendering/compositing/CompositedLayerMapping.cpp clippingBounds.move(-delta.x(), -delta.y()); x 759 Source/core/rendering/compositing/CompositedLayerMapping.cpp relativeCompositingBounds.width() ? (layerBounds.x() - relativeCompositingBounds.x() + transformOrigin.x()) / relativeCompositingBounds.width() : 0.5f, x 1707 Source/core/rendering/compositing/CompositedLayerMapping.cpp return LayoutSize(-m_compositedBounds.x(), -m_compositedBounds.y()); x 1964 Source/core/rendering/compositing/CompositedLayerMapping.cpp context.translate(-scrollbarRect.x(), -scrollbarRect.y()); x 2010 Source/core/rendering/compositing/CompositedLayerMapping.cpp context.translate(-scrollCornerAndResizer.x(), -scrollCornerAndResizer.y()); x 718 Source/core/rendering/compositing/RenderLayerCompositor.cpp LayoutSize offsetFromSquashingCLM(offsetFromAbsoluteForSquashedLayer.x() - squashingState.offsetFromAbsoluteForSquashingCLM.x(), x 1626 Source/core/rendering/compositing/RenderLayerCompositor.cpp context.translate(-scrollbarRect.x(), -scrollbarRect.y()); x 1642 Source/core/rendering/compositing/RenderLayerCompositor.cpp context.translate(-scrollCorner.x(), -scrollCorner.y()); x 66 Source/core/rendering/shapes/BoxShape.cpp result.append(LineSegment(marginBounds.rect().x(), marginBounds.rect().maxX())); x 74 Source/core/rendering/shapes/BoxShape.cpp result.append(LineSegment(rect.x(), rect.maxX())); x 79 Source/core/rendering/shapes/BoxShape.cpp float x2 = rect.x(); x 71 Source/core/rendering/shapes/PolygonShape.cpp intersectionX = (vertex1.y() < vertex2.y()) ? vertex1.x() : vertex2.x(); x 74 Source/core/rendering/shapes/PolygonShape.cpp intersectionX = (vertex1.y() > vertex2.y()) ? vertex1.x() : vertex2.x(); x 77 Source/core/rendering/shapes/PolygonShape.cpp intersectionX = ((y - vertex1.y()) * (vertex2.x() - vertex1.x()) / dy) + vertex1.x(); x 105 Source/core/rendering/shapes/PolygonShape.cpp float startAngle = atan2(startArcVertex.y() - arcCenter.y(), startArcVertex.x() - arcCenter.x()); x 106 Source/core/rendering/shapes/PolygonShape.cpp float endAngle = atan2(endArcVertex.y() - arcCenter.y(), endArcVertex.x() - arcCenter.x()); x 185 Source/core/rendering/shapes/PolygonShape.cpp static inline bool appendIntervalX(float x, bool inside, FloatShapeIntervals& result) x 188 Source/core/rendering/shapes/PolygonShape.cpp result.append(FloatShapeInterval(x, x)); x 190 Source/core/rendering/shapes/PolygonShape.cpp result.last().setX2(x); x 197 Source/core/rendering/shapes/PolygonShape.cpp float x1 = intersection1.point.x(); x 198 Source/core/rendering/shapes/PolygonShape.cpp float x2 = intersection2.point.x(); x 228 Source/core/rendering/shapes/PolygonShape.cpp if ((thisIntersection.point.x() == nextIntersection.point.x()) && (thisIntersection.type == VertexMinY || thisIntersection.type == VertexMaxY)) { x 262 Source/core/rendering/shapes/PolygonShape.cpp inside = appendIntervalX(thisIntersection.point.x(), inside, result); x 300 Source/core/rendering/shapes/PolygonShape.cpp x1 = intersection.point.x(); x 302 Source/core/rendering/shapes/PolygonShape.cpp x1 = (edge->vertex1().y() < edge->vertex2().y()) ? edge->vertex1().x() : edge->vertex2().x(); x 307 Source/core/rendering/shapes/PolygonShape.cpp x2 = intersection.point.x(); x 309 Source/core/rendering/shapes/PolygonShape.cpp x2 = (edge->vertex1().y() > edge->vertex2().y()) ? edge->vertex1().x() : edge->vertex2().x(); x 63 Source/core/rendering/shapes/PolygonShape.h : m_vertex1(FloatPoint(polygon.boundingBox().x(), minLogicalIntervalTop) + offset) x 49 Source/core/rendering/shapes/RectangleShape.cpp float boundsX = x() - shapeMargin(); x 68 Source/core/rendering/shapes/RectangleShape.cpp float x1 = bounds.x(); x 78 Source/core/rendering/shapes/RectangleShape.cpp x1 = bounds.x() + marginRadiusX - xi; x 83 Source/core/rendering/shapes/RectangleShape.cpp x1 = bounds.x() + marginRadiusX - xi; x 60 Source/core/rendering/shapes/RectangleShape.h float x() const { return m_bounds.x(); } x 58 Source/core/rendering/shapes/Shape.cpp return adoptPtr(new RectangleShape(FloatRect(center.x() - radius, center.y() - radius, radius*2, radius*2), FloatSize(radius, radius))); x 64 Source/core/rendering/shapes/Shape.cpp return adoptPtr(new RectangleShape(FloatRect(center.x() - radii.width(), center.y() - radii.height(), radii.width()*2, radii.height()*2), radii)); x 86 Source/core/rendering/shapes/Shape.cpp return FloatPoint(point.y(), logicalBoxHeight - point.x()); x 121 Source/core/rendering/shapes/Shape.cpp float radiusX = ellipse->floatValueForRadiusInBox(ellipse->radiusX(), center.x(), boxWidth); x 199 Source/core/rendering/shapes/Shape.cpp for (int x = 0; x < imageRect.width(); ++x, pixelArrayOffset += 4) { x 203 Source/core/rendering/shapes/Shape.cpp startX = x; x 204 Source/core/rendering/shapes/Shape.cpp } else if (startX != -1 && (!alphaAboveThreshold || x == imageRect.width() - 1)) { x 205 Source/core/rendering/shapes/Shape.cpp intervals->intervalAt(y + imageRect.y()).unite(IntShapeInterval(startX + imageRect.x(), x + imageRect.x())); x 77 Source/core/rendering/shapes/ShapeInfo.h LayoutUnit shapeLogicalLeft() const { return computedShapeLogicalBoundingBox().x() + logicalLeftOffset(); } x 104 Source/core/rendering/style/BasicShapes.cpp return std::min(std::min(center.x(), boxSize.width() - center.x()), std::min(center.y(), boxSize.height() - center.y())); x 107 Source/core/rendering/style/BasicShapes.cpp return std::max(std::max(center.x(), boxSize.width() - center.x()), std::max(center.y(), boxSize.height() - center.y())); x 116 Source/core/rendering/style/BasicShapes.cpp center.x() - radius + boundingBox.x(), x 159 Source/core/rendering/style/BasicShapes.cpp float radiusX = floatValueForRadiusInBox(m_radiusX, center.x(), boundingBox.width()); x 162 Source/core/rendering/style/BasicShapes.cpp center.x() - radiusX + boundingBox.x(), x 200 Source/core/rendering/style/BasicShapes.cpp path.moveTo(FloatPoint(floatValueForLength(m_values.at(0), boundingBox.width()) + boundingBox.x(), x 203 Source/core/rendering/style/BasicShapes.cpp path.addLineTo(FloatPoint(floatValueForLength(m_values.at(i), boundingBox.width()) + boundingBox.x(), x 253 Source/core/rendering/style/BasicShapes.cpp left + boundingBox.x(), x 228 Source/core/rendering/style/BasicShapes.h void appendPoint(Length x, Length y) { m_values.append(x); m_values.append(y); } x 906 Source/core/rendering/style/RenderStyle.cpp float offsetX = transformOriginX().type() == Percent ? boundingBox.x() : 0; x 993 Source/core/rendering/style/RenderStyle.cpp LayoutRect innerRect(borderRect.x() + leftWidth, x 1299 Source/core/rendering/style/RenderStyle.cpp right = max<LayoutUnit>(right, shadow.x() + blurAndSpread); x 1301 Source/core/rendering/style/RenderStyle.cpp left = min<LayoutUnit>(left, shadow.x() - blurAndSpread); x 1319 Source/core/rendering/style/RenderStyle.cpp right = min<LayoutUnit>(right, shadow.x() - blurAndSpread); x 1321 Source/core/rendering/style/RenderStyle.cpp left = max<LayoutUnit>(left, shadow.x() + blurAndSpread); x 1339 Source/core/rendering/style/RenderStyle.cpp left = min<LayoutUnit>(left, shadow.x() - blurAndSpread); x 1340 Source/core/rendering/style/RenderStyle.cpp right = max<LayoutUnit>(right, shadow.x() + blurAndSpread); x 53 Source/core/rendering/style/ShadowData.h float x() const { return m_location.x(); } x 47 Source/core/rendering/style/ShadowList.cpp shadowLeft = std::min(shadow.x() - blurAndSpread, shadowLeft); x 48 Source/core/rendering/style/ShadowList.cpp shadowRight = std::max(shadow.x() + blurAndSpread, shadowRight); x 70 Source/core/rendering/svg/RenderSVGEllipse.cpp m_fillBoundingBox = FloatRect(m_center.x() - m_radii.width(), m_center.y() - m_radii.height(), 2 * m_radii.width(), 2 * m_radii.height()); x 127 Source/core/rendering/svg/RenderSVGEllipse.cpp FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y()); x 131 Source/core/rendering/svg/RenderSVGEllipse.cpp float xrXOuter = center.x() / (m_radii.width() + halfStrokeWidth); x 136 Source/core/rendering/svg/RenderSVGEllipse.cpp float xrXInner = center.x() / (m_radii.width() - halfStrokeWidth); x 146 Source/core/rendering/svg/RenderSVGEllipse.cpp FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y()); x 150 Source/core/rendering/svg/RenderSVGEllipse.cpp float xrX = center.x() / m_radii.width(); x 97 Source/core/rendering/svg/RenderSVGForeignObject.cpp m_localToParentTransform.translate(m_viewport.x(), m_viewport.y()); x 137 Source/core/rendering/svg/RenderSVGForeignObject.cpp FloatPoint viewportLocation(foreign->x()->currentValue()->value(lengthContext), foreign->y()->currentValue()->value(lengthContext)); x 67 Source/core/rendering/svg/RenderSVGImage.cpp m_objectBoundingBox = FloatRect(image->x()->currentValue()->value(lengthContext), image->y()->currentValue()->value(lengthContext), image->width()->currentValue()->value(lengthContext), image->height()->currentValue()->value(lengthContext)); x 117 Source/core/rendering/svg/RenderSVGInline.cpp quads.append(localToAbsoluteQuad(FloatRect(textBoundingBox.x() + box->x(), textBoundingBox.y() + box->y(), box->logicalWidth(), box->logicalHeight()), false, wasFixed)); x 119 Source/core/rendering/svg/RenderSVGInlineText.cpp LayoutUnit x = box->isLeftToRightDirection() ? rect.x() : rect.maxX(); x 120 Source/core/rendering/svg/RenderSVGInlineText.cpp return LayoutRect(x, rect.y(), caretWidth, rect.height()); x 124 Source/core/rendering/svg/RenderSVGInlineText.cpp LayoutUnit x = box->isLeftToRightDirection() ? rect.maxX() : rect.x(); x 125 Source/core/rendering/svg/RenderSVGInlineText.cpp return LayoutRect(x, rect.y(), caretWidth, rect.height()); x 154 Source/core/rendering/svg/RenderSVGInlineText.cpp return it->value.x != SVGTextLayoutAttributes::emptyValue() || it->value.y != SVGTextLayoutAttributes::emptyValue(); x 187 Source/core/rendering/svg/RenderSVGInlineText.cpp FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height); x 191 Source/core/rendering/svg/RenderSVGInlineText.cpp float distance = powf(fragmentRect.x() - absolutePoint.x(), 2) + x 198 Source/core/rendering/svg/RenderSVGInlineText.cpp closestDistancePosition = fragmentRect.x(); x 206 Source/core/rendering/svg/RenderSVGInlineText.cpp int offset = closestDistanceBox->offsetForPositionInFragment(*closestDistanceFragment, absolutePoint.x() - closestDistancePosition, true); x 118 Source/core/rendering/svg/RenderSVGPath.cpp FloatPoint radiusVector(point.x() - m_zeroLengthLinecapLocations[i].x(), point.y() - m_zeroLengthLinecapLocations[i].y()); x 148 Source/core/rendering/svg/RenderSVGPath.cpp return FloatRect(linecapPosition.x() - strokeWidth / 2, linecapPosition.y() - strokeWidth / 2, strokeWidth, strokeWidth); x 71 Source/core/rendering/svg/RenderSVGRect.cpp m_fillBoundingBox = FloatRect(FloatPoint(rect->x()->currentValue()->value(lengthContext), rect->y()->currentValue()->value(lengthContext)), boundingBoxSize); x 127 Source/core/rendering/svg/RenderSVGRect.cpp return m_fillBoundingBox.contains(point.x(), point.y()); x 132 Source/core/rendering/svg/RenderSVGResourceClipper.cpp transform.translate(objectBoundingBox.x(), objectBoundingBox.y()); x 243 Source/core/rendering/svg/RenderSVGResourceClipper.cpp contentTransformation.translate(targetBoundingBox.x(), targetBoundingBox.y()); x 337 Source/core/rendering/svg/RenderSVGResourceClipper.cpp transform.translate(objectBoundingBox.x(), objectBoundingBox.y()); x 371 Source/core/rendering/svg/RenderSVGResourceClipper.cpp transform.translate(objectBoundingBox.x(), objectBoundingBox.y()); x 134 Source/core/rendering/svg/RenderSVGResourceFilter.cpp imageContext->translate(-paintRect.x(), -paintRect.y()); x 96 Source/core/rendering/svg/RenderSVGResourceGradient.cpp gradientData->userspaceTransform.translate(objectBoundingBox.x(), objectBoundingBox.y()); x 92 Source/core/rendering/svg/RenderSVGResourceMarker.cpp m_localToParentTransform = AffineTransform::translation(m_viewport.x(), m_viewport.y()) * viewportTransform(); x 128 Source/core/rendering/svg/RenderSVGResourceMarker.cpp transform.translate(origin.x(), origin.y()); x 162 Source/core/rendering/svg/RenderSVGResourceMarker.cpp transformation.translate(-mappedOrigin.x(), -mappedOrigin.y()); x 120 Source/core/rendering/svg/RenderSVGResourceMasker.cpp contentTransformation.translate(targetBoundingBox.x(), targetBoundingBox.y()); x 185 Source/core/rendering/svg/RenderSVGResourceMasker.cpp transform.translate(objectBoundingBox.x(), objectBoundingBox.y()); x 114 Source/core/rendering/svg/RenderSVGResourcePattern.cpp patternData->transform.translate(tileBoundaries.x(), tileBoundaries.y()); x 208 Source/core/rendering/svg/RenderSVGResourcePattern.cpp return SVGLengthContext::resolveRectangle(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height()); x 265 Source/core/rendering/svg/RenderSVGRoot.cpp childPaintInfo.applyTransform(AffineTransform::translation(adjustedPaintOffset.x(), adjustedPaintOffset.y()) * localToBorderBoxTransform()); x 342 Source/core/rendering/svg/RenderSVGRoot.cpp m_localToBorderBoxTransform = AffineTransform(scale, 0, 0, scale, borderAndPadding.width() + translate.x(), borderAndPadding.height() + translate.y()) * m_localToBorderBoxTransform; x 349 Source/core/rendering/svg/RenderSVGRoot.cpp if (x()) x 350 Source/core/rendering/svg/RenderSVGRoot.cpp m_localToParentTransform.setE(m_localToParentTransform.e() + roundToInt(x())); x 463 Source/core/rendering/svg/RenderSVGText.cpp return closestBox->renderer().positionForPoint(LayoutPoint(pointInContents.x(), closestBox->y())); x 92 Source/core/rendering/svg/RenderSVGTransformableContainer.cpp useElement->x()->currentValue()->value(lengthContext), x 68 Source/core/rendering/svg/RenderSVGViewportContainer.cpp m_viewport = FloatRect(svg->x()->currentValue()->value(lengthContext), svg->y()->currentValue()->value(lengthContext), svg->width()->currentValue()->value(lengthContext), svg->height()->currentValue()->value(lengthContext)); x 130 Source/core/rendering/svg/RenderSVGViewportContainer.cpp m_localToParentTransform = AffineTransform::translation(m_viewport.x(), m_viewport.y()) * viewportTransform(); x 132 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatPoint textOrigin(fragment.x, fragment.y); x 579 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatPoint decorationOrigin(fragment.x, fragment.y); x 615 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatPoint textOrigin(fragment.x, fragment.y); x 629 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatSize offset(shadow.x(), shadow.y()); x 765 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height); x 786 Source/core/rendering/svg/SVGInlineTextBox.cpp FloatPoint boxOrigin(x(), y()); x 42 Source/core/rendering/svg/SVGInlineTextBox.h virtual int offsetForPosition(float x, bool includePartialGlyphs = true) const OVERRIDE; x 113 Source/core/rendering/svg/SVGPathData.cpp float x = rect->x()->currentValue()->value(lengthContext); x 125 Source/core/rendering/svg/SVGPathData.cpp path.addRoundedRect(FloatRect(x, y, width, height), FloatSize(rx, ry)); x 129 Source/core/rendering/svg/SVGPathData.cpp path.addRect(FloatRect(x, y, width, height)); x 346 Source/core/rendering/svg/SVGRenderTreeAsText.cpp writeNameValuePair(ts, "x", element.x()->currentValue()->value(lengthContext)); x 438 Source/core/rendering/svg/SVGRenderTreeAsText.cpp ts << "text run " << i + 1 << " at (" << fragment.x << "," << fragment.y << ")"; x 300 Source/core/rendering/svg/SVGRenderingContext.cpp bufferedRenderingContext->translate(-boundingBox.x(), -boundingBox.y()); x 134 Source/core/rendering/svg/SVGRootInlineBox.cpp textBox->setX(boxRect.x()); x 147 Source/core/rendering/svg/SVGRootInlineBox.cpp flowBox->setX(boxRect.x()); x 171 Source/core/rendering/svg/SVGRootInlineBox.cpp child->adjustPosition(-childRect.x(), -childRect.y()); x 200 Source/core/rendering/svg/SVGRootInlineBox.cpp if (point.x() < leaf->left() + leaf->logicalWidth()) x 66 Source/core/rendering/svg/SVGTextChunk.cpp length += fragment.x - (lastFragment->x + lastFragment->width); x 233 Source/core/rendering/svg/SVGTextChunkBuilder.cpp fragment.x += textLengthShift * atCharacter; x 248 Source/core/rendering/svg/SVGTextChunkBuilder.cpp fragment.x += textAnchorShift; x 254 Source/core/rendering/svg/SVGTextChunkBuilder.cpp spacingAndGlyphsTransform.translate(fragment.x, fragment.y); x 261 Source/core/rendering/svg/SVGTextChunkBuilder.cpp spacingAndGlyphsTransform.translate(-fragment.x, -fragment.y); x 34 Source/core/rendering/svg/SVGTextFragment.h , x(0) x 66 Source/core/rendering/svg/SVGTextFragment.h float x; x 82 Source/core/rendering/svg/SVGTextFragment.h result.setE(result.e() + x); x 84 Source/core/rendering/svg/SVGTextFragment.h result.translate(-x, -y); x 66 Source/core/rendering/svg/SVGTextLayoutAttributes.cpp dumpSVGCharacterDataMapValue("x", data.x); x 36 Source/core/rendering/svg/SVGTextLayoutAttributes.h float x; x 68 Source/core/rendering/svg/SVGTextLayoutAttributes.h : x(SVGTextLayoutAttributes::emptyValue()) x 147 Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp data.x = 0; x 152 Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp if (data.x == SVGTextLayoutAttributes::emptyValue()) x 153 Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp data.x = 0; x 167 Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp data.x = xList->at(i)->value(lengthContext); x 182 Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp RefPtr<SVGLengthList> xList = position.element->x()->currentValue(); x 59 Source/core/rendering/svg/SVGTextLayoutEngine.cpp void SVGTextLayoutEngine::updateCharacerPositionIfNeeded(float& x, float& y) x 66 Source/core/rendering/svg/SVGTextLayoutEngine.cpp if (x == SVGTextLayoutAttributes::emptyValue()) x 67 Source/core/rendering/svg/SVGTextLayoutEngine.cpp x = m_x + m_dx; x 76 Source/core/rendering/svg/SVGTextLayoutEngine.cpp void SVGTextLayoutEngine::updateCurrentTextPosition(float x, float y, float glyphAdvance) x 80 Source/core/rendering/svg/SVGTextLayoutEngine.cpp m_x = x; x 83 Source/core/rendering/svg/SVGTextLayoutEngine.cpp m_x = x + glyphAdvance; x 283 Source/core/rendering/svg/SVGTextLayoutEngine.cpp , i, fragment.x, fragment.y, fragment.width, fragment.height, fragment.characterOffset, fragment.length, fragmentString.utf8().data()); x 485 Source/core/rendering/svg/SVGTextLayoutEngine.cpp float x = data.x; x 505 Source/core/rendering/svg/SVGTextLayoutEngine.cpp updateCharacerPositionIfNeeded(x, y); x 532 Source/core/rendering/svg/SVGTextLayoutEngine.cpp if (x != SVGTextLayoutAttributes::emptyValue()) x 533 Source/core/rendering/svg/SVGTextLayoutEngine.cpp m_textPathCurrentOffset = x + m_textPathStartOffset; x 563 Source/core/rendering/svg/SVGTextLayoutEngine.cpp x = point.x(); x 572 Source/core/rendering/svg/SVGTextLayoutEngine.cpp x += baselineShift; x 575 Source/core/rendering/svg/SVGTextLayoutEngine.cpp x -= kerning; x 579 Source/core/rendering/svg/SVGTextLayoutEngine.cpp x += m_dx; x 601 Source/core/rendering/svg/SVGTextLayoutEngine.cpp m_currentTextFragment.x = x; x 625 Source/core/rendering/svg/SVGTextLayoutEngine.cpp updateCurrentTextPosition(x, y, glyphAdvance); x 631 Source/core/rendering/svg/SVGTextLayoutEngine.cpp float xNew = x - m_dx; x 61 Source/core/rendering/svg/SVGTextLayoutEngine.h void updateCharacerPositionIfNeeded(float& x, float& y); x 62 Source/core/rendering/svg/SVGTextLayoutEngine.h void updateCurrentTextPosition(float x, float y, float glyphAdvance); x 330 Source/core/rendering/svg/SVGTextQuery.cpp data->startPosition = FloatPoint(fragment.x, fragment.y); x 379 Source/core/rendering/svg/SVGTextQuery.cpp data->endPosition = FloatPoint(fragment.x, fragment.y); x 465 Source/core/rendering/svg/SVGTextQuery.cpp extent.setLocation(FloatPoint(fragment.x, fragment.y - queryData->textRenderer->scaledFont().fontMetrics().floatAscent() / scalingFactor)); x 151 Source/core/rendering/svg/SVGTextRunRenderingContext.cpp glyphPathTransform.translate(currentPoint.x() + glyphOrigin.x(), currentPoint.y() + glyphOrigin.y()); x 55 Source/core/svg/PatternAttributes.h SVGLength* x() const { return m_x.get(); } x 164 Source/core/svg/SVGAnimateMotionElement.cpp float x = 0; x 165 Source/core/svg/SVGAnimateMotionElement.cpp if (!parseNumber(ptr, end, x)) x 172 Source/core/svg/SVGAnimateMotionElement.cpp point = FloatPoint(x, y); x 238 Source/core/svg/SVGAnimateMotionElement.cpp m_toPoint = FloatPoint(m_fromPoint.x() + byPoint.x(), m_fromPoint.y() + byPoint.y()); x 263 Source/core/svg/SVGAnimateMotionElement.cpp animateAdditiveNumber(percentage, repeatCount, m_fromPoint.x(), m_toPoint.x(), toPointAtEndOfDuration.x(), animatedX); x 285 Source/core/svg/SVGAnimateMotionElement.cpp position.move(positionAtEndOfDuration.x() * repeatCount, positionAtEndOfDuration.y() * repeatCount); x 288 Source/core/svg/SVGAnimateMotionElement.cpp transform->translate(position.x(), position.y()); x 46 Source/core/svg/SVGCursorElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 85 Source/core/svg/SVGDocument.cpp m_translate = FloatPoint(start.x() - svg->currentTranslate().x(), start.y() - svg->currentTranslate().y()); x 91 Source/core/svg/SVGDocument.cpp svg->setCurrentTranslate(FloatPoint(pos.x() - m_translate.x(), pos.y() - m_translate.y())); x 114 Source/core/svg/SVGFEDiffuseLightingElement.cpp return lightSource->setX(lightElement->x()->currentValue()->value()); x 53 Source/core/svg/SVGFEDropShadowElement.cpp void SVGFEDropShadowElement::setStdDeviation(float x, float y) x 55 Source/core/svg/SVGFEDropShadowElement.cpp stdDeviationX()->baseValue()->setValue(x); x 49 Source/core/svg/SVGFEGaussianBlurElement.cpp void SVGFEGaussianBlurElement::setStdDeviation(float x, float y) x 51 Source/core/svg/SVGFEGaussianBlurElement.cpp stdDeviationX()->baseValue()->setValue(x); x 42 Source/core/svg/SVGFELightElement.h SVGAnimatedNumber* x() { return m_x.get(); } x 43 Source/core/svg/SVGFELightElement.h const SVGAnimatedNumber* x() const { return m_x.get(); } x 61 Source/core/svg/SVGFEMorphologyElement.cpp void SVGFEMorphologyElement::setRadius(float x, float y) x 63 Source/core/svg/SVGFEMorphologyElement.cpp radiusX()->baseValue()->setValue(x); x 41 Source/core/svg/SVGFEPointLightElement.cpp return PointLightSource::create(FloatPoint3D(x()->currentValue()->value(), y()->currentValue()->value(), z()->currentValue()->value())); x 121 Source/core/svg/SVGFESpecularLightingElement.cpp return lightSource->setX(lightElement->x()->currentValue()->value()); x 41 Source/core/svg/SVGFESpotLightElement.cpp FloatPoint3D pos(x()->currentValue()->value(), y()->currentValue()->value(), z()->currentValue()->value()); x 69 Source/core/svg/SVGFilterElement.cpp void SVGFilterElement::setFilterRes(unsigned x, unsigned y) x 71 Source/core/svg/SVGFilterElement.cpp filterResX()->baseValue()->setValue(x); x 43 Source/core/svg/SVGFilterElement.h void setFilterRes(unsigned x, unsigned y); x 47 Source/core/svg/SVGFilterElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 47 Source/core/svg/SVGFilterPrimitiveStandardAttributes.h static SVGAnimatedLength* x(SVGFilterPrimitiveStandardAttributes& object) { return object.x(); } x 53 Source/core/svg/SVGFilterPrimitiveStandardAttributes.h SVGAnimatedLength* x() const { return m_x.get(); } x 53 Source/core/svg/SVGFitToViewBox.cpp return preserveAspectRatio->getCTM(viewBoxRect.x(), viewBoxRect.y(), viewBoxRect.width(), viewBoxRect.height(), viewWidth, viewHeight); x 35 Source/core/svg/SVGForeignObjectElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 97 Source/core/svg/SVGGlyphRefElement.cpp void SVGGlyphRefElement::setX(float x) x 101 Source/core/svg/SVGGlyphRefElement.cpp m_x = x; x 41 Source/core/svg/SVGGlyphRefElement.h float x() const { return m_x; } x 41 Source/core/svg/SVGImageElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 58 Source/core/svg/SVGIntegerOptionalInteger.cpp int x = static_cast<int>(roundf(floatX)); x 61 Source/core/svg/SVGIntegerOptionalInteger.cpp return SVGIntegerOptionalInteger::create(SVGInteger::create(x), SVGInteger::create(y)); x 75 Source/core/svg/SVGIntegerOptionalInteger.cpp float x, y; x 76 Source/core/svg/SVGIntegerOptionalInteger.cpp if (!parseNumberOptionalNumber(value, x, y)) { x 78 Source/core/svg/SVGIntegerOptionalInteger.cpp x = y = 0; x 81 Source/core/svg/SVGIntegerOptionalInteger.cpp m_firstInteger->setValue(x); x 101 Source/core/svg/SVGIntegerOptionalInteger.cpp float x = m_firstInteger->value(); x 103 Source/core/svg/SVGIntegerOptionalInteger.cpp animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger->firstInteger()->value(), toInteger->firstInteger()->value(), toAtEndOfDurationInteger->firstInteger()->value(), x); x 105 Source/core/svg/SVGIntegerOptionalInteger.cpp m_firstInteger->setValue(static_cast<int>(roundf(x))); x 53 Source/core/svg/SVGLengthContext.cpp RefPtr<SVGLength> x = passX; x 61 Source/core/svg/SVGLengthContext.cpp return FloatRect(x->value(lengthContext), y->value(lengthContext), width->value(lengthContext), height->value(lengthContext)); x 66 Source/core/svg/SVGLengthContext.cpp x->value(lengthContext) + viewport.x(), x 74 Source/core/svg/SVGLengthContext.cpp RefPtr<SVGLength> x = passX; x 80 Source/core/svg/SVGLengthContext.cpp return FloatPoint(x->value(lengthContext), y->value(lengthContext)); x 84 Source/core/svg/SVGLengthContext.cpp return FloatPoint(x->valueAsPercentage(), y->valueAsPercentage()); x 89 Source/core/svg/SVGLengthContext.cpp RefPtr<SVGLength> x = passX; x 94 Source/core/svg/SVGLengthContext.cpp return x->value(lengthContext); x 98 Source/core/svg/SVGLengthContext.cpp return x->valueAsPercentage(); x 59 Source/core/svg/SVGLengthContext.h return SVGLengthContext::resolveRectangle(context, type, viewport, context->x()->currentValue(), context->y()->currentValue(), context->width()->currentValue(), context->height()->currentValue()); x 62 Source/core/svg/SVGLengthContext.h static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitType, const FloatRect& viewport, PassRefPtr<SVGLength> x, PassRefPtr<SVGLength> y, PassRefPtr<SVGLength> width, PassRefPtr<SVGLength> height); x 63 Source/core/svg/SVGLengthContext.h static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, PassRefPtr<SVGLength> x, PassRefPtr<SVGLength> y); x 38 Source/core/svg/SVGMaskElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 169 Source/core/svg/SVGMatrixTearOff.cpp PassRefPtr<SVGMatrixTearOff> SVGMatrixTearOff::rotateFromVector(double x, double y, ExceptionState& exceptionState) x 171 Source/core/svg/SVGMatrixTearOff.cpp if (!x || !y) x 175 Source/core/svg/SVGMatrixTearOff.cpp copy.rotateFromVector(x, y); x 84 Source/core/svg/SVGMatrixTearOff.h PassRefPtr<SVGMatrixTearOff> rotateFromVector(double x, double y, ExceptionState&); x 53 Source/core/svg/SVGNumberOptionalNumber.cpp float x, y; x 54 Source/core/svg/SVGNumberOptionalNumber.cpp if (!parseNumberOptionalNumber(value, x, y)) { x 55 Source/core/svg/SVGNumberOptionalNumber.cpp x = y = 0; x 58 Source/core/svg/SVGNumberOptionalNumber.cpp return SVGNumberOptionalNumber::create(SVGNumber::create(x), SVGNumber::create(y)); x 72 Source/core/svg/SVGNumberOptionalNumber.cpp float x, y; x 73 Source/core/svg/SVGNumberOptionalNumber.cpp if (!parseNumberOptionalNumber(value, x, y)) { x 75 Source/core/svg/SVGNumberOptionalNumber.cpp x = y = 0; x 78 Source/core/svg/SVGNumberOptionalNumber.cpp m_firstNumber->setValue(x); x 98 Source/core/svg/SVGNumberOptionalNumber.cpp float x = m_firstNumber->value(); x 100 Source/core/svg/SVGNumberOptionalNumber.cpp animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumber->firstNumber()->value(), toNumber->firstNumber()->value(), toAtEndOfDurationNumber->firstNumber()->value(), x); x 102 Source/core/svg/SVGNumberOptionalNumber.cpp m_firstNumber->setValue(x); x 36 Source/core/svg/SVGParserUtilities.cpp static inline bool isValidRange(const FloatType& x) x 39 Source/core/svg/SVGParserUtilities.cpp return x >= -max && x <= max; x 198 Source/core/svg/SVGParserUtilities.cpp static bool genericParseNumberOptionalNumber(const CharType*& ptr, const CharType* end, float& x, float& y) x 200 Source/core/svg/SVGParserUtilities.cpp if (!parseNumber(ptr, end, x)) x 204 Source/core/svg/SVGParserUtilities.cpp y = x; x 211 Source/core/svg/SVGParserUtilities.cpp bool parseNumberOptionalNumber(const String& string, float& x, float& y) x 218 Source/core/svg/SVGParserUtilities.cpp return genericParseNumberOptionalNumber(ptr, end, x, y); x 222 Source/core/svg/SVGParserUtilities.cpp return genericParseNumberOptionalNumber(ptr, end, x, y); x 420 Source/core/svg/SVGParserUtilities.cpp float x; x 422 Source/core/svg/SVGParserUtilities.cpp if (!parseNumber(current, end, x) x 425 Source/core/svg/SVGParserUtilities.cpp point = FloatPoint(x, y); x 43 Source/core/svg/SVGPathBlender.cpp return FloatPoint(blend(a.x(), b.x(), progress), blend(a.y(), b.y(), progress)); x 56 Source/core/svg/SVGPathBlender.cpp float fromValue = blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y(); x 57 Source/core/svg/SVGPathBlender.cpp float toValue = blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y(); x 87 Source/core/svg/SVGPathBlender.cpp animatedPoint.move(-m_toCurrentPoint.x(), -m_toCurrentPoint.y()); x 99 Source/core/svg/SVGPathBlender.cpp animatedPoint.move(-currentPoint.x(), -currentPoint.y()); x 140 Source/core/svg/SVGPathBlender.cpp m_fromCurrentPoint.setX(m_fromMode == AbsoluteCoordinates ? fromX : m_fromCurrentPoint.x() + fromX); x 141 Source/core/svg/SVGPathBlender.cpp m_toCurrentPoint.setX(m_toMode == AbsoluteCoordinates ? toX : m_toCurrentPoint.x() + toX); x 59 Source/core/svg/SVGPathByteStreamBuilder.cpp writeType<float>(point.x()); x 91 Source/core/svg/SVGPathByteStreamBuilder.cpp void SVGPathByteStreamBuilder::lineToHorizontal(float x, PathCoordinateMode mode) x 95 Source/core/svg/SVGPathByteStreamBuilder.cpp buffer.writeFloat(x); x 61 Source/core/svg/SVGPathByteStreamSource.cpp bool SVGPathByteStreamSource::parseLineToHorizontalSegment(float& x) x 63 Source/core/svg/SVGPathByteStreamSource.cpp x = readFloat(); x 69 Source/core/svg/SVGPathByteStreamSource.h float x = readType<float>(); x 71 Source/core/svg/SVGPathByteStreamSource.h return FloatPoint(x, y); x 95 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegMovetoAbs> SVGPathElement::createSVGPathSegMovetoAbs(float x, float y) x 97 Source/core/svg/SVGPathElement.cpp return SVGPathSegMovetoAbs::create(0, PathSegUndefinedRole, x, y); x 100 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegMovetoRel> SVGPathElement::createSVGPathSegMovetoRel(float x, float y) x 102 Source/core/svg/SVGPathElement.cpp return SVGPathSegMovetoRel::create(0, PathSegUndefinedRole, x, y); x 105 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegLinetoAbs> SVGPathElement::createSVGPathSegLinetoAbs(float x, float y) x 107 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoAbs::create(0, PathSegUndefinedRole, x, y); x 110 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegLinetoRel> SVGPathElement::createSVGPathSegLinetoRel(float x, float y) x 112 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoRel::create(0, PathSegUndefinedRole, x, y); x 115 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoCubicAbs> SVGPathElement::createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2) x 117 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicAbs::create(0, PathSegUndefinedRole, x, y, x1, y1, x2, y2); x 120 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoCubicRel> SVGPathElement::createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2) x 122 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicRel::create(0, PathSegUndefinedRole, x, y, x1, y1, x2, y2); x 125 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoQuadraticAbs> SVGPathElement::createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1) x 127 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticAbs::create(0, PathSegUndefinedRole, x, y, x1, y1); x 130 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoQuadraticRel> SVGPathElement::createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1) x 132 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticRel::create(0, PathSegUndefinedRole, x, y, x1, y1); x 135 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegArcAbs> SVGPathElement::createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 137 Source/core/svg/SVGPathElement.cpp return SVGPathSegArcAbs::create(0, PathSegUndefinedRole, x, y, r1, r2, angle, largeArcFlag, sweepFlag); x 140 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegArcRel> SVGPathElement::createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 142 Source/core/svg/SVGPathElement.cpp return SVGPathSegArcRel::create(0, PathSegUndefinedRole, x, y, r1, r2, angle, largeArcFlag, sweepFlag); x 145 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegLinetoHorizontalAbs> SVGPathElement::createSVGPathSegLinetoHorizontalAbs(float x) x 147 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoHorizontalAbs::create(0, PathSegUndefinedRole, x); x 150 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegLinetoHorizontalRel> SVGPathElement::createSVGPathSegLinetoHorizontalRel(float x) x 152 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoHorizontalRel::create(0, PathSegUndefinedRole, x); x 165 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2) x 167 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicSmoothAbs::create(0, PathSegUndefinedRole, x, y, x2, y2); x 170 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2) x 172 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicSmoothRel::create(0, PathSegUndefinedRole, x, y, x2, y2); x 175 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothAbs(float x, float y) x 177 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticSmoothAbs::create(0, PathSegUndefinedRole, x, y); x 180 Source/core/svg/SVGPathElement.cpp PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothRel(float x, float y) x 182 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticSmoothRel::create(0, PathSegUndefinedRole, x, y); x 65 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegMovetoAbs> createSVGPathSegMovetoAbs(float x, float y); x 66 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegMovetoRel> createSVGPathSegMovetoRel(float x, float y); x 67 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegLinetoAbs> createSVGPathSegLinetoAbs(float x, float y); x 68 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegLinetoRel> createSVGPathSegLinetoRel(float x, float y); x 69 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoCubicAbs> createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2); x 70 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoCubicRel> createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2); x 71 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoQuadraticAbs> createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1); x 72 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoQuadraticRel> createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1); x 73 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegArcAbs> createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag); x 74 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegArcRel> createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag); x 75 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegLinetoHorizontalAbs> createSVGPathSegLinetoHorizontalAbs(float x); x 76 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegLinetoHorizontalRel> createSVGPathSegLinetoHorizontalRel(float x); x 79 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2); x 80 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2); x 81 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> createSVGPathSegCurvetoQuadraticSmoothAbs(float x, float y); x 82 Source/core/svg/SVGPathElement.h PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> createSVGPathSegCurvetoQuadraticSmoothRel(float x, float y); x 158 Source/core/svg/SVGPathParser.cpp point1.move(-m_controlPoint.x(), -m_controlPoint.y()); x 183 Source/core/svg/SVGPathParser.cpp point1.move(2 * m_controlPoint.x(), 2 * m_controlPoint.y()); x 184 Source/core/svg/SVGPathParser.cpp FloatPoint point2(targetPoint.x() + 2 * m_controlPoint.x(), targetPoint.y() + 2 * m_controlPoint.y()); x 186 Source/core/svg/SVGPathParser.cpp point1.move(2 * m_currentPoint.x(), 2 * m_currentPoint.y()); x 187 Source/core/svg/SVGPathParser.cpp point2.move(3 * m_currentPoint.x(), 3 * m_currentPoint.y()); x 218 Source/core/svg/SVGPathParser.cpp cubicPoint.move(-m_controlPoint.x(), -m_controlPoint.y()); x 219 Source/core/svg/SVGPathParser.cpp FloatPoint point1(m_currentPoint.x() + 2 * cubicPoint.x(), m_currentPoint.y() + 2 * cubicPoint.y()); x 220 Source/core/svg/SVGPathParser.cpp FloatPoint point2(targetPoint.x() + 2 * cubicPoint.x(), targetPoint.y() + 2 * cubicPoint.y()); x 423 Source/core/svg/SVGPathParser.cpp float squareX = transformedMidPoint.x() * transformedMidPoint.x(); x 483 Source/core/svg/SVGPathParser.cpp point1.move(centerPoint.x(), centerPoint.y()); x 485 Source/core/svg/SVGPathParser.cpp targetPoint.move(centerPoint.x(), centerPoint.y()); x 30 Source/core/svg/SVGPathSegArc.h SVGPathSegArc(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 32 Source/core/svg/SVGPathSegArc.h , m_x(x) x 42 Source/core/svg/SVGPathSegArc.h float x() const { return m_x; } x 43 Source/core/svg/SVGPathSegArc.h void setX(float x) x 45 Source/core/svg/SVGPathSegArc.h m_x = x; x 31 Source/core/svg/SVGPathSegArcAbs.h static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 33 Source/core/svg/SVGPathSegArcAbs.h return adoptRef(new SVGPathSegArcAbs(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)); x 37 Source/core/svg/SVGPathSegArcAbs.h SVGPathSegArcAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 38 Source/core/svg/SVGPathSegArcAbs.h : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag) x 31 Source/core/svg/SVGPathSegArcRel.h static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 33 Source/core/svg/SVGPathSegArcRel.h return adoptRef(new SVGPathSegArcRel(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)); x 37 Source/core/svg/SVGPathSegArcRel.h SVGPathSegArcRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) x 38 Source/core/svg/SVGPathSegArcRel.h : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag) x 30 Source/core/svg/SVGPathSegCurvetoCubic.h SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) x 32 Source/core/svg/SVGPathSegCurvetoCubic.h , m_x(x) x 41 Source/core/svg/SVGPathSegCurvetoCubic.h float x() const { return m_x; } x 42 Source/core/svg/SVGPathSegCurvetoCubic.h void setX(float x) x 44 Source/core/svg/SVGPathSegCurvetoCubic.h m_x = x; x 31 Source/core/svg/SVGPathSegCurvetoCubicAbs.h static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) x 33 Source/core/svg/SVGPathSegCurvetoCubicAbs.h return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2)); x 37 Source/core/svg/SVGPathSegCurvetoCubicAbs.h SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) x 38 Source/core/svg/SVGPathSegCurvetoCubicAbs.h : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2) x 31 Source/core/svg/SVGPathSegCurvetoCubicRel.h static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) x 33 Source/core/svg/SVGPathSegCurvetoCubicRel.h return adoptRef(new SVGPathSegCurvetoCubicRel(element, role, x, y, x1, y1, x2, y2)); x 37 Source/core/svg/SVGPathSegCurvetoCubicRel.h SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) x 38 Source/core/svg/SVGPathSegCurvetoCubicRel.h : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2) x 30 Source/core/svg/SVGPathSegCurvetoCubicSmooth.h SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) x 32 Source/core/svg/SVGPathSegCurvetoCubicSmooth.h , m_x(x) x 39 Source/core/svg/SVGPathSegCurvetoCubicSmooth.h float x() const { return m_x; } x 40 Source/core/svg/SVGPathSegCurvetoCubicSmooth.h void setX(float x) x 42 Source/core/svg/SVGPathSegCurvetoCubicSmooth.h m_x = x; x 31 Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) x 33 Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2)); x 37 Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) x 38 Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2) x 31 Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) x 33 Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, role, x, y, x2, y2)); x 37 Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) x 38 Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2) x 30 Source/core/svg/SVGPathSegCurvetoQuadratic.h SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) x 32 Source/core/svg/SVGPathSegCurvetoQuadratic.h , m_x(x) x 39 Source/core/svg/SVGPathSegCurvetoQuadratic.h float x() const { return m_x; } x 40 Source/core/svg/SVGPathSegCurvetoQuadratic.h void setX(float x) x 42 Source/core/svg/SVGPathSegCurvetoQuadratic.h m_x = x; x 31 Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) x 33 Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1)); x 37 Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) x 38 Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1) x 31 Source/core/svg/SVGPathSegCurvetoQuadraticRel.h static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) x 33 Source/core/svg/SVGPathSegCurvetoQuadraticRel.h return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, role, x, y, x1, y1)); x 37 Source/core/svg/SVGPathSegCurvetoQuadraticRel.h SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) x 38 Source/core/svg/SVGPathSegCurvetoQuadraticRel.h : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1) x 31 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y)); x 37 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h : SVGPathSegSingleCoordinate(element, role, x, y) x 31 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y)); x 37 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h : SVGPathSegSingleCoordinate(element, role, x, y) x 31 Source/core/svg/SVGPathSegLinetoAbs.h static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegLinetoAbs.h return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y)); x 37 Source/core/svg/SVGPathSegLinetoAbs.h SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegLinetoAbs.h : SVGPathSegSingleCoordinate(element, role, x, y) x 30 Source/core/svg/SVGPathSegLinetoHorizontal.h SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x) x 32 Source/core/svg/SVGPathSegLinetoHorizontal.h , m_x(x) x 36 Source/core/svg/SVGPathSegLinetoHorizontal.h float x() const { return m_x; } x 37 Source/core/svg/SVGPathSegLinetoHorizontal.h void setX(float x) x 39 Source/core/svg/SVGPathSegLinetoHorizontal.h m_x = x; x 31 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x) x 33 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x)); x 37 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x) x 38 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h : SVGPathSegLinetoHorizontal(element, role, x) x 31 Source/core/svg/SVGPathSegLinetoHorizontalRel.h static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x) x 33 Source/core/svg/SVGPathSegLinetoHorizontalRel.h return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x)); x 37 Source/core/svg/SVGPathSegLinetoHorizontalRel.h SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x) x 38 Source/core/svg/SVGPathSegLinetoHorizontalRel.h : SVGPathSegLinetoHorizontal(element, role, x) x 31 Source/core/svg/SVGPathSegLinetoRel.h static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegLinetoRel.h return adoptRef(new SVGPathSegLinetoRel(element, role, x, y)); x 37 Source/core/svg/SVGPathSegLinetoRel.h SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegLinetoRel.h : SVGPathSegSingleCoordinate(element, role, x, y) x 64 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 66 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 74 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 76 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 79 Source/core/svg/SVGPathSegListBuilder.cpp void SVGPathSegListBuilder::lineToHorizontal(float x, PathCoordinateMode mode) x 84 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalAbs::create(m_pathElement, m_pathSegRole, x)); x 86 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalRel::create(m_pathElement, m_pathSegRole, x)); x 104 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y())); x 106 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y())); x 114 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicSmoothAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point2.x(), point2.y())); x 116 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicSmoothRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point2.x(), point2.y())); x 124 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y())); x 126 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y())); x 134 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticSmoothAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 136 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticSmoothRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); x 144 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag)); x 146 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag)); x 65 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(moveTo->x(), moveTo->y()); x 74 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(lineTo->x(), lineTo->y()); x 78 Source/core/svg/SVGPathSegListSource.cpp bool SVGPathSegListSource::parseLineToHorizontalSegment(float& x) x 83 Source/core/svg/SVGPathSegListSource.cpp x = horizontal->x(); x 103 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(cubic->x(), cubic->y()); x 113 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(cubicSmooth->x(), cubicSmooth->y()); x 123 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(quadratic->x(), quadratic->y()); x 132 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(quadraticSmooth->x(), quadraticSmooth->y()); x 146 Source/core/svg/SVGPathSegListSource.cpp targetPoint = FloatPoint(arcTo->x(), arcTo->y()); x 31 Source/core/svg/SVGPathSegMovetoAbs.h static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegMovetoAbs.h return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y)); x 37 Source/core/svg/SVGPathSegMovetoAbs.h SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegMovetoAbs.h : SVGPathSegSingleCoordinate(element, role, x, y) x 31 Source/core/svg/SVGPathSegMovetoRel.h static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 33 Source/core/svg/SVGPathSegMovetoRel.h return adoptRef(new SVGPathSegMovetoRel(element, role, x, y)); x 37 Source/core/svg/SVGPathSegMovetoRel.h SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 38 Source/core/svg/SVGPathSegMovetoRel.h : SVGPathSegSingleCoordinate(element, role, x, y) x 41 Source/core/svg/SVGPathSegWithContext.h float x() const { return m_x; } x 42 Source/core/svg/SVGPathSegWithContext.h void setX(float x) x 44 Source/core/svg/SVGPathSegWithContext.h m_x = x; x 56 Source/core/svg/SVGPathSegWithContext.h SVGPathSegSingleCoordinate(SVGPathElement* element, SVGPathSegRole role, float x, float y) x 58 Source/core/svg/SVGPathSegWithContext.h , m_x(x) x 52 Source/core/svg/SVGPathStringBuilder.cpp appendFloat(stringBuilder, point.x()); x 88 Source/core/svg/SVGPathStringBuilder.cpp void SVGPathStringBuilder::lineToHorizontal(float x, PathCoordinateMode mode) x 90 Source/core/svg/SVGPathStringBuilder.cpp emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'H' : 'h', x); x 184 Source/core/svg/SVGPathStringSource.cpp bool SVGPathStringSource::parseLineToHorizontalSegment(float& x) x 187 Source/core/svg/SVGPathStringSource.cpp return parseNumber(m_current.m_character8, m_end.m_character8, x); x 188 Source/core/svg/SVGPathStringSource.cpp return parseNumber(m_current.m_character16, m_end.m_character16, x); x 150 Source/core/svg/SVGPatternElement.cpp if (!attributes.hasX() && element->x()->isSpecified()) x 151 Source/core/svg/SVGPatternElement.cpp attributes.setX(element->x()->currentValue()); x 50 Source/core/svg/SVGPatternElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 75 Source/core/svg/SVGPoint.cpp float x = 0.0f; x 77 Source/core/svg/SVGPoint.cpp bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, false); x 90 Source/core/svg/SVGPoint.cpp m_value = FloatPoint(x, y); x 96 Source/core/svg/SVGPoint.cpp transform.map(static_cast<double>(x()), static_cast<double>(y()), newX, newY); x 122 Source/core/svg/SVGPoint.cpp builder.append(String::number(x())); x 62 Source/core/svg/SVGPoint.h float x() const { return m_value.x(); } x 90 Source/core/svg/SVGPointList.cpp float x = 0.0f; x 92 Source/core/svg/SVGPointList.cpp bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, false); x 96 Source/core/svg/SVGPointList.cpp append(SVGPoint::create(FloatPoint(x, y))); x 193 Source/core/svg/SVGPointList.cpp float animatedX = at(i)->x(); x 204 Source/core/svg/SVGPointList.cpp animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), effectiveTo.x(), effectiveToAtEnd.x(), animatedX); x 51 Source/core/svg/SVGPointTearOff.h float x() { return target()->x(); } x 245 Source/core/svg/SVGPreserveAspectRatio.cpp destRect.setX(destRect.x() + origDestWidth / 2 - destRect.width() / 2); x 250 Source/core/svg/SVGPreserveAspectRatio.cpp destRect.setX(destRect.x() + origDestWidth - destRect.width()); x 287 Source/core/svg/SVGPreserveAspectRatio.cpp srcRect.setX(srcRect.x() + imageSize.width() / 2 - srcRect.width() / 2); x 292 Source/core/svg/SVGPreserveAspectRatio.cpp srcRect.setX(srcRect.x() + imageSize.width() - srcRect.width()); x 73 Source/core/svg/SVGRect.cpp float x = 0.0f; x 77 Source/core/svg/SVGRect.cpp bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y) && parseNumber(ptr, end, width) && parseNumber(ptr, end, height, false); x 92 Source/core/svg/SVGRect.cpp m_value = FloatRect(x, y, width, height); x 123 Source/core/svg/SVGRect.cpp builder.append(String::number(x())); x 145 Source/core/svg/SVGRect.cpp float animatedX = x(); x 149 Source/core/svg/SVGRect.cpp animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->x(), toRect->x(), toAtEndOfDurationRect->x(), animatedX); x 57 Source/core/svg/SVGRect.h float x() const { return m_value.x(); } x 35 Source/core/svg/SVGRectElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 51 Source/core/svg/SVGRectTearOff.h float x() { return target()->x(); } x 330 Source/core/svg/SVGSVGElement.cpp return r1.x() < r2.maxX() && r2.x() < r1.maxX() x 508 Source/core/svg/SVGSVGElement.cpp transform.translate(location.x() - viewBoxTransform.e(), location.y() - viewBoxTransform.f()); x 128 Source/core/svg/SVGSVGElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 35 Source/core/svg/SVGTextPositioningElement.h SVGAnimatedLengthList* x() { return m_x.get(); } x 128 Source/core/svg/SVGTransformDistance.cpp transform->setRotate(first->angle() + second->angle() * repeatCount, first->rotationCenter().x() + second->rotationCenter().x() * repeatCount, first->rotationCenter().y() + second->rotationCenter().y() * repeatCount); x 132 Source/core/svg/SVGTransformDistance.cpp float dx = first->translate().x() + second->translate().x() * repeatCount; x 170 Source/core/svg/SVGTransformDistance.cpp newTransform->setTranslate(translation.x(), translation.y()); x 181 Source/core/svg/SVGTransformDistance.cpp newTransform->setRotate(transform->angle() + m_angle, center.x() + m_cx, center.y() + m_cy); x 102 Source/core/svg/SVGTransformTearOff.cpp void SVGTransformTearOff::setSkewX(float x, ExceptionState& exceptionState) x 109 Source/core/svg/SVGTransformTearOff.cpp target()->setSkewX(x); x 51 Source/core/svg/SVGUseElement.h SVGAnimatedLength* x() const { return m_x.get(); } x 125 Source/core/svg/SVGViewSpec.cpp float x = 0.0f; x 129 Source/core/svg/SVGViewSpec.cpp if (!(parseNumber(ptr, end, x) && parseNumber(ptr, end, y) && parseNumber(ptr, end, width) && parseNumber(ptr, end, height, false))) x 131 Source/core/svg/SVGViewSpec.cpp updateViewBox(FloatRect(x, y, width, height)); x 268 Source/core/svg/graphics/SVGImage.cpp FloatSize topLeftOffset(srcRect.location().x() * scale.width(), srcRect.location().y() * scale.height()); x 271 Source/core/svg/graphics/SVGImage.cpp context->translate(destOffset.x(), destOffset.y()); x 100 Source/core/svg/graphics/filters/SVGFEImage.cpp srcRect.move(destRect.x(), destRect.y()); x 133 Source/core/svg/graphics/filters/SVGFEImage.cpp resultImage->context()->translate(-paintLocation.x(), -paintLocation.y()); x 160 Source/core/svg/graphics/filters/SVGFEImage.cpp resultImage->context()->translate(destRect.x(), destRect.y()); x 199 Source/core/svg/graphics/filters/SVGFEImage.cpp transform.translate(dstRect.x(), dstRect.y()); x 911 Source/core/testing/Internals.cpp void Internals::setScrollViewPosition(Document* document, long x, long y, ExceptionState& exceptionState) x 924 Source/core/testing/Internals.cpp frameView->setScrollOffsetFromInternals(IntPoint(x, y)); x 1071 Source/core/testing/Internals.cpp void Internals::scrollElementToRect(Element* element, long x, long y, long w, long h, ExceptionState& exceptionState) x 1078 Source/core/testing/Internals.cpp frameView->scrollElementToRect(element, IntRect(x, y, w, h)); x 1130 Source/core/testing/Internals.cpp PassRefPtrWillBeRawPtr<DOMPoint> Internals::touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document* document, ExceptionState& exceptionState) x 1140 Source/core/testing/Internals.cpp IntPoint point(x + radius.width(), y + radius.height()); x 1147 Source/core/testing/Internals.cpp return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); x 1152 Source/core/testing/Internals.cpp Node* Internals::touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document* document, ExceptionState& exceptionState) x 1162 Source/core/testing/Internals.cpp IntPoint point(x + radius.width(), y + radius.height()); x 1170 Source/core/testing/Internals.cpp PassRefPtrWillBeRawPtr<DOMPoint> Internals::touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document* document, ExceptionState& exceptionState) x 1180 Source/core/testing/Internals.cpp IntPoint point(x + radius.width(), y + radius.height()); x 1187 Source/core/testing/Internals.cpp return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); x 1189 Source/core/testing/Internals.cpp return DOMPoint::create(x, y); x 1192 Source/core/testing/Internals.cpp Node* Internals::touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document* document, ExceptionState& exceptionState) x 1202 Source/core/testing/Internals.cpp IntPoint point(x + radius.width(), y + radius.height()); x 1210 Source/core/testing/Internals.cpp PassRefPtr<ClientRect> Internals::bestZoomableAreaForTouchPoint(long x, long y, long width, long height, Document* document, ExceptionState& exceptionState) x 1220 Source/core/testing/Internals.cpp IntPoint point(x + radius.width(), y + radius.height()); x 1364 Source/core/testing/Internals.cpp if (rects[i].x + rects[i].width == rects[j].x) { x 1368 Source/core/testing/Internals.cpp } else if (rects[i].x == rects[j].x + rects[j].width) { x 1369 Source/core/testing/Internals.cpp rects[i].x = rects[j].x; x 1374 Source/core/testing/Internals.cpp } else if (rects[i].x == rects[j].x && rects[i].width == rects[j].width) { x 2232 Source/core/testing/Internals.cpp result.appendNumber(cursor.hotSpot().x()); x 2457 Source/core/testing/Internals.cpp String Internals::textSurroundingNode(Node* node, int x, int y, unsigned long maxLength) x 2461 Source/core/testing/Internals.cpp blink::WebPoint point(x, y); x 158 Source/core/testing/Internals.h void setScrollViewPosition(Document*, long x, long y, ExceptionState&); x 167 Source/core/testing/Internals.h void scrollElementToRect(Element*, long x, long y, long w, long h, ExceptionState&); x 174 Source/core/testing/Internals.h PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&); x 175 Source/core/testing/Internals.h Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&); x 176 Source/core/testing/Internals.h PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document*, ExceptionState&); x 177 Source/core/testing/Internals.h Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document*, ExceptionState&); x 178 Source/core/testing/Internals.h PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long width, long height, Document*, ExceptionState&); x 192 Source/core/testing/Internals.h PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadding, unsigned rightPadding, x 326 Source/core/testing/Internals.h String textSurroundingNode(Node*, int x, int y, unsigned long maxLength); x 67 Source/core/testing/MockPagePopupDriver.cpp m_iframe->setInlineStyleProperty(CSSPropertyLeft, originBoundsInRootView.x(), CSSPrimitiveValue::CSS_PX, true); x 45 Source/modules/device_orientation/DeviceAcceleration.cpp return m_acceleration->x(); x 44 Source/modules/device_orientation/DeviceAcceleration.h double x(bool& isNull) const; x 33 Source/modules/device_orientation/DeviceMotionData.cpp bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z) x 35 Source/modules/device_orientation/DeviceMotionData.cpp return adoptRefWillBeNoop(new DeviceMotionData::Acceleration(canProvideX, x, canProvideY, y, canProvideZ, z)); x 38 Source/modules/device_orientation/DeviceMotionData.cpp DeviceMotionData::Acceleration::Acceleration(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z) x 39 Source/modules/device_orientation/DeviceMotionData.cpp : m_x(x) x 45 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<Acceleration> create(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z); x 52 Source/modules/device_orientation/DeviceMotionData.h double x() const { return m_x; } x 57 Source/modules/device_orientation/DeviceMotionData.h Acceleration(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z); x 49 Source/modules/webaudio/AudioListener.h void setPosition(float x, float y, float z) { setPosition(FloatPoint3D(x, y, z)); } x 54 Source/modules/webaudio/AudioListener.h void setOrientation(float x, float y, float z, float upX, float upY, float upZ) x 56 Source/modules/webaudio/AudioListener.h setOrientation(FloatPoint3D(x, y, z)); x 67 Source/modules/webaudio/AudioListener.h void setVelocity(float x, float y, float z) { setVelocity(FloatPoint3D(x, y, z)); } x 76 Source/modules/webaudio/AudioParamTimeline.cpp static bool isValidNumber(float x) x 78 Source/modules/webaudio/AudioParamTimeline.cpp return !std::isnan(x) && !std::isinf(x); x 244 Source/modules/webaudio/AudioParamTimeline.cpp float x = (currentTime - time1) * k; x 245 Source/modules/webaudio/AudioParamTimeline.cpp value = (1 - x) * value1 + x * value2; x 43 Source/modules/webaudio/PannerNode.cpp static void fixNANs(double &x) x 45 Source/modules/webaudio/PannerNode.cpp if (std::isnan(x) || std::isinf(x)) x 46 Source/modules/webaudio/PannerNode.cpp x = 0.0; x 236 Source/modules/webaudio/PannerNode.cpp void PannerNode::setPosition(float x, float y, float z) x 238 Source/modules/webaudio/PannerNode.cpp FloatPoint3D position = FloatPoint3D(x, y, z); x 249 Source/modules/webaudio/PannerNode.cpp void PannerNode::setOrientation(float x, float y, float z) x 251 Source/modules/webaudio/PannerNode.cpp FloatPoint3D orientation = FloatPoint3D(x, y, z); x 262 Source/modules/webaudio/PannerNode.cpp void PannerNode::setVelocity(float x, float y, float z) x 264 Source/modules/webaudio/PannerNode.cpp FloatPoint3D velocity = FloatPoint3D(x, y, z); x 87 Source/modules/webaudio/PannerNode.h void setPosition(float x, float y, float z); x 90 Source/modules/webaudio/PannerNode.h void setOrientation(float x, float y, float z); x 93 Source/modules/webaudio/PannerNode.h void setVelocity(float x, float y, float z); x 139 Source/modules/webaudio/RealtimeAnalyser.cpp double x = static_cast<double>(i) / static_cast<double>(n); x 140 Source/modules/webaudio/RealtimeAnalyser.cpp double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x); x 257 Source/platform/CheckedInt.h HasSignBit(T x) x 263 Source/platform/CheckedInt.h return bool(typename UnsignedType<T>::Type(x) x 271 Source/platform/CheckedInt.h BinaryComplement(T x) x 273 Source/platform/CheckedInt.h return ~x; x 321 Source/platform/CheckedInt.h static bool run(U x) x 323 Source/platform/CheckedInt.h return x <= MaxValue<T>::value && x >= MinValue<T>::value; x 330 Source/platform/CheckedInt.h static bool run(U x) x 332 Source/platform/CheckedInt.h return x <= MaxValue<T>::value; x 339 Source/platform/CheckedInt.h static bool run(U x) x 341 Source/platform/CheckedInt.h return sizeof(T) > sizeof(U) || x <= U(MaxValue<T>::value); x 348 Source/platform/CheckedInt.h static bool run(U x) x 351 Source/platform/CheckedInt.h ? x >= 0 x 352 Source/platform/CheckedInt.h : x >= 0 && x <= U(MaxValue<T>::value); x 358 Source/platform/CheckedInt.h IsInRange(U x) x 360 Source/platform/CheckedInt.h return IsInRangeImpl<T, U>::run(x); x 365 Source/platform/CheckedInt.h IsAddValid(T x, T y) x 373 Source/platform/CheckedInt.h typename UnsignedType<T>::Type ux = x; x 377 Source/platform/CheckedInt.h ? HasSignBit(BinaryComplement(T((result ^ x) & (result ^ y)))) x 378 Source/platform/CheckedInt.h : BinaryComplement(x) >= y; x 383 Source/platform/CheckedInt.h IsSubValid(T x, T y) x 388 Source/platform/CheckedInt.h typename UnsignedType<T>::Type ux = x; x 393 Source/platform/CheckedInt.h ? HasSignBit(BinaryComplement(T((result ^ x) & (x ^ y)))) x 394 Source/platform/CheckedInt.h : x >= y; x 406 Source/platform/CheckedInt.h static bool run(T x, T y) x 409 Source/platform/CheckedInt.h TwiceBiggerType product = TwiceBiggerType(x) * TwiceBiggerType(y); x 417 Source/platform/CheckedInt.h static bool run(T x, T y) x 422 Source/platform/CheckedInt.h if (x == 0 || y == 0) x 425 Source/platform/CheckedInt.h if (x > 0) { x 427 Source/platform/CheckedInt.h ? x <= max / y x 428 Source/platform/CheckedInt.h : y >= min / x; x 433 Source/platform/CheckedInt.h ? x >= min / y x 434 Source/platform/CheckedInt.h : y >= max / x; x 441 Source/platform/CheckedInt.h static bool run(T x, T y) x 443 Source/platform/CheckedInt.h return y == 0 || x <= MaxValue<T>::value / y; x 449 Source/platform/CheckedInt.h IsMulValid(T x, T y) x 451 Source/platform/CheckedInt.h return IsMulValidImpl<T>::run(x, y); x 456 Source/platform/CheckedInt.h IsDivValid(T x, T y) x 460 Source/platform/CheckedInt.h !(IsSigned<T>::value && x == MinValue<T>::value && y == T(-1)); x 467 Source/platform/CheckedInt.h static T run(T x) { return -x; } x 472 Source/platform/CheckedInt.h static T run(T x) { return x; } x 476 Source/platform/CheckedInt.h OppositeIfSigned(T x) x 478 Source/platform/CheckedInt.h return OppositeIfSignedImpl<T>::run(x); x 141 Source/platform/Decimal.cpp static uint32_t highUInt32(uint64_t x) { return static_cast<uint32_t>(x >> 32); } x 142 Source/platform/Decimal.cpp static uint32_t lowUInt32(uint64_t x) { return static_cast<uint32_t>(x & ((static_cast<uint64_t>(1) << 32) - 1)); } x 189 Source/platform/Decimal.cpp static int countDigits(uint64_t x) x 192 Source/platform/Decimal.cpp for (uint64_t powerOfTen = 1; x >= powerOfTen; powerOfTen *= 10) { x 200 Source/platform/Decimal.cpp static uint64_t scaleDown(uint64_t x, int n) x 203 Source/platform/Decimal.cpp while (n > 0 && x) { x 204 Source/platform/Decimal.cpp x /= 10; x 207 Source/platform/Decimal.cpp return x; x 210 Source/platform/Decimal.cpp static uint64_t scaleUp(uint64_t x, int n) x 223 Source/platform/Decimal.cpp return x * y; x 43 Source/platform/LengthPoint.h LengthPoint(Length x, Length y) x 44 Source/platform/LengthPoint.h : m_x(x) x 52 Source/platform/LengthPoint.h void setX(Length x) { m_x = x; } x 53 Source/platform/LengthPoint.h Length x() const { return m_x; } x 61 Source/platform/OverscrollTheme.cpp static_cast<int>(rootContentLayer->position().x()) - m_overhangShadow->width() / 2, x 46 Source/platform/PODArenaTest.cpp : x(0), y(0), z(0), w(1) { } x 48 Source/platform/PODArenaTest.cpp float x, y, z, w; x 94 Source/platform/PODArenaTest.cpp EXPECT_EQ(0, tc1->x); x 45 Source/platform/PODFreeListArenaTest.cpp : x(0), y(0), z(0), w(1) { } x 47 Source/platform/PODFreeListArenaTest.cpp float x, y, z, w; x 102 Source/platform/PODFreeListArenaTest.cpp EXPECT_EQ(0, tc1->x); x 116 Source/platform/PODFreeListArenaTest.cpp tc1->x = 100; x 129 Source/platform/PODFreeListArenaTest.cpp EXPECT_EQ(0, cur->x); x 367 Source/platform/PODRedBlackTree.h Node* x = m_root; x 368 Source/platform/PODRedBlackTree.h while (x) { x 369 Source/platform/PODRedBlackTree.h y = x; x 370 Source/platform/PODRedBlackTree.h if (z->data() < x->data()) x 371 Source/platform/PODRedBlackTree.h x = x->left(); x 373 Source/platform/PODRedBlackTree.h x = x->right(); x 388 Source/platform/PODRedBlackTree.h Node* treeSuccessor(Node* x) x 390 Source/platform/PODRedBlackTree.h if (x->right()) x 391 Source/platform/PODRedBlackTree.h return treeMinimum(x->right()); x 392 Source/platform/PODRedBlackTree.h Node* y = x->parent(); x 393 Source/platform/PODRedBlackTree.h while (y && x == y->right()) { x 394 Source/platform/PODRedBlackTree.h x = y; x 402 Source/platform/PODRedBlackTree.h Node* treeMinimum(Node* x) x 404 Source/platform/PODRedBlackTree.h while (x->left()) x 405 Source/platform/PODRedBlackTree.h x = x->left(); x 406 Source/platform/PODRedBlackTree.h return x; x 425 Source/platform/PODRedBlackTree.h Node* leftRotate(Node* x) x 428 Source/platform/PODRedBlackTree.h Node* y = x->right(); x 431 Source/platform/PODRedBlackTree.h x->setRight(y->left()); x 433 Source/platform/PODRedBlackTree.h y->left()->setParent(x); x 436 Source/platform/PODRedBlackTree.h y->setParent(x->parent()); x 437 Source/platform/PODRedBlackTree.h if (!x->parent()) { x 440 Source/platform/PODRedBlackTree.h if (x == x->parent()->left()) x 441 Source/platform/PODRedBlackTree.h x->parent()->setLeft(y); x 443 Source/platform/PODRedBlackTree.h x->parent()->setRight(y); x 447 Source/platform/PODRedBlackTree.h y->setLeft(x); x 448 Source/platform/PODRedBlackTree.h x->setParent(y); x 451 Source/platform/PODRedBlackTree.h updateNode(x); x 461 Source/platform/PODRedBlackTree.h Node* x = y->left(); x 464 Source/platform/PODRedBlackTree.h y->setLeft(x->right()); x 465 Source/platform/PODRedBlackTree.h if (x->right()) x 466 Source/platform/PODRedBlackTree.h x->right()->setParent(y); x 469 Source/platform/PODRedBlackTree.h x->setParent(y->parent()); x 471 Source/platform/PODRedBlackTree.h m_root = x; x 474 Source/platform/PODRedBlackTree.h y->parent()->setLeft(x); x 476 Source/platform/PODRedBlackTree.h y->parent()->setRight(x); x 480 Source/platform/PODRedBlackTree.h x->setRight(y); x 481 Source/platform/PODRedBlackTree.h y->setParent(x); x 485 Source/platform/PODRedBlackTree.h updateNode(x); x 486 Source/platform/PODRedBlackTree.h return x; x 490 Source/platform/PODRedBlackTree.h void insertNode(Node* x) x 492 Source/platform/PODRedBlackTree.h treeInsert(x); x 493 Source/platform/PODRedBlackTree.h x->setColor(Red); x 494 Source/platform/PODRedBlackTree.h updateNode(x); x 499 Source/platform/PODRedBlackTree.h Node* updateStart = x->parent(); x 501 Source/platform/PODRedBlackTree.h while (x != m_root && x->parent()->color() == Red) { x 502 Source/platform/PODRedBlackTree.h if (x->parent() == x->parent()->parent()->left()) { x 503 Source/platform/PODRedBlackTree.h Node* y = x->parent()->parent()->right(); x 507 Source/platform/PODRedBlackTree.h x->parent()->setColor(Black); x 509 Source/platform/PODRedBlackTree.h x->parent()->parent()->setColor(Red); x 510 Source/platform/PODRedBlackTree.h updateNode(x->parent()); x 511 Source/platform/PODRedBlackTree.h x = x->parent()->parent(); x 512 Source/platform/PODRedBlackTree.h updateNode(x); x 513 Source/platform/PODRedBlackTree.h updateStart = x->parent(); x 515 Source/platform/PODRedBlackTree.h if (x == x->parent()->right()) { x 518 Source/platform/PODRedBlackTree.h x = x->parent(); x 519 Source/platform/PODRedBlackTree.h leftRotate(x); x 523 Source/platform/PODRedBlackTree.h x->parent()->setColor(Black); x 524 Source/platform/PODRedBlackTree.h x->parent()->parent()->setColor(Red); x 525 Source/platform/PODRedBlackTree.h Node* newSubTreeRoot = rightRotate(x->parent()->parent()); x 530 Source/platform/PODRedBlackTree.h Node* y = x->parent()->parent()->left(); x 534 Source/platform/PODRedBlackTree.h x->parent()->setColor(Black); x 536 Source/platform/PODRedBlackTree.h x->parent()->parent()->setColor(Red); x 537 Source/platform/PODRedBlackTree.h updateNode(x->parent()); x 538 Source/platform/PODRedBlackTree.h x = x->parent()->parent(); x 539 Source/platform/PODRedBlackTree.h updateNode(x); x 540 Source/platform/PODRedBlackTree.h updateStart = x->parent(); x 542 Source/platform/PODRedBlackTree.h if (x == x->parent()->left()) { x 545 Source/platform/PODRedBlackTree.h x = x->parent(); x 546 Source/platform/PODRedBlackTree.h rightRotate(x); x 550 Source/platform/PODRedBlackTree.h x->parent()->setColor(Black); x 551 Source/platform/PODRedBlackTree.h x->parent()->parent()->setColor(Red); x 552 Source/platform/PODRedBlackTree.h Node* newSubTreeRoot = leftRotate(x->parent()->parent()); x 566 Source/platform/PODRedBlackTree.h void deleteFixup(Node* x, Node* xParent) x 568 Source/platform/PODRedBlackTree.h while (x != m_root && (!x || x->color() == Black)) { x 569 Source/platform/PODRedBlackTree.h if (x == xParent->left()) { x 587 Source/platform/PODRedBlackTree.h x = xParent; x 588 Source/platform/PODRedBlackTree.h xParent = x->parent(); x 603 Source/platform/PODRedBlackTree.h x = m_root; x 604 Source/platform/PODRedBlackTree.h xParent = x->parent(); x 627 Source/platform/PODRedBlackTree.h x = xParent; x 628 Source/platform/PODRedBlackTree.h xParent = x->parent(); x 643 Source/platform/PODRedBlackTree.h x = m_root; x 644 Source/platform/PODRedBlackTree.h xParent = x->parent(); x 648 Source/platform/PODRedBlackTree.h if (x) x 649 Source/platform/PODRedBlackTree.h x->setColor(Black); x 666 Source/platform/PODRedBlackTree.h Node* x; x 668 Source/platform/PODRedBlackTree.h x = y->left(); x 670 Source/platform/PODRedBlackTree.h x = y->right(); x 675 Source/platform/PODRedBlackTree.h if (x) { x 676 Source/platform/PODRedBlackTree.h x->setParent(y->parent()); x 677 Source/platform/PODRedBlackTree.h xParent = x->parent(); x 682 Source/platform/PODRedBlackTree.h m_root = x; x 685 Source/platform/PODRedBlackTree.h y->parent()->setLeft(x); x 687 Source/platform/PODRedBlackTree.h y->parent()->setRight(x); x 701 Source/platform/PODRedBlackTree.h deleteFixup(x, xParent); x 55 Source/platform/Widget.h int x() const { return frameRect().x(); } x 66 Source/platform/Widget.h void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); } x 68 Source/platform/Widget.h void move(int x, int y) { setFrameRect(IntRect(x, y, width(), height())); } x 68 Source/platform/animation/AnimationUtilities.h return IntPoint(blend(from.x(), to.x(), progress), blend(from.y(), to.y(), progress)); x 73 Source/platform/animation/AnimationUtilities.h return FloatPoint(blend(from.x(), to.x(), progress), blend(from.y(), to.y(), progress)); x 65 Source/platform/animation/UnitBezier.h double solveCurveX(double x, double epsilon) x 67 Source/platform/animation/UnitBezier.h ASSERT(x >= 0.0); x 68 Source/platform/animation/UnitBezier.h ASSERT(x <= 1.0); x 78 Source/platform/animation/UnitBezier.h for (t2 = x, i = 0; i < 8; i++) { x 79 Source/platform/animation/UnitBezier.h x2 = sampleCurveX(t2) - x; x 91 Source/platform/animation/UnitBezier.h t2 = x; x 95 Source/platform/animation/UnitBezier.h if (fabs(x2 - x) < epsilon) x 97 Source/platform/animation/UnitBezier.h if (x > x2) x 110 Source/platform/animation/UnitBezier.h double solve(double x, double epsilon) x 112 Source/platform/animation/UnitBezier.h if (x < 0.0) x 114 Source/platform/animation/UnitBezier.h if (x > 1.0) x 116 Source/platform/animation/UnitBezier.h return sampleCurveY(solveCurveX(x, epsilon)); x 103 Source/platform/audio/Biquad.cpp float x = *sourceP++; x 104 Source/platform/audio/Biquad.cpp float y = b0*x + b1*x1 + b2*x2 - a1*y1 - a2*y2; x 110 Source/platform/audio/Biquad.cpp x1 = x; x 76 Source/platform/audio/Cone.cpp double x = (absAngle - absInnerAngle) / (absOuterAngle - absInnerAngle); x 77 Source/platform/audio/Cone.cpp gain = (1.0 - x) + m_outerGain * x; x 75 Source/platform/audio/DownSampler.cpp double x = static_cast<double>(i) / n; x 76 Source/platform/audio/DownSampler.cpp double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x); x 103 Source/platform/audio/DynamicsCompressorKernel.cpp float DynamicsCompressorKernel::kneeCurve(float x, float k) x 106 Source/platform/audio/DynamicsCompressorKernel.cpp if (x < m_linearThreshold) x 107 Source/platform/audio/DynamicsCompressorKernel.cpp return x; x 109 Source/platform/audio/DynamicsCompressorKernel.cpp return m_linearThreshold + (1 - expf(-k * (x - m_linearThreshold))) / k; x 113 Source/platform/audio/DynamicsCompressorKernel.cpp float DynamicsCompressorKernel::saturate(float x, float k) x 117 Source/platform/audio/DynamicsCompressorKernel.cpp if (x < m_kneeThreshold) x 118 Source/platform/audio/DynamicsCompressorKernel.cpp y = kneeCurve(x, k); x 121 Source/platform/audio/DynamicsCompressorKernel.cpp float xDb = linearToDecibels(x); x 133 Source/platform/audio/DynamicsCompressorKernel.cpp float DynamicsCompressorKernel::slopeAt(float x, float k) x 135 Source/platform/audio/DynamicsCompressorKernel.cpp if (x < m_linearThreshold) x 138 Source/platform/audio/DynamicsCompressorKernel.cpp float x2 = x * 1.001; x 140 Source/platform/audio/DynamicsCompressorKernel.cpp float xDb = linearToDecibels(x); x 143 Source/platform/audio/DynamicsCompressorKernel.cpp float yDb = linearToDecibels(kneeCurve(x, k)); x 154 Source/platform/audio/DynamicsCompressorKernel.cpp float x = decibelsToLinear(xDb); x 163 Source/platform/audio/DynamicsCompressorKernel.cpp float slope = slopeAt(x, k); x 325 Source/platform/audio/DynamicsCompressorKernel.cpp float x = compressionDiffDb; x 326 Source/platform/audio/DynamicsCompressorKernel.cpp x = max(-12.0f, x); x 327 Source/platform/audio/DynamicsCompressorKernel.cpp x = min(0.0f, x); x 328 Source/platform/audio/DynamicsCompressorKernel.cpp x = 0.25f * (x + 12); x 332 Source/platform/audio/DynamicsCompressorKernel.cpp float x2 = x * x; x 333 Source/platform/audio/DynamicsCompressorKernel.cpp float x3 = x2 * x; x 335 Source/platform/audio/DynamicsCompressorKernel.cpp float releaseFrames = kA + kB * x + kC * x2 + kD * x3 + kE * x4; x 357 Source/platform/audio/DynamicsCompressorKernel.cpp float x = 0.25f / effAttenDiffDb; x 358 Source/platform/audio/DynamicsCompressorKernel.cpp envelopeRate = 1 - powf(x, 1 / attackFrames); x 100 Source/platform/audio/DynamicsCompressorKernel.h float kneeCurve(float x, float k); x 101 Source/platform/audio/DynamicsCompressorKernel.h float saturate(float x, float k); x 102 Source/platform/audio/DynamicsCompressorKernel.h float slopeAt(float x, float k); x 58 Source/platform/audio/FFTFrame.cpp PassOwnPtr<FFTFrame> FFTFrame::createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x) x 62 Source/platform/audio/FFTFrame.cpp newFrame->interpolateFrequencyComponents(frame1, frame2, x); x 79 Source/platform/audio/FFTFrame.h static PassOwnPtr<FFTFrame> createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x); x 93 Source/platform/audio/FFTFrame.h void interpolateFrequencyComponents(const FFTFrame& frame1, const FFTFrame& frame2, double x); x 77 Source/platform/audio/HRTFDatabase.cpp float x = static_cast<float>(jj) / static_cast<float>(InterpolationFactor); x 78 Source/platform/audio/HRTFDatabase.cpp m_elevations[i + jj] = HRTFElevation::createByInterpolatingSlices(m_elevations[i].get(), m_elevations[j].get(), x, sampleRate); x 267 Source/platform/audio/HRTFElevation.cpp float x = float(jj) / float(InterpolationFactor); // interpolate from 0 -> 1 x 269 Source/platform/audio/HRTFElevation.cpp (*kernelListL)[i + jj] = HRTFKernel::createInterpolatedKernel(kernelListL->at(i).get(), kernelListL->at(j).get(), x); x 270 Source/platform/audio/HRTFElevation.cpp (*kernelListR)[i + jj] = HRTFKernel::createInterpolatedKernel(kernelListR->at(i).get(), kernelListR->at(j).get(), x); x 278 Source/platform/audio/HRTFElevation.cpp PassOwnPtr<HRTFElevation> HRTFElevation::createByInterpolatingSlices(HRTFElevation* hrtfElevation1, HRTFElevation* hrtfElevation2, float x, float sampleRate) x 284 Source/platform/audio/HRTFElevation.cpp ASSERT(x >= 0.0 && x < 1.0); x 296 Source/platform/audio/HRTFElevation.cpp (*kernelListL)[i] = HRTFKernel::createInterpolatedKernel(kernelListL1->at(i).get(), kernelListL2->at(i).get(), x); x 297 Source/platform/audio/HRTFElevation.cpp (*kernelListR)[i] = HRTFKernel::createInterpolatedKernel(kernelListR1->at(i).get(), kernelListR2->at(i).get(), x); x 301 Source/platform/audio/HRTFElevation.cpp double angle = (1.0 - x) * hrtfElevation1->elevationAngle() + x * hrtfElevation2->elevationAngle(); x 56 Source/platform/audio/HRTFElevation.h static PassOwnPtr<HRTFElevation> createByInterpolatingSlices(HRTFElevation* hrtfElevation1, HRTFElevation* hrtfElevation2, float x, float sampleRate); x 90 Source/platform/audio/HRTFKernel.cpp float x = 1.0f - static_cast<float>(i - (truncatedResponseLength - numberOfFadeOutFrames)) / numberOfFadeOutFrames; x 91 Source/platform/audio/HRTFKernel.cpp impulseResponse[i] *= x; x 112 Source/platform/audio/HRTFKernel.cpp PassRefPtr<HRTFKernel> HRTFKernel::createInterpolatedKernel(HRTFKernel* kernel1, HRTFKernel* kernel2, float x) x 118 Source/platform/audio/HRTFKernel.cpp ASSERT(x >= 0.0 && x < 1.0); x 119 Source/platform/audio/HRTFKernel.cpp x = min(1.0f, max(0.0f, x)); x 127 Source/platform/audio/HRTFKernel.cpp float frameDelay = (1 - x) * kernel1->frameDelay() + x * kernel2->frameDelay(); x 129 Source/platform/audio/HRTFKernel.cpp OwnPtr<FFTFrame> interpolatedFrame = FFTFrame::createInterpolatedFrame(*kernel1->fftFrame(), *kernel2->fftFrame(), x); x 65 Source/platform/audio/HRTFKernel.h static PassRefPtr<HRTFKernel> createInterpolatedKernel(HRTFKernel* kernel1, HRTFKernel* kernel2, float x); x 271 Source/platform/audio/HRTFPanner.cpp float x = m_crossfadeX; x 274 Source/platform/audio/HRTFPanner.cpp segmentDestinationL[i] = (1 - x) * convolutionDestinationL1[i] + x * convolutionDestinationL2[i]; x 275 Source/platform/audio/HRTFPanner.cpp segmentDestinationR[i] = (1 - x) * convolutionDestinationR1[i] + x * convolutionDestinationR2[i]; x 276 Source/platform/audio/HRTFPanner.cpp x += incr; x 279 Source/platform/audio/HRTFPanner.cpp m_crossfadeX = x; x 121 Source/platform/audio/SincResampler.cpp double x = (i - subsampleOffset) / n; x 122 Source/platform/audio/SincResampler.cpp double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x); x 69 Source/platform/audio/UpSampler.cpp double x = (i - subsampleOffset) / n; x 70 Source/platform/audio/UpSampler.cpp double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x); x 43 Source/platform/exported/WebFloatQuad.cpp int left = static_cast<int>(floorf(min(min(min(p[0].x, p[1].x), p[2].x), p[3].x))); x 45 Source/platform/exported/WebFloatQuad.cpp int right = static_cast<int>(ceilf(max(max(max(p[0].x, p[1].x), p[2].x), p[3].x))); x 49 Source/platform/exported/WebScrollbarThemeClientImpl.cpp return location().x(); x 47 Source/platform/exported/WebScrollbarThemeClientImpl.h virtual int x() const OVERRIDE; x 203 Source/platform/fonts/Font.cpp int Font::offsetForPosition(const TextRun& run, float x, bool includePartialGlyphs) const x 207 Source/platform/fonts/Font.cpp return offsetForPositionForSimpleText(run, x, includePartialGlyphs); x 209 Source/platform/fonts/Font.cpp return offsetForPositionForComplexText(run, x, includePartialGlyphs); x 645 Source/platform/fonts/Font.cpp float startX = point.x() + getGlyphsAndAdvancesForSimpleText(runInfo.run, runInfo.from, runInfo.to, glyphBuffer); x 662 Source/platform/fonts/Font.cpp drawEmphasisMarks(context, runInfo, glyphBuffer, mark, FloatPoint(point.x() + initialAdvance, point.y())); x 707 Source/platform/fonts/Font.cpp return bounds.x() + bounds.width() / 2; x 735 Source/platform/fonts/Font.cpp FloatPoint startPoint(point.x() + middleOfLastGlyph - offsetToMiddleOfGlyph(markFontData, markGlyph), point.y()); x 781 Source/platform/fonts/Font.cpp float pixelAlignedX = floorf(point.x() + totalWidth - afterWidth + LayoutUnit::epsilon()); x 783 Source/platform/fonts/Font.cpp roundf(point.x() + totalWidth - beforeWidth) - pixelAlignedX, x 787 Source/platform/fonts/Font.cpp float pixelAlignedX = floorf(point.x() + beforeWidth + LayoutUnit::epsilon()); x 789 Source/platform/fonts/Font.cpp roundf(point.x() + afterWidth) - pixelAlignedX, x 793 Source/platform/fonts/Font.cpp int Font::offsetForPositionForSimpleText(const TextRun& run, float x, bool includePartialGlyphs) const x 795 Source/platform/fonts/Font.cpp float delta = x; x 156 Source/platform/fonts/FontMetrics.h inline float scaleEmToUnits(float x, unsigned unitsPerEm) x 158 Source/platform/fonts/FontMetrics.h return unitsPerEm ? x / unitsPerEm : x; x 259 Source/platform/fonts/WidthIterator.cpp m_firstGlyphOverflow = max<float>(0, -bounds.x()); x 110 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp SkScalar x = SkFloatToScalar(point.x()); x 119 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp gc->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y())); x 120 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp gc->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y())); x 126 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp SkScalar verticalOriginX = SkFloatToScalar(point.x() + metrics.floatAscent() - metrics.floatAscent(IdeographicBaseline)); x 127 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp float horizontalOffset = point.x(); x 137 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp x = verticalOriginX; x 138 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp y = SkFloatToScalar(point.y() + horizontalOffset - point.x()); x 143 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp x + SkIntToScalar(lroundf(translations[i].x())), x 163 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp pos[i].set(x, y); x 164 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp x += SkFloatToScalar(adv[i].width()); x 204 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp drawEmphasisMarks(context, runInfo, glyphBuffer, mark, FloatPoint(point.x() + initialAdvance, point.y())); x 69 Source/platform/fonts/harfbuzz/HarfBuzzFaceCoreText.cpp static hb_bool_t getGlyphHorizontalOrigin(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, hb_position_t* x, hb_position_t* y, void* userData) x 81 Source/platform/fonts/harfbuzz/HarfBuzzFaceCoreText.cpp extents->x_bearing = floatToHarfBuzzPosition(cgRect.origin.x); x 114 Source/platform/fonts/harfbuzz/HarfBuzzFaceSkia.cpp static hb_bool_t harfBuzzGetGlyphHorizontalOrigin(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, hb_position_t* x, hb_position_t* y, void* userData) x 918 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp glyphBounds.move(glyphOrigin.x(), glyphOrigin.y()); x 939 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp float glyphAdvanceX = advances[i] + nextOffset.x() - currentOffset.x(); x 1110 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp return FloatRect(floorf(point.x() + fromX), point.y(), roundf(toX - fromX), height); x 1111 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp return FloatRect(floorf(point.x() + toX), point.y(), roundf(fromX - toX), height); x 124 Source/platform/fonts/mac/ComplexTextController.cpp CGFloat x = h; x 133 Source/platform/fonts/mac/ComplexTextController.cpp if (x < adjustedAdvance) { x 144 Source/platform/fonts/mac/ComplexTextController.cpp CFIndex hitIndex = hitGlyphStart + (hitGlyphEnd - hitGlyphStart) * (m_run.ltr() ? x / adjustedAdvance : 1 - x / adjustedAdvance); x 173 Source/platform/fonts/mac/ComplexTextController.cpp x += width; x 183 Source/platform/fonts/mac/ComplexTextController.cpp x -= clusterWidth * (m_run.ltr() ? hitIndex - hitGlyphStart : hitGlyphEnd - hitIndex - 1); x 185 Source/platform/fonts/mac/ComplexTextController.cpp if (x <= clusterWidth / 2) x 190 Source/platform/fonts/mac/ComplexTextController.cpp x -= adjustedAdvance; x 653 Source/platform/fonts/mac/ComplexTextController.cpp glyphBounds.move(glyphOrigin.x, glyphOrigin.y); x 654 Source/platform/fonts/mac/ComplexTextController.cpp m_minGlyphBoundingBoxX = min(m_minGlyphBoundingBoxX, glyphBounds.x()); x 658 Source/platform/fonts/mac/ComplexTextController.cpp glyphOrigin.x += advance.width; x 60 Source/platform/fonts/mac/ComplexTextController.h int offsetForPosition(float x, bool includePartialGlyphs); x 66 Source/platform/fonts/mac/FontComplexTextMac.cpp return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h); x 69 Source/platform/fonts/mac/FontComplexTextMac.cpp return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() + afterWidth) - floorf(point.x() + beforeWidth), h); x 109 Source/platform/fonts/mac/FontComplexTextMac.cpp float startX = point.x() + getGlyphsAndAdvancesForComplexText(runInfo.run, runInfo.from, runInfo.to, glyphBuffer); x 128 Source/platform/fonts/mac/FontComplexTextMac.cpp drawEmphasisMarks(context, runInfo, glyphBuffer, mark, FloatPoint(point.x() + initialAdvance, point.y())); x 148 Source/platform/fonts/mac/FontComplexTextMac.cpp int Font::offsetForPositionForComplexText(const TextRun& run, float x, bool includePartialGlyphs) const x 153 Source/platform/fonts/mac/FontComplexTextMac.cpp return shaper.offsetForPosition(x); x 156 Source/platform/fonts/mac/FontComplexTextMac.cpp return controller.offsetForPosition(x, includePartialGlyphs); x 112 Source/platform/fonts/mac/FontMac.cpp SkScalar x = SkFloatToScalar(point.x()); x 128 Source/platform/fonts/mac/FontMac.cpp pos[i].set(x, y); x 129 Source/platform/fonts/mac/FontMac.cpp x += SkFloatToScalar(adv[i].width()); x 91 Source/platform/geometry/FloatBoxExtent.h m_left = std::min(m_left, rect.x()); x 45 Source/platform/geometry/FloatPoint.cpp FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y()) x 50 Source/platform/geometry/FloatPoint.cpp : m_x(p.x().toFloat()) x 83 Source/platform/geometry/FloatPoint.cpp m_x += point.x(); x 93 Source/platform/geometry/FloatPoint.cpp FloatPoint FloatPoint::narrowPrecision(double x, double y) x 95 Source/platform/geometry/FloatPoint.cpp return FloatPoint(narrowPrecisionToFloat(x), narrowPrecisionToFloat(y)); x 100 Source/platform/geometry/FloatPoint.cpp if (p2.x() == p1.x()) x 104 Source/platform/geometry/FloatPoint.cpp float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); x 105 Source/platform/geometry/FloatPoint.cpp c = p1.y() - slope * p1.x(); x 111 Source/platform/geometry/FloatPoint.cpp float pxLength = p2.x() - p1.x(); x 114 Source/platform/geometry/FloatPoint.cpp float dxLength = d2.x() - d1.x(); x 121 Source/platform/geometry/FloatPoint.cpp float param = ((d1.x() - p1.x()) * dyLength - (d1.y() - p1.y()) * dxLength) / denom; x 123 Source/platform/geometry/FloatPoint.cpp intersection.setX(p1.x() + param * pxLength); x 55 Source/platform/geometry/FloatPoint.h FloatPoint(float x, float y) : m_x(x), m_y(y) { } x 62 Source/platform/geometry/FloatPoint.h static FloatPoint narrowPrecision(double x, double y); x 64 Source/platform/geometry/FloatPoint.h float x() const { return m_x; } x 67 Source/platform/geometry/FloatPoint.h void setX(float x) { m_x = x; } x 69 Source/platform/geometry/FloatPoint.h void set(float x, float y) x 71 Source/platform/geometry/FloatPoint.h m_x = x; x 92 Source/platform/geometry/FloatPoint.h m_x += a.x(); x 98 Source/platform/geometry/FloatPoint.h m_x += a.x(); x 111 Source/platform/geometry/FloatPoint.h return m_x * a.x() + m_y * a.y(); x 155 Source/platform/geometry/FloatPoint.h a.move(b.x(), b.y()); x 167 Source/platform/geometry/FloatPoint.h return FloatPoint(a.x() + b.width(), a.y() + b.height()); x 172 Source/platform/geometry/FloatPoint.h return FloatPoint(a.x() + b.x(), a.y() + b.y()); x 177 Source/platform/geometry/FloatPoint.h return FloatSize(a.x() - b.x(), a.y() - b.y()); x 182 Source/platform/geometry/FloatPoint.h return FloatPoint(a.x() - b.width(), a.y() - b.height()); x 187 Source/platform/geometry/FloatPoint.h return FloatPoint(-a.x(), -a.y()); x 192 Source/platform/geometry/FloatPoint.h return a.x() == b.x() && a.y() == b.y(); x 197 Source/platform/geometry/FloatPoint.h return a.x() != b.x() || a.y() != b.y(); x 208 Source/platform/geometry/FloatPoint.h return IntPoint(clampToInteger(roundf(p.x())), clampToInteger(roundf(p.y()))); x 213 Source/platform/geometry/FloatPoint.h return IntPoint(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y()))); x 218 Source/platform/geometry/FloatPoint.h return IntPoint(clampToInteger(ceilf(p.x())), clampToInteger(ceilf(p.y()))); x 223 Source/platform/geometry/FloatPoint.h return IntSize(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y()))); x 228 Source/platform/geometry/FloatPoint.h return FloatSize(a.x(), a.y()); x 39 Source/platform/geometry/FloatPoint3D.h FloatPoint3D(float x, float y, float z) x 40 Source/platform/geometry/FloatPoint3D.h : m_x(x) x 47 Source/platform/geometry/FloatPoint3D.h : m_x(p.x()) x 54 Source/platform/geometry/FloatPoint3D.h : m_x(p.x()) x 60 Source/platform/geometry/FloatPoint3D.h float x() const { return m_x; } x 61 Source/platform/geometry/FloatPoint3D.h void setX(float x) { m_x = x; } x 68 Source/platform/geometry/FloatPoint3D.h void set(float x, float y, float z) x 70 Source/platform/geometry/FloatPoint3D.h m_x = x; x 96 Source/platform/geometry/FloatPoint3D.h return m_x * a.x() + m_y * a.y() + m_z * a.z(); x 104 Source/platform/geometry/FloatPoint3D.h float x = a.y() * b.z() - a.z() * b.y(); x 105 Source/platform/geometry/FloatPoint3D.h float y = a.z() * b.x() - a.x() * b.z(); x 106 Source/platform/geometry/FloatPoint3D.h float z = a.x() * b.y() - a.y() * b.x(); x 107 Source/platform/geometry/FloatPoint3D.h m_x = x; x 134 Source/platform/geometry/FloatPoint3D.h a.move(b.x(), b.y(), b.z()); x 140 Source/platform/geometry/FloatPoint3D.h a.move(-b.x(), -b.y(), -b.z()); x 146 Source/platform/geometry/FloatPoint3D.h return FloatPoint3D(a.x() + b.x(), a.y() + b.y(), a.z() + b.z()); x 151 Source/platform/geometry/FloatPoint3D.h return FloatPoint3D(a.x() - b.x(), a.y() - b.y(), a.z() - b.z()); x 156 Source/platform/geometry/FloatPoint3D.h return a.x() == b.x() && a.y() == b.y() && a.z() == b.z(); x 161 Source/platform/geometry/FloatPoint3D.h return a.x() != b.x() || a.y() != b.y() || a.z() != b.z(); x 172 Source/platform/geometry/FloatPoint3D.h return FloatPoint3D(k * v.x(), k * v.y(), k * v.z()); x 177 Source/platform/geometry/FloatPoint3D.h return FloatPoint3D(k * v.x(), k * v.y(), k * v.z()); x 49 Source/platform/geometry/FloatPolygon.cpp return p0.x() == p1.x() && p0.y() == p1.y(); x 54 Source/platform/geometry/FloatPolygon.cpp return point.x() >= std::min(vertex1.x(), vertex2.x()) x 55 Source/platform/geometry/FloatPolygon.cpp && point.x() <= std::max(vertex1.x(), vertex2.x()) x 99 Source/platform/geometry/FloatPolygon.cpp if (vertex.y() < vertexAt(minVertexIndex).y() || (vertex.y() == vertexAt(minVertexIndex).y() && vertex.x() < vertexAt(minVertexIndex).x())) x 156 Source/platform/geometry/FloatPolygon.cpp return ((point.x() - vertex1.x()) * (vertex2.y() - vertex1.y())) - ((vertex2.x() - vertex1.x()) * (point.y() - vertex1.y())); x 169 Source/platform/geometry/FloatPolygon.cpp if (point.x() < vertex1.x() + vt * (vertex2.x() - vertex1.x())) x 204 Source/platform/geometry/FloatPolygon.cpp bool boundsOverlap = (minX() < rect.maxX()) && (maxX() > rect.x()) && (minY() < rect.maxY()) && (maxY() > rect.y()); x 90 Source/platform/geometry/FloatPolygon.h float minX() const { return std::min(vertex1().x(), vertex2().x()); } x 92 Source/platform/geometry/FloatPolygon.h float maxX() const { return std::max(vertex1().x(), vertex2().x()); } x 147 Source/platform/geometry/FloatPolygon.h static String string(const FloatPolygonEdge* edge) { return String::format("%p (%f,%f %f,%f)", edge, edge->vertex1().x(), edge->vertex1().y(), edge->vertex2().x(), edge->vertex2().y()); } x 86 Source/platform/geometry/FloatQuad.cpp float left = min4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x()); x 89 Source/platform/geometry/FloatQuad.cpp float right = max4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x()); x 102 Source/platform/geometry/FloatQuad.cpp return (withinEpsilon(m_p1.x(), m_p2.x()) && withinEpsilon(m_p2.y(), m_p3.y()) && withinEpsilon(m_p3.x(), m_p4.x()) && withinEpsilon(m_p4.y(), m_p1.y())) x 103 Source/platform/geometry/FloatQuad.cpp || (withinEpsilon(m_p1.y(), m_p2.y()) && withinEpsilon(m_p2.x(), m_p3.x()) && withinEpsilon(m_p3.y(), m_p4.y()) && withinEpsilon(m_p4.x(), m_p1.x())); x 134 Source/platform/geometry/FloatQuad.cpp point.setX(rect.x()); x 184 Source/platform/geometry/FloatQuad.cpp float x0 = p0.x() - center.x(), y0 = p0.y() - center.y(); x 185 Source/platform/geometry/FloatQuad.cpp float x1 = p1.x() - center.x(), y1 = p1.y() - center.y(); x 202 Source/platform/geometry/FloatQuad.cpp float x = - a * c / (a * a + b * b); x 204 Source/platform/geometry/FloatQuad.cpp return (((x0 <= x && x <= x1) || (x0 >= x && x >= x1)) x 222 Source/platform/geometry/FloatQuad.cpp transformedQuad.move(-center.x(), -center.y()); x 59 Source/platform/geometry/FloatQuad.h , m_p4(inRect.x(), inRect.maxY()) x 103 Source/platform/geometry/FloatQuad.h return FloatPoint((m_p1.x() + m_p2.x() + m_p3.x() + m_p4.x()) / 4.0, x 53 Source/platform/geometry/FloatRect.cpp FloatRect FloatRect::narrowPrecision(double x, double y, double width, double height) x 55 Source/platform/geometry/FloatRect.cpp return FloatRect(narrowPrecisionToFloat(x), narrowPrecisionToFloat(y), narrowPrecisionToFloat(width), narrowPrecisionToFloat(height)); x 60 Source/platform/geometry/FloatRect.cpp return isWithinIntRange(x()) && isWithinIntRange(y()) x 69 Source/platform/geometry/FloatRect.cpp && x() < other.maxX() && other.x() < maxX() x 75 Source/platform/geometry/FloatRect.cpp return x() <= other.x() && maxX() >= other.maxX() x 82 Source/platform/geometry/FloatRect.cpp return contains(point.x(), point.y()); x 83 Source/platform/geometry/FloatRect.cpp return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y(); x 88 Source/platform/geometry/FloatRect.cpp float left = std::max(x(), other.x()); x 119 Source/platform/geometry/FloatRect.cpp float minX = std::min(x(), other.x()); x 142 Source/platform/geometry/FloatRect.cpp float minX = std::min(x(), p.x()); x 144 Source/platform/geometry/FloatRect.cpp float maxX = std::max(this->maxX(), p.x()); x 152 Source/platform/geometry/FloatRect.cpp m_location.setX(x() * sx); x 171 Source/platform/geometry/FloatRect.cpp float left = std::min(p0.x(), p1.x()); x 173 Source/platform/geometry/FloatRect.cpp float right = std::max(p0.x(), p1.x()); x 210 Source/platform/geometry/FloatRect.cpp float left = min3(p0.x(), p1.x(), p2.x()); x 212 Source/platform/geometry/FloatRect.cpp float right = max3(p0.x(), p1.x(), p2.x()); x 220 Source/platform/geometry/FloatRect.cpp float left = min4(p0.x(), p1.x(), p2.x(), p3.x()); x 222 Source/platform/geometry/FloatRect.cpp float right = max4(p0.x(), p1.x(), p2.x(), p3.x()); x 230 Source/platform/geometry/FloatRect.cpp SkRect rect = { x(), y(), maxX(), maxY() }; x 264 Source/platform/geometry/FloatRect.cpp return FloatRect(destRect.x() + (r.x() - srcRect.x()) * widthScale, x 59 Source/platform/geometry/FloatRect.h FloatRect(float x, float y, float width, float height) x 60 Source/platform/geometry/FloatRect.h : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { } x 65 Source/platform/geometry/FloatRect.h static FloatRect narrowPrecision(double x, double y, double width, double height); x 73 Source/platform/geometry/FloatRect.h float x() const { return m_location.x(); } x 75 Source/platform/geometry/FloatRect.h float maxX() const { return x() + width(); } x 80 Source/platform/geometry/FloatRect.h void setX(float x) { m_location.setX(x); } x 89 Source/platform/geometry/FloatRect.h FloatPoint center() const { return FloatPoint(x() + width() / 2, y() + height() / 2); } x 92 Source/platform/geometry/FloatRect.h void moveBy(const FloatPoint& delta) { m_location.move(delta.x(), delta.y()); } x 102 Source/platform/geometry/FloatRect.h float delta = edge - x(); x 124 Source/platform/geometry/FloatRect.h FloatPoint maxXMinYCorner() const { return FloatPoint(m_location.x() + m_size.width(), m_location.y()); } // typically topRight x 125 Source/platform/geometry/FloatRect.h FloatPoint minXMaxYCorner() const { return FloatPoint(m_location.x(), m_location.y() + m_size.height()); } // typically bottomLeft x 126 Source/platform/geometry/FloatRect.h FloatPoint maxXMaxYCorner() const { return FloatPoint(m_location.x() + m_size.width(), m_location.y() + m_size.height()); } // typically bottomRight x 142 Source/platform/geometry/FloatRect.h return px >= x() && px <= maxX() && py >= y() && py <= maxY(); x 147 Source/platform/geometry/FloatRect.h m_location.setX(m_location.x() - dx); x 207 Source/platform/geometry/FloatRect.h a.move(b.x(), b.y()); x 37 Source/platform/geometry/FloatRoundedRect.cpp FloatRoundedRect::FloatRoundedRect(float x, float y, float width, float height) x 38 Source/platform/geometry/FloatRoundedRect.cpp : m_rect(x, y, width, height) x 112 Source/platform/geometry/FloatRoundedRect.cpp minXIntercept = rect().x(); x 125 Source/platform/geometry/FloatRoundedRect.cpp minXIntercept = m_rect.x(); x 131 Source/platform/geometry/FloatRoundedRect.cpp maxXIntercept = topRightRect.x() + cornerRectIntercept(topRightRect.maxY() - y, topRightRect); x 133 Source/platform/geometry/FloatRoundedRect.cpp maxXIntercept = bottomRightRect.x() + cornerRectIntercept(y - bottomRightRect.y(), bottomRightRect); x 85 Source/platform/geometry/FloatRoundedRect.h FloatRoundedRect(float x, float y, float width, float height); x 103 Source/platform/geometry/FloatRoundedRect.h return FloatRect(m_rect.x(), m_rect.y(), m_radii.topLeft().width(), m_radii.topLeft().height()); x 111 Source/platform/geometry/FloatRoundedRect.h return FloatRect(m_rect.x(), m_rect.maxY() - m_radii.bottomLeft().height(), m_radii.bottomLeft().width(), m_radii.bottomLeft().height()); x 50 Source/platform/geometry/FloatRoundedRectTest.cpp << rect.x() << ", " x 103 Source/platform/geometry/FloatRoundedRectTest.cpp TEST_INTERCEPTS(r, 2, r.rect().x(), r.rect().maxX()); x 104 Source/platform/geometry/FloatRoundedRectTest.cpp TEST_INTERCEPTS(r, 4, r.rect().x(), r.rect().maxX()); x 105 Source/platform/geometry/FloatRoundedRectTest.cpp TEST_INTERCEPTS(r, 6, r.rect().x(), r.rect().maxX()); x 46 Source/platform/geometry/IntPoint.h IntPoint(int x, int y) : m_x(x), m_y(y) { } x 51 Source/platform/geometry/IntPoint.h int x() const { return m_x; } x 54 Source/platform/geometry/IntPoint.h void setX(int x) { m_x = x; } x 58 Source/platform/geometry/IntPoint.h void moveBy(const IntPoint& offset) { move(offset.x(), offset.y()); } x 118 Source/platform/geometry/IntPoint.h return IntPoint(a.x() + b.width(), a.y() + b.height()); x 123 Source/platform/geometry/IntPoint.h return IntPoint(a.x() + b.x(), a.y() + b.y()); x 128 Source/platform/geometry/IntPoint.h return IntSize(a.x() - b.x(), a.y() - b.y()); x 133 Source/platform/geometry/IntPoint.h return IntPoint(a.x() - b.width(), a.y() - b.height()); x 138 Source/platform/geometry/IntPoint.h return IntPoint(-point.x(), -point.y()); x 143 Source/platform/geometry/IntPoint.h return a.x() == b.x() && a.y() == b.y(); x 148 Source/platform/geometry/IntPoint.h return a.x() != b.x() || a.y() != b.y(); x 153 Source/platform/geometry/IntPoint.h return IntSize(a.x(), a.y()); x 38 Source/platform/geometry/IntRect.cpp : m_location(clampToInteger(r.x()), clampToInteger(r.y())) x 44 Source/platform/geometry/IntRect.cpp : m_location(r.x(), r.y()) x 53 Source/platform/geometry/IntRect.cpp && x() < other.maxX() && other.x() < maxX() x 59 Source/platform/geometry/IntRect.cpp return x() <= other.x() && maxX() >= other.maxX() x 65 Source/platform/geometry/IntRect.cpp int left = std::max(x(), other.x()); x 94 Source/platform/geometry/IntRect.cpp int left = std::min(x(), other.x()); x 115 Source/platform/geometry/IntRect.cpp int left = std::min(x(), other.x()); x 128 Source/platform/geometry/IntRect.cpp m_location.setX((int)(x() * s)); x 145 Source/platform/geometry/IntRect.cpp int xdistance = distanceToInterval(point.x(), x(), maxX()); x 152 Source/platform/geometry/IntRect.cpp SkIRect rect = { x(), y(), maxX(), maxY() }; x 159 Source/platform/geometry/IntRect.cpp rect.set(SkIntToScalar(x()), SkIntToScalar(y()), SkIntToScalar(maxX()), SkIntToScalar(maxY())); x 55 Source/platform/geometry/IntRect.h IntRect(int x, int y, int width, int height) x 56 Source/platform/geometry/IntRect.h : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { } x 67 Source/platform/geometry/IntRect.h int x() const { return m_location.x(); } x 69 Source/platform/geometry/IntRect.h int maxX() const { return x() + width(); } x 74 Source/platform/geometry/IntRect.h void setX(int x) { m_location.setX(x); } x 83 Source/platform/geometry/IntRect.h IntPoint center() const { return IntPoint(x() + width() / 2, y() + height() / 2); } x 86 Source/platform/geometry/IntRect.h void moveBy(const IntPoint& offset) { m_location.move(offset.x(), offset.y()); } x 96 Source/platform/geometry/IntRect.h int delta = edge - x(); x 118 Source/platform/geometry/IntRect.h IntPoint maxXMinYCorner() const { return IntPoint(m_location.x() + m_size.width(), m_location.y()); } // typically topRight x 119 Source/platform/geometry/IntRect.h IntPoint minXMaxYCorner() const { return IntPoint(m_location.x(), m_location.y() + m_size.height()); } // typically bottomLeft x 120 Source/platform/geometry/IntRect.h IntPoint maxXMaxYCorner() const { return IntPoint(m_location.x() + m_size.width(), m_location.y() + m_size.height()); } // typically bottomRight x 128 Source/platform/geometry/IntRect.h { return px >= x() && px < maxX() && py >= y() && py < maxY(); } x 129 Source/platform/geometry/IntRect.h bool contains(const IntPoint& point) const { return contains(point.x(), point.y()); } x 137 Source/platform/geometry/IntRect.h m_location.setX(m_location.x() - dx); x 43 Source/platform/geometry/LayoutPoint.h LayoutPoint(LayoutUnit x, LayoutUnit y) : m_x(x), m_y(y) { } x 44 Source/platform/geometry/LayoutPoint.h LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { } x 45 Source/platform/geometry/LayoutPoint.h explicit LayoutPoint(const FloatPoint& size) : m_x(size.x()), m_y(size.y()) { } x 50 Source/platform/geometry/LayoutPoint.h LayoutUnit x() const { return m_x; } x 53 Source/platform/geometry/LayoutPoint.h void setX(LayoutUnit x) { m_x = x; } x 57 Source/platform/geometry/LayoutPoint.h void moveBy(const LayoutPoint& offset) { move(offset.x(), offset.y()); } x 103 Source/platform/geometry/LayoutPoint.h return LayoutPoint(a.x() + b.width(), a.y() + b.height()); x 108 Source/platform/geometry/LayoutPoint.h return LayoutPoint(a.x() + b.x(), a.y() + b.y()); x 113 Source/platform/geometry/LayoutPoint.h return LayoutSize(a.x() - b.x(), a.y() - b.y()); x 118 Source/platform/geometry/LayoutPoint.h return LayoutPoint(a.x() - b.width(), a.y() - b.height()); x 123 Source/platform/geometry/LayoutPoint.h return LayoutPoint(-point.x(), -point.y()); x 128 Source/platform/geometry/LayoutPoint.h return a.x() == b.x() && a.y() == b.y(); x 133 Source/platform/geometry/LayoutPoint.h return a.x() != b.x() || a.y() != b.y(); x 148 Source/platform/geometry/LayoutPoint.h return LayoutSize(a.x(), a.y()); x 153 Source/platform/geometry/LayoutPoint.h return IntPoint(point.x().floor(), point.y().floor()); x 158 Source/platform/geometry/LayoutPoint.h return IntPoint(point.x().round(), point.y().round()); x 168 Source/platform/geometry/LayoutPoint.h return IntPoint(point.x().ceil(), point.y().ceil()); x 173 Source/platform/geometry/LayoutPoint.h return LayoutPoint(LayoutUnit::fromFloatFloor(p.x()), LayoutUnit::fromFloatFloor(p.y())); x 178 Source/platform/geometry/LayoutPoint.h return LayoutPoint(LayoutUnit::fromFloatCeil(p.x()), LayoutUnit::fromFloatCeil(p.y())); x 183 Source/platform/geometry/LayoutPoint.h return IntSize(snapSizeToPixel(s.width(), p.x()), snapSizeToPixel(s.height(), p.y())); x 193 Source/platform/geometry/LayoutPoint.h return LayoutSize(p.x(), p.y()); x 50 Source/platform/geometry/LayoutRect.cpp && x() < other.maxX() && other.x() < maxX() x 56 Source/platform/geometry/LayoutRect.cpp return x() <= other.x() && maxX() >= other.maxX() x 62 Source/platform/geometry/LayoutRect.cpp LayoutPoint newLocation(std::max(x(), other.x()), std::max(y(), other.y())); x 66 Source/platform/geometry/LayoutRect.cpp if (newLocation.x() >= newMaxPoint.x() || newLocation.y() >= newMaxPoint.y()) { x 85 Source/platform/geometry/LayoutRect.cpp LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y())); x 102 Source/platform/geometry/LayoutRect.cpp LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y())); x 48 Source/platform/geometry/LayoutRect.h LayoutRect(LayoutUnit x, LayoutUnit y, LayoutUnit width, LayoutUnit height) x 49 Source/platform/geometry/LayoutRect.h : m_location(LayoutPoint(x, y)), m_size(LayoutSize(width, height)) { } x 60 Source/platform/geometry/LayoutRect.h IntSize pixelSnappedSize() const { return IntSize(snapSizeToPixel(m_size.width(), m_location.x()), snapSizeToPixel(m_size.height(), m_location.y())); } x 65 Source/platform/geometry/LayoutRect.h LayoutUnit x() const { return m_location.x(); } x 67 Source/platform/geometry/LayoutRect.h LayoutUnit maxX() const { return x() + width(); } x 72 Source/platform/geometry/LayoutRect.h int pixelSnappedX() const { return x().round(); } x 74 Source/platform/geometry/LayoutRect.h int pixelSnappedWidth() const { return snapSizeToPixel(width(), x()); } x 76 Source/platform/geometry/LayoutRect.h int pixelSnappedMaxX() const { return (m_location.x() + m_size.width()).round(); } x 79 Source/platform/geometry/LayoutRect.h void setX(LayoutUnit x) { m_location.setX(x); } x 88 Source/platform/geometry/LayoutRect.h LayoutPoint center() const { return LayoutPoint(x() + width() / 2, y() + height() / 2); } x 91 Source/platform/geometry/LayoutRect.h void moveBy(const LayoutPoint& offset) { m_location.move(offset.x(), offset.y()); } x 111 Source/platform/geometry/LayoutRect.h LayoutUnit delta = edge - x(); x 133 Source/platform/geometry/LayoutRect.h LayoutPoint maxXMinYCorner() const { return LayoutPoint(m_location.x() + m_size.width(), m_location.y()); } // typically topRight x 134 Source/platform/geometry/LayoutRect.h LayoutPoint minXMaxYCorner() const { return LayoutPoint(m_location.x(), m_location.y() + m_size.height()); } // typically bottomLeft x 135 Source/platform/geometry/LayoutRect.h LayoutPoint maxXMaxYCorner() const { return LayoutPoint(m_location.x() + m_size.width(), m_location.y() + m_size.height()); } // typically bottomRight x 143 Source/platform/geometry/LayoutRect.h { return px >= x() && px < maxX() && py >= y() && py < maxY(); } x 144 Source/platform/geometry/LayoutRect.h bool contains(const LayoutPoint& point) const { return contains(point.x(), point.y()); } x 152 Source/platform/geometry/LayoutRect.h m_location.setX(m_location.x() - dx); x 206 Source/platform/geometry/LayoutRect.h snapSizeToPixel(rect.width(), rect.x()), x 58 Source/platform/geometry/Region.cpp int x = *segment; x 59 Source/platform/geometry/Region.cpp int width = *(segment + 1) - x; x 61 Source/platform/geometry/Region.cpp rects.append(IntRect(x, y, width, height)); x 91 Source/platform/geometry/Region.cpp int x = *segment; x 94 Source/platform/geometry/Region.cpp if (x > point.x()) x 96 Source/platform/geometry/Region.cpp if (maxX > point.x()) x 231 Source/platform/geometry/Region.cpp appendSegment(rect.x()); x 276 Source/platform/geometry/Region.cpp void Region::Shape::appendSegment(int x) x 278 Source/platform/geometry/Region.cpp m_segments.append(x); x 443 Source/platform/geometry/Region.cpp int x; x 446 Source/platform/geometry/Region.cpp x = *s1; x 451 Source/platform/geometry/Region.cpp x = *s2; x 457 Source/platform/geometry/Region.cpp segments.append(x); x 547 Source/platform/geometry/Region.cpp printf("Bounds: (%d, %d, %d, %d)\n", m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds.height()); x 119 Source/platform/geometry/Region.h void appendSegment(int x); x 35 Source/platform/geometry/RegionTest.cpp #define TEST_INSIDE_RECT(r, x, y, w, h) \ x 36 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x, y))); \ x 37 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y))); \ x 38 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x, y + h - 1))); \ x 39 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y + h - 1))); \ x 40 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x, y + h / 2))); \ x 41 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y + h / 2))); \ x 42 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y))); \ x 43 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y + h - 1))); \ x 44 Source/platform/geometry/RegionTest.cpp EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y + h / 2))); \ x 46 Source/platform/geometry/RegionTest.cpp #define TEST_LEFT_OF_RECT(r, x, y, w, h) \ x 47 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x - 1, y))); \ x 48 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x - 1, y + h - 1))); \ x 50 Source/platform/geometry/RegionTest.cpp #define TEST_RIGHT_OF_RECT(r, x, y, w, h) \ x 51 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x + w, y))); \ x 52 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x + w, y + h - 1))); \ x 54 Source/platform/geometry/RegionTest.cpp #define TEST_TOP_OF_RECT(r, x, y, w, h) \ x 55 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x, y - 1))); \ x 56 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x + w - 1, y - 1))); \ x 58 Source/platform/geometry/RegionTest.cpp #define TEST_BOTTOM_OF_RECT(r, x, y, w, h) \ x 59 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x, y + h))); \ x 60 Source/platform/geometry/RegionTest.cpp EXPECT_FALSE(r.contains(IntPoint(x + w - 1, y + h))); \ x 137 Source/platform/geometry/RoundedRect.cpp RoundedRect::RoundedRect(int x, int y, int width, int height) x 138 Source/platform/geometry/RoundedRect.cpp : m_rect(x, y, width, height) x 157 Source/platform/geometry/RoundedRect.cpp int minX = m_rect.x() + max(m_radii.topLeft().width(), m_radii.bottomLeft().width()); x 204 Source/platform/geometry/RoundedRect.cpp FloatRect rect(m_rect.x(), m_rect.y(), topLeft.width(), topLeft.height()); x 206 Source/platform/geometry/RoundedRect.cpp FloatPoint center(m_rect.x() + topLeft.width(), m_rect.y() + topLeft.height()); x 226 Source/platform/geometry/RoundedRect.cpp FloatRect rect(m_rect.x(), m_rect.maxY() - bottomLeft.height(), bottomLeft.width(), bottomLeft.height()); x 228 Source/platform/geometry/RoundedRect.cpp FloatPoint center(m_rect.x() + bottomLeft.width(), m_rect.maxY() - bottomLeft.height()); x 79 Source/platform/geometry/RoundedRect.h RoundedRect(int x, int y, int width, int height); x 45 Source/platform/geometry/RoundedRectTest.cpp << rect.x() << ", " x 85 Source/platform/geometry/TransformState.h void move(LayoutUnit x, LayoutUnit y, TransformAccumulation accumulate = FlattenTransform) x 87 Source/platform/geometry/TransformState.h move(LayoutSize(x, y), accumulate); x 34 Source/platform/geometry/cg/FloatPointCG.cpp FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y) x 40 Source/platform/geometry/cg/FloatRectCG.cpp return CGRectMake(x(), y(), width(), height()); x 33 Source/platform/geometry/cg/IntPointCG.cpp IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y)) x 35 Source/platform/geometry/cg/IntRectCG.cpp return CGRectMake(x(), y(), width(), height()); x 40 Source/platform/geometry/cg/IntRectCG.cpp int l = static_cast<int>(floorf(rect.origin.x)); x 282 Source/platform/graphics/BitmapImage.cpp ctxt->translate(normDstRect.x(), normDstRect.y()); x 290 Source/platform/graphics/BitmapImage.cpp normDstRect = FloatRect(normDstRect.x(), normDstRect.y(), normDstRect.height(), normDstRect.width()); x 92 Source/platform/graphics/CrossfadeGeneratedImage.cpp context->translate(dstRect.x(), dstRect.y()); x 95 Source/platform/graphics/CrossfadeGeneratedImage.cpp context->translate(-srcRect.x(), -srcRect.y()); x 250 Source/platform/graphics/Gradient.cpp m_gradientSpaceTransformation.translate(m_p0.x(), m_p0.y()); x 252 Source/platform/graphics/Gradient.cpp m_gradientSpaceTransformation.translate(-m_p0.x(), -m_p0.y()); x 74 Source/platform/graphics/Gradient.h bool isZeroSize() const { return m_p0.x() == m_p1.x() && m_p0.y() == m_p1.y() && (!m_radial || m_r0 == m_r1); } x 39 Source/platform/graphics/GradientGeneratedImage.cpp destContext->translate(destRect.x(), destRect.y()); x 42 Source/platform/graphics/GradientGeneratedImage.cpp destContext->translate(-srcRect.x(), -srcRect.y()); x 52 Source/platform/graphics/GradientGeneratedImage.cpp int firstColumn = static_cast<int>(floorf((((destRect.x() - phase.x()) / scale.width()) - srcRect.x()) / srcRect.width())); x 55 Source/platform/graphics/GradientGeneratedImage.cpp float dstX = (srcRect.x() + i * stepX) * scale.width() + phase.x(); x 57 Source/platform/graphics/GradientGeneratedImage.cpp ASSERT(i > firstColumn || dstX <= destRect.x()); x 58 Source/platform/graphics/GradientGeneratedImage.cpp ASSERT(i == firstColumn || dstX > destRect.x()); x 63 Source/platform/graphics/GradientGeneratedImage.cpp if (dstX < destRect.x()) x 64 Source/platform/graphics/GradientGeneratedImage.cpp dstX = destRect.x(); x 74 Source/platform/graphics/GradientGeneratedImage.cpp visibleSrcRect.setX((tileDstRect.x() - phase.x()) / scale.width() - i * stepX); x 415 Source/platform/graphics/GraphicsContext.cpp bool GraphicsContext::readPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, int x, int y) x 420 Source/platform/graphics/GraphicsContext.cpp return m_canvas->readPixels(info, pixels, rowBytes, x, y); x 502 Source/platform/graphics/GraphicsContext.cpp m_canvas->translate(-bounds.x(), -bounds.y()); x 504 Source/platform/graphics/GraphicsContext.cpp savedMatrix.preTranslate(bounds.x(), bounds.y()); x 543 Source/platform/graphics/GraphicsContext.cpp if (bounds.x() || bounds.y()) x 544 Source/platform/graphics/GraphicsContext.cpp m_canvas->translate(bounds.x(), bounds.y()); x 548 Source/platform/graphics/GraphicsContext.cpp if (bounds.x() || bounds.y()) x 549 Source/platform/graphics/GraphicsContext.cpp m_canvas->translate(-bounds.x(), -bounds.y()); x 721 Source/platform/graphics/GraphicsContext.cpp bool isVerticalLine = (p1.x() == p2.x()); x 735 Source/platform/graphics/GraphicsContext.cpp r1.set(p1.x(), p1.y(), p1.x() + width, p1.y() + width); x 736 Source/platform/graphics/GraphicsContext.cpp r2.set(p2.x(), p2.y(), p2.x() + width, p2.y() + width); x 793 Source/platform/graphics/GraphicsContext.cpp for (int x = 0; x < colPixels; ++x) { x 794 Source/platform/graphics/GraphicsContext.cpp uint32_t* row = bitmap.getAddr32(0, x); x 795 Source/platform/graphics/GraphicsContext.cpp row[0] = colors[index][x * 2]; x 796 Source/platform/graphics/GraphicsContext.cpp row[1] = colors[index][x * 2 + 1]; x 797 Source/platform/graphics/GraphicsContext.cpp row[2] = colors[index][x * 2]; x 814 Source/platform/graphics/GraphicsContext.cpp for (int x = 0; x < colPixels; ++x) { x 815 Source/platform/graphics/GraphicsContext.cpp uint32_t* row = bitmap.getAddr32(0, x); x 816 Source/platform/graphics/GraphicsContext.cpp row[0] = colors[index][x * 3]; x 817 Source/platform/graphics/GraphicsContext.cpp row[1] = colors[index][x * 3 + 1]; x 818 Source/platform/graphics/GraphicsContext.cpp row[2] = colors[index][x * 3 + 2]; x 819 Source/platform/graphics/GraphicsContext.cpp row[3] = colors[index][x * 3 + 2]; x 820 Source/platform/graphics/GraphicsContext.cpp row[4] = colors[index][x * 3 + 1]; x 821 Source/platform/graphics/GraphicsContext.cpp row[5] = colors[index][x * 3]; x 852 Source/platform/graphics/GraphicsContext.cpp SkScalar originX = WebCoreFloatToSkScalar(pt.x()) * deviceScaleFactor; x 861 Source/platform/graphics/GraphicsContext.cpp SkScalar originX = WebCoreFloatToSkScalar(pt.x()); x 906 Source/platform/graphics/GraphicsContext.cpp r.fLeft = WebCoreFloatToSkScalar(pt.x()); x 921 Source/platform/graphics/GraphicsContext.cpp drawLine(IntPoint(pt.x(), y), IntPoint(pt.x() + width, y)); x 1114 Source/platform/graphics/GraphicsContext.cpp void GraphicsContext::writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y) x 1119 Source/platform/graphics/GraphicsContext.cpp m_canvas->writePixels(info, pixels, rowBytes, x, y); x 1122 Source/platform/graphics/GraphicsContext.cpp SkRect rect = SkRect::MakeXYWH(x, y, info.width(), info.height()); x 1135 Source/platform/graphics/GraphicsContext.cpp void GraphicsContext::writePixels(const SkBitmap& bitmap, int x, int y) x 1143 Source/platform/graphics/GraphicsContext.cpp writePixels(bitmap.info(), bitmap.getPixels(), bitmap.rowBytes(), x, y); x 1608 Source/platform/graphics/GraphicsContext.cpp SkAnnotateNamedDestination(m_canvas, SkPoint::Make(pos.x(), pos.y()), nameData); x 1690 Source/platform/graphics/GraphicsContext.cpp if (p1.x() == p2.x()) { x 1694 Source/platform/graphics/GraphicsContext.cpp p1.setX(p1.x() + strokeWidth); x 1695 Source/platform/graphics/GraphicsContext.cpp p2.setX(p2.x() - strokeWidth); x 1700 Source/platform/graphics/GraphicsContext.cpp if (p1.x() == p2.x()) { x 1702 Source/platform/graphics/GraphicsContext.cpp p1.setX(p1.x() + 0.5f); x 1703 Source/platform/graphics/GraphicsContext.cpp p2.setX(p2.x() + 0.5f); x 1739 Source/platform/graphics/GraphicsContext.cpp path->moveTo(WebCoreFloatToSkScalar(points[0].x()), x 1742 Source/platform/graphics/GraphicsContext.cpp path->lineTo(WebCoreFloatToSkScalar(points[i].x()), x 1838 Source/platform/graphics/GraphicsContext.cpp for (int x = 0; x < bitmap->width() + 8; x += 8) { x 1839 Source/platform/graphics/GraphicsContext.cpp int count = std::min(bitmap->width() - x, 8); x 1841 Source/platform/graphics/GraphicsContext.cpp memcpy(row1 + x, row1Color, count * sizeof(SkPMColor)); x 1842 Source/platform/graphics/GraphicsContext.cpp memcpy(row2 + x, row2Color, count * sizeof(SkPMColor)); x 1843 Source/platform/graphics/GraphicsContext.cpp memcpy(row3 + x, row3Color, count * sizeof(SkPMColor)); x 1844 Source/platform/graphics/GraphicsContext.cpp memcpy(row4 + x, row4Color, count * sizeof(SkPMColor)); x 1858 Source/platform/graphics/GraphicsContext.cpp for (int x = 0; x < bitmap->width(); x++) { x 1859 Source/platform/graphics/GraphicsContext.cpp switch (x % 4) { x 1861 Source/platform/graphics/GraphicsContext.cpp row1[x] = lineColor; x 1864 Source/platform/graphics/GraphicsContext.cpp row1[x] = antiColor; x 1865 Source/platform/graphics/GraphicsContext.cpp row2[x] = antiColor; x 1868 Source/platform/graphics/GraphicsContext.cpp row2[x] = lineColor; x 1871 Source/platform/graphics/GraphicsContext.cpp row1[x] = antiColor; x 1872 Source/platform/graphics/GraphicsContext.cpp row2[x] = antiColor; x 214 Source/platform/graphics/GraphicsContext.h bool readPixels(const SkImageInfo&, void* pixels, size_t rowBytes, int x, int y); x 274 Source/platform/graphics/GraphicsContext.h void writePixels(const SkImageInfo&, const void* pixels, size_t rowBytes, int x, int y); x 275 Source/platform/graphics/GraphicsContext.h void writePixels(const SkBitmap&, int x, int y); x 364 Source/platform/graphics/GraphicsContext.h void translate(float x, float y); x 42 Source/platform/graphics/GraphicsContextTest.cpp EXPECT_EQ(a.x(), b.x()); \ x 51 Source/platform/graphics/GraphicsContextTest.cpp for (int x = opaqueRect.x(); x < opaqueRect.maxX(); ++x) { \ x 52 Source/platform/graphics/GraphicsContextTest.cpp int alpha = *bitmap.getAddr32(x, y) >> 24; \ x 61 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < bitmap.width(); ++x) { \ x 62 Source/platform/graphics/GraphicsContextTest.cpp int alpha = *bitmap.getAddr32(x, y) >> 24; \ x 63 Source/platform/graphics/GraphicsContextTest.cpp bool opaque = opaqueRect.contains(x, y); \ x 522 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < opaqueBitmap.width(); ++x) x 523 Source/platform/graphics/GraphicsContextTest.cpp *opaqueBitmap.getAddr32(x, y) = 0xFFFFFFFF; x 531 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < alphaBitmap.width(); ++x) x 532 Source/platform/graphics/GraphicsContextTest.cpp *alphaBitmap.getAddr32(x, y) = 0x00000000; x 763 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < opaqueBitmap.width(); ++x) x 764 Source/platform/graphics/GraphicsContextTest.cpp *opaqueBitmap.getAddr32(x, y) = 0xFFFFFFFF; x 769 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < alphaBitmap.width(); ++x) x 770 Source/platform/graphics/GraphicsContextTest.cpp *alphaBitmap.getAddr32(x, y) = 0x00000000; x 815 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < opaqueBitmap.width(); ++x) x 816 Source/platform/graphics/GraphicsContextTest.cpp *opaqueBitmap.getAddr32(x, y) = 0xFFFFFFFF; x 821 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < alphaBitmap.width(); ++x) x 822 Source/platform/graphics/GraphicsContextTest.cpp *alphaBitmap.getAddr32(x, y) = 0x00000000; x 867 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < opaqueBitmap.width(); ++x) x 868 Source/platform/graphics/GraphicsContextTest.cpp *opaqueBitmap.getAddr32(x, y) = 0xFFFFFFFF; x 873 Source/platform/graphics/GraphicsContextTest.cpp for (int x = 0; x < alphaBitmap.width(); ++x) x 874 Source/platform/graphics/GraphicsContextTest.cpp *alphaBitmap.getAddr32(x, y) = 0x00000000; x 386 Source/platform/graphics/GraphicsLayer.cpp contentsLayer->setPosition(FloatPoint(m_contentsRect.x(), m_contentsRect.y())); x 395 Source/platform/graphics/GraphicsLayer.cpp m_contentsClippingMaskLayer->setOffsetFromRenderer(offsetFromRenderer() + IntSize(m_contentsRect.location().x(), m_contentsRect.location().y())); x 546 Source/platform/graphics/GraphicsLayer.cpp ts << "(position " << m_position.x() << " " << m_position.y() << ")\n"; x 551 Source/platform/graphics/GraphicsLayer.cpp ts << "(bounds origin " << m_boundsOrigin.x() << " " << m_boundsOrigin.y() << ")\n"; x 556 Source/platform/graphics/GraphicsLayer.cpp ts << "(anchor " << m_anchorPoint.x() << " " << m_anchorPoint.y() << ")\n"; x 670 Source/platform/graphics/GraphicsLayer.cpp ts << repaintRectMap().get(this)[i].x() << " "; x 796 Source/platform/graphics/GraphicsLayer.cpp platformLayer()->setAnchorPoint(FloatPoint(m_anchorPoint.x(), m_anchorPoint.y())); x 1121 Source/platform/graphics/GraphicsLayer.cpp webFilters.appendDropShadowFilter(WebPoint(dropShadowOp.x(), dropShadowOp.y()), dropShadowOp.stdDeviation(), dropShadowOp.color().rgb()); x 60 Source/platform/graphics/GraphicsLayerDebugInfo.cpp rectArray->pushNumber(rect.x().toFloat()); x 109 Source/platform/graphics/Image.cpp norm.setX(norm.x() + norm.width()); x 145 Source/platform/graphics/Image.cpp oneTileRect.setX(destRect.x() + fmodf(fmodf(-srcPoint.x(), actualTileSize.width()) - actualTileSize.width(), actualTileSize.width())); x 152 Source/platform/graphics/Image.cpp visibleSrcRect.setX((destRect.x() - oneTileRect.x()) / scale.width()); x 203 Source/platform/graphics/Image.cpp float hPhase = tileScaleFactor.width() * srcRect.x(); x 211 Source/platform/graphics/Image.cpp FloatPoint patternPhase(dstRect.x() - hPhase, dstRect.y() - vPhase); x 289 Source/platform/graphics/ImageBuffer.cpp for (int x = 0; x < size.width(); ++x) { x 290 Source/platform/graphics/ImageBuffer.cpp SkColor color = SkPMColorToColor(srcRow[x]); x 291 Source/platform/graphics/ImageBuffer.cpp srcRow[x] = SkPreMultiplyARGB( x 319 Source/platform/graphics/ImageBuffer.cpp if (rect.x() < 0 x 328 Source/platform/graphics/ImageBuffer.cpp context->readPixels(info, result->data(), 4 * rect.width(), rect.x(), rect.y()); x 354 Source/platform/graphics/ImageBuffer.cpp int originX = sourceRect.x(); x 355 Source/platform/graphics/ImageBuffer.cpp int destX = destPoint.x() + sourceRect.x(); x 67 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp IntRect top(contentRect.x(), contentRect.y(), contentRect.width(), contentRect.height() / 2); x 68 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp IntRect bottom(contentRect.x(), contentRect.y() + contentRect.height() / 2, contentRect.width(), contentRect.height() / 2); x 104 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp EXPECT_EQ(a.x, b.x); \ x 181 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp EXPECT_EQ_RECT(WebFloatRect(partialRect.x(), partialRect.y(), partialRect.width(), partialRect.height()), opaqueRect); x 194 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp EXPECT_EQ_RECT(WebFloatRect(partialRect.x(), partialRect.y(), partialRect.width(), partialRect.height()), opaqueRect); x 321 Source/platform/graphics/Path.cpp SkScalar cx = WebCoreFloatToSkScalar(p.x()); x 370 Source/platform/graphics/Path.cpp addEllipse(FloatPoint(p.x(), p.y()), radiusX, radiusY, startAngle, endAngle, anticlockwise); x 375 Source/platform/graphics/Path.cpp AffineTransform ellipseTransform = AffineTransform::translation(p.x(), p.y()).rotateRadians(rotation); x 449 Source/platform/graphics/Path.cpp moveTo(FloatPoint(rect.x() + topLeftRadius.width(), rect.y())); x 461 Source/platform/graphics/Path.cpp addLineTo(FloatPoint(rect.x() + bottomLeftRadius.width(), rect.maxY())); x 463 Source/platform/graphics/Path.cpp addBezierCurveTo(FloatPoint(rect.x() + bottomLeftRadius.width() * gCircleControlPoint, rect.maxY()), x 464 Source/platform/graphics/Path.cpp FloatPoint(rect.x(), rect.maxY() - bottomLeftRadius.height() * gCircleControlPoint), x 465 Source/platform/graphics/Path.cpp FloatPoint(rect.x(), rect.maxY() - bottomLeftRadius.height())); x 466 Source/platform/graphics/Path.cpp addLineTo(FloatPoint(rect.x(), rect.y() + topLeftRadius.height())); x 468 Source/platform/graphics/Path.cpp addBezierCurveTo(FloatPoint(rect.x(), rect.y() + topLeftRadius.height() * gCircleControlPoint), x 469 Source/platform/graphics/Path.cpp FloatPoint(rect.x() + topLeftRadius.width() * gCircleControlPoint, rect.y()), x 470 Source/platform/graphics/Path.cpp FloatPoint(rect.x() + topLeftRadius.width(), rect.y())); x 32 Source/platform/graphics/PathTraversalState.cpp return FloatPoint((first.x() + second.x()) / 2.0f, (first.y() + second.y()) / 2.0f); x 37 Source/platform/graphics/PathTraversalState.cpp return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y())); x 58 Source/platform/graphics/cpu/arm/filters/FEGaussianBlurNEON.h for (int x = 0; x < effectWidth; ++x) { x 59 Source/platform/graphics/cpu/arm/filters/FEGaussianBlurNEON.h int pixelOffset = line + x * pixelStride; x 62 Source/platform/graphics/cpu/arm/filters/FEGaussianBlurNEON.h if (x >= dxLeft) { x 66 Source/platform/graphics/cpu/arm/filters/FEGaussianBlurNEON.h if (x + dxRight < effectWidth) { x 123 Source/platform/graphics/cpu/arm/filters/FELightingNEON.h floatArguments.lightX = pointLightSource->position().x(); x 130 Source/platform/graphics/cpu/arm/filters/FELightingNEON.h floatArguments.lightX = spotLightSource->position().x(); x 135 Source/platform/graphics/cpu/arm/filters/FELightingNEON.h floatArguments.directionX = paintingData.directionVector.x(); x 148 Source/platform/graphics/cpu/arm/filters/FELightingNEON.h floatArguments.lightX = paintingData.lightVector.x(); x 49 Source/platform/graphics/filters/DistantLightSource.h virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE; x 172 Source/platform/graphics/filters/FEColorMatrix.cpp resultImage->context()->drawBitmap(nativeImage->bitmap(), drawingRegion.x(), drawingRegion.y(), &paint); x 172 Source/platform/graphics/filters/FEComponentTransfer.cpp resultImage->context()->drawBitmap(nativeImage->bitmap(), destRect.x(), destRect.y(), &paint); x 334 Source/platform/graphics/filters/FEComposite.cpp IntPoint destinationPoint(destinationRect.x() - absolutePaintRect().x(), destinationRect.y() - absolutePaintRect().y()); x 335 Source/platform/graphics/filters/FEComposite.cpp IntRect sourceRect(IntPoint(destinationRect.x() - in->absolutePaintRect().x(), x 337 Source/platform/graphics/filters/FEComposite.cpp IntRect source2Rect(IntPoint(destinationRect.x() - in2->absolutePaintRect().x(), x 153 Source/platform/graphics/filters/FEConvolveMatrix.cpp ASSERT(kernelUnitLength.x() > 0); x 265 Source/platform/graphics/filters/FEConvolveMatrix.cpp int pixel = (m_targetOffset.y() * paintingData.width + m_targetOffset.x()) * 4; x 279 Source/platform/graphics/filters/FEConvolveMatrix.cpp for (int x = clipRight + 1; x > 0; --x) { x 312 Source/platform/graphics/filters/FEConvolveMatrix.cpp ALWAYS_INLINE int FEConvolveMatrix::getPixelValue(PaintingData& paintingData, int x, int y) x 314 Source/platform/graphics/filters/FEConvolveMatrix.cpp if (x >= 0 && x < paintingData.width && y >= 0 && y < paintingData.height) x 315 Source/platform/graphics/filters/FEConvolveMatrix.cpp return (y * paintingData.width + x) << 2; x 321 Source/platform/graphics/filters/FEConvolveMatrix.cpp if (x < 0) x 322 Source/platform/graphics/filters/FEConvolveMatrix.cpp x = 0; x 323 Source/platform/graphics/filters/FEConvolveMatrix.cpp else if (x >= paintingData.width) x 324 Source/platform/graphics/filters/FEConvolveMatrix.cpp x = paintingData.width - 1; x 329 Source/platform/graphics/filters/FEConvolveMatrix.cpp return (y * paintingData.width + x) << 2; x 331 Source/platform/graphics/filters/FEConvolveMatrix.cpp while (x < 0) x 332 Source/platform/graphics/filters/FEConvolveMatrix.cpp x += paintingData.width; x 333 Source/platform/graphics/filters/FEConvolveMatrix.cpp x %= paintingData.width; x 337 Source/platform/graphics/filters/FEConvolveMatrix.cpp return (y * paintingData.width + x) << 2; x 348 Source/platform/graphics/filters/FEConvolveMatrix.cpp int beginKernelPixelX = x1 - m_targetOffset.x(); x 359 Source/platform/graphics/filters/FEConvolveMatrix.cpp for (int x = width; x > 0; --x) { x 489 Source/platform/graphics/filters/FEConvolveMatrix.cpp clipRight += m_targetOffset.x() + 1; x 495 Source/platform/graphics/filters/FEConvolveMatrix.cpp if (m_targetOffset.x() > 0) x 496 Source/platform/graphics/filters/FEConvolveMatrix.cpp setOuterPixels(paintingData, 0, m_targetOffset.y(), m_targetOffset.x(), clipBottom); x 531 Source/platform/graphics/filters/FEConvolveMatrix.cpp SkIPoint target = SkIPoint::Make(m_targetOffset.x(), m_targetOffset.y()); x 96 Source/platform/graphics/filters/FEConvolveMatrix.h ALWAYS_INLINE int getPixelValue(PaintingData&, int x, int y); x 146 Source/platform/graphics/filters/FEDisplacementMap.cpp for (int x = 0; x < paintSize.width(); ++x) { x 147 Source/platform/graphics/filters/FEDisplacementMap.cpp int dstIndex = line + x * 4; x 148 Source/platform/graphics/filters/FEDisplacementMap.cpp int srcX = x + static_cast<int>(scaleForColorX * srcPixelArrayB->item(dstIndex + m_xChannelSelector - 1) + scaledOffsetX); x 103 Source/platform/graphics/filters/FEDropShadow.cpp resultContext->drawBitmap(nativeImage->bitmap(), drawingRegion.x() + offset.width(), drawingRegion.y() + offset.height(), &paint); x 104 Source/platform/graphics/filters/FEDropShadow.cpp resultContext->drawBitmap(nativeImage->bitmap(), drawingRegion.x(), drawingRegion.y()); x 51 Source/platform/graphics/filters/FEGaussianBlur.cpp FEGaussianBlur::FEGaussianBlur(Filter* filter, float x, float y) x 53 Source/platform/graphics/filters/FEGaussianBlur.cpp , m_stdX(x) x 58 Source/platform/graphics/filters/FEGaussianBlur.cpp PassRefPtr<FEGaussianBlur> FEGaussianBlur::create(Filter* filter, float x, float y) x 60 Source/platform/graphics/filters/FEGaussianBlur.cpp return adoptRef(new FEGaussianBlur(filter, x, y)); x 68 Source/platform/graphics/filters/FEGaussianBlur.cpp void FEGaussianBlur::setStdDeviationX(float x) x 70 Source/platform/graphics/filters/FEGaussianBlur.cpp m_stdX = x; x 85 Source/platform/graphics/filters/FEGaussianBlur.cpp ASSERT(std.x() >= 0 && std.y() >= 0); x 90 Source/platform/graphics/filters/FEGaussianBlur.cpp if (std.x()) { x 91 Source/platform/graphics/filters/FEGaussianBlur.cpp int size = max<unsigned>(2, static_cast<unsigned>(floorf(std.x() * gaussianKernelFactor() + 0.5f))); x 105 Source/platform/graphics/filters/FEGaussianBlur.cpp FloatPoint stdError(filter->applyHorizontalScale(std.x()), filter->applyVerticalScale(std.y())); x 193 Source/platform/graphics/filters/FELighting.cpp if (!normal2DVector.x() && !normal2DVector.y()) { x 208 Source/platform/graphics/filters/FELighting.cpp normalVector.setX(factorX * static_cast<float>(normal2DVector.x()) * data.surfaceScale); x 231 Source/platform/graphics/filters/FELighting.cpp data.pixels->set(offset, static_cast<unsigned char>(lightStrength * paintingData.colorVector.x())); x 249 Source/platform/graphics/filters/FELighting.cpp for (int x = 1; x < data.widthDecreasedByOne; ++x, offset += cPixelSize) { x 251 Source/platform/graphics/filters/FELighting.cpp inlineSetPixel(offset, data, paintingData, x, y, cFactor1div4, cFactor1div4, normalVector); x 316 Source/platform/graphics/filters/FELighting.cpp scale->setZ(0.5f * (scale->x() + scale->y())); x 370 Source/platform/graphics/filters/FELighting.cpp for (int x = 1; x < data.widthDecreasedByOne; ++x, offset += cPixelSize) { x 372 Source/platform/graphics/filters/FELighting.cpp inlineSetPixel(offset, data, paintingData, x, 0, cFactor1div3, cFactor1div2, normalVector); x 376 Source/platform/graphics/filters/FELighting.cpp for (int x = 1; x < data.widthDecreasedByOne; ++x, offset += cPixelSize) { x 378 Source/platform/graphics/filters/FELighting.cpp inlineSetPixel(offset, data, paintingData, x, data.heightDecreasedByOne, cFactor1div3, cFactor1div2, normalVector); x 461 Source/platform/graphics/filters/FELighting.cpp SkPoint3 skPosition(position.x(), position.y(), position.z()); x 468 Source/platform/graphics/filters/FELighting.cpp SkPoint3 location(spotLightSource->position().x(), spotLightSource->position().y(), spotLightSource->position().z()); x 469 Source/platform/graphics/filters/FELighting.cpp SkPoint3 target(spotLightSource->direction().x(), spotLightSource->direction().y(), spotLightSource->direction().z()); x 82 Source/platform/graphics/filters/FETile.cpp tileImageContext->translate(-inMaxEffectLocation.x(), -inMaxEffectLocation.y()); x 88 Source/platform/graphics/filters/FETile.cpp patternTransform.translate(inMaxEffectLocation.x() - maxEffectLocation.x(), inMaxEffectLocation.y() - maxEffectLocation.y()); x 100 Source/platform/graphics/filters/FETile.cpp result.setX(boundaries.x()); x 231 Source/platform/graphics/filters/FETurbulence.cpp Noise noiseX(noiseVector.x()); x 301 Source/platform/graphics/filters/FETurbulence.cpp FloatPoint noiseVector(point.x() * baseFrequencyX, point.y() * baseFrequencyY); x 308 Source/platform/graphics/filters/FETurbulence.cpp noiseVector.setX(noiseVector.x() * 2); x 340 Source/platform/graphics/filters/FETurbulence.cpp point.setX(filterRegion.x()); x 341 Source/platform/graphics/filters/FETurbulence.cpp for (int x = 0; x < filterRegion.width(); ++x) { x 342 Source/platform/graphics/filters/FETurbulence.cpp point.setX(point.x() + 1); x 122 Source/platform/graphics/filters/FilterEffect.cpp sourceClipRect.setX(boundaries.x()); x 152 Source/platform/graphics/filters/FilterEffect.cpp return IntRect(IntPoint(srcRect.x() - m_absolutePaintRect.x(), x 321 Source/platform/graphics/filters/FilterEffect.cpp if (rect.x() < 0 || rect.y() < 0 || rect.maxX() > m_absolutePaintRect.width() || rect.maxY() > m_absolutePaintRect.height()) x 325 Source/platform/graphics/filters/FilterEffect.cpp if (rect.maxX() <= 0 || rect.maxY() <= 0 || rect.x() >= m_absolutePaintRect.width() || rect.y() >= m_absolutePaintRect.height()) x 328 Source/platform/graphics/filters/FilterEffect.cpp int xOrigin = rect.x(); x 516 Source/platform/graphics/filters/FilterEffect.cpp subregion.setX(boundaries.x()); x 549 Source/platform/graphics/filters/FilterEffect.cpp rect.setX(boundaries.x()); x 281 Source/platform/graphics/filters/FilterOperation.h int x() const { return m_location.x(); } x 129 Source/platform/graphics/filters/FilterOperations.cpp std::max(0, outsetSize.width() + dropShadowOperation->x()), x 131 Source/platform/graphics/filters/FilterOperations.cpp std::max(0, outsetSize.width() - dropShadowOperation->x()) x 143 Source/platform/graphics/filters/FilterOperations.cpp std::max(0.0f, outsetRect.x() + outsetRect.width() - 1), x 145 Source/platform/graphics/filters/FilterOperations.cpp std::max(0.0f, -outsetRect.x()) x 76 Source/platform/graphics/filters/LightSource.h virtual void updatePaintingData(PaintingData&, int x, int y, float z) const = 0; x 42 Source/platform/graphics/filters/PointLightSource.cpp void PointLightSource::updatePaintingData(PaintingData& paintingData, int x, int y, float z) const x 44 Source/platform/graphics/filters/PointLightSource.cpp paintingData.lightVector.setX(m_position.x() - x); x 50 Source/platform/graphics/filters/PointLightSource.cpp bool PointLightSource::setX(float x) x 52 Source/platform/graphics/filters/PointLightSource.cpp if (m_position.x() == x) x 54 Source/platform/graphics/filters/PointLightSource.cpp m_position.setX(x); x 76 Source/platform/graphics/filters/PointLightSource.cpp ts << "x=" << p.x() << " y=" << p.y() << " z=" << p.z(); x 39 Source/platform/graphics/filters/PointLightSource.h FloatPoint3D position(m_position.x() * scale.x() - offset.width(), m_position.y() * scale.y() - offset.height(), m_position.z() * scale.z()); x 49 Source/platform/graphics/filters/PointLightSource.h virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE; x 188 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp filters->appendDropShadowFilter(blink::WebPoint(drop.x(), drop.y()), drop.stdDeviation(), drop.color().rgb()); x 46 Source/platform/graphics/filters/SpotLightSource.cpp paintingData.directionVector.setX(m_direction.x() - m_position.x()); x 65 Source/platform/graphics/filters/SpotLightSource.cpp void SpotLightSource::updatePaintingData(PaintingData& paintingData, int x, int y, float z) const x 67 Source/platform/graphics/filters/SpotLightSource.cpp paintingData.lightVector.setX(m_position.x() - x); x 95 Source/platform/graphics/filters/SpotLightSource.cpp paintingData.colorVector.setX(paintingData.privateColorVector.x() * lightStrength); x 100 Source/platform/graphics/filters/SpotLightSource.cpp bool SpotLightSource::setX(float x) x 102 Source/platform/graphics/filters/SpotLightSource.cpp if (m_position.x() == x) x 104 Source/platform/graphics/filters/SpotLightSource.cpp m_position.setX(x); x 126 Source/platform/graphics/filters/SpotLightSource.cpp if (m_direction.x() == pointsAtX) x 167 Source/platform/graphics/filters/SpotLightSource.cpp ts << "x=" << p.x() << " y=" << p.y() << " z=" << p.z(); x 40 Source/platform/graphics/filters/SpotLightSource.h FloatPoint3D position(m_position.x() * scale.x() - offset.width(), m_position.y() * scale.y() - offset.height(), m_position.z() * scale.z()); x 41 Source/platform/graphics/filters/SpotLightSource.h FloatPoint3D direction(m_direction.x() * scale.x() - offset.width(), m_direction.y() * scale.y() - offset.height(), m_direction.z() * scale.z()); x 61 Source/platform/graphics/filters/SpotLightSource.h virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE; x 778 Source/platform/graphics/gpu/DrawingBuffer.cpp void DrawingBuffer::commit(long x, long y, long width, long height) x 798 Source/platform/graphics/gpu/DrawingBuffer.cpp m_context->blitFramebufferCHROMIUM(x, y, width, height, x, y, width, height, GL_COLOR_BUFFER_BIT, GL_NEAREST); x 102 Source/platform/graphics/gpu/DrawingBuffer.h void commit(long x = 0, long y = 0, long width = -1, long height = -1); x 229 Source/platform/graphics/skia/NativeImageSkia.cpp scaledSrcRect->offset(-enclosingScaledSrcRect.x(), -enclosingScaledSrcRect.y()); x 531 Source/platform/graphics/skia/NativeImageSkia.cpp float adjustedX = phase.x() + normSrcRect.x() * scale.width(); x 616 Source/platform/graphics/skia/NativeImageSkia.cpp subsetRect.offset(-scaledImageSubset.x(), -scaledImageSubset.y()); x 139 Source/platform/graphics/skia/SkiaUtils.cpp SkScalar fX = SkFloatToScalar(point.x()); x 165 Source/platform/graphics/skia/SkiaUtils.cpp int x = static_cast<int>(floorf(0.5f + point.x() * scale)); x 167 Source/platform/graphics/skia/SkiaUtils.cpp clip.setRect(x - 1, y - 1, x + 1, y + 1); x 72 Source/platform/graphics/skia/SkiaUtils.h return SkRect::MakeLTRB(SkFloatToScalar(rect.x()), SkFloatToScalar(rect.y()), x 47 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void postSubBufferCHROMIUM(int x, int y, int width, int height) { } x 99 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void copyTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border) { } x 100 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void copyTexSubImage2D(WGC3Denum target, WGC3Dint level, WGC3Dint xoffset, WGC3Dint yoffset, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) { } x 178 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void readPixels(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Denum format, WGC3Denum type, void* pixels) { } x 184 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void scissor(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) { } x 200 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform1f(WGC3Dint location, WGC3Dfloat x) { } x 202 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform1i(WGC3Dint location, WGC3Dint x) { } x 204 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform2f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y) { } x 206 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform2i(WGC3Dint location, WGC3Dint x, WGC3Dint y) { } x 208 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform3f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z) { } x 210 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform3i(WGC3Dint location, WGC3Dint x, WGC3Dint y, WGC3Dint z) { } x 212 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform4f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z, WGC3Dfloat w) { } x 214 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void uniform4i(WGC3Dint location, WGC3Dint x, WGC3Dint y, WGC3Dint z, WGC3Dint w) { } x 223 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void vertexAttrib1f(WGC3Duint index, WGC3Dfloat x) { } x 225 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void vertexAttrib2f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y) { } x 227 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void vertexAttrib3f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z) { } x 229 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void vertexAttrib4f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z, WGC3Dfloat w) { } x 233 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void viewport(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) { } x 530 Source/platform/heap/Handle.h template<bool x, bool y, bool z, typename U, typename V> friend struct CollectionBackingTraceTrait; x 610 Source/platform/heap/Handle.h WeakMember(WTF::HashTableDeletedValueType x) : Member<T>(x) x 850 Source/platform/heap/Handle.h static IteratorReferenceType getToReferenceConversion(IteratorGetType x) { return *x; } x 851 Source/platform/heap/Handle.h static IteratorConstReferenceType getToReferenceConstConversion(IteratorConstGetType x) { return x->get(); } x 877 Source/platform/heap/Handle.h static IteratorReferenceType getToReferenceConversion(IteratorGetType x) { return *x; } x 878 Source/platform/heap/Handle.h static IteratorConstReferenceType getToReferenceConstConversion(IteratorConstGetType x) { return x->get(); } x 275 Source/platform/heap/HeapTest.cpp static IntWrapper* create(int x) x 277 Source/platform/heap/HeapTest.cpp return new IntWrapper(x); x 295 Source/platform/heap/HeapTest.cpp IntWrapper(int x) : m_x(x) { } x 2287 Source/platform/heap/HeapTest.cpp ThingWithDestructor(int x) x 2288 Source/platform/heap/HeapTest.cpp : m_x(x) x 48 Source/platform/heap/Visitor.h #define DEBUG_ONLY(x) x x 50 Source/platform/heap/Visitor.h #define DEBUG_ONLY(x) x 155 Source/platform/image-decoders/ImageFrame.h inline PixelData* getAddr(int x, int y) x 157 Source/platform/image-decoders/ImageFrame.h return m_bitmap.getAddr32(x, y); x 160 Source/platform/image-decoders/ImageFrame.h inline void setRGBA(int x, int y, unsigned r, unsigned g, unsigned b, unsigned a) x 162 Source/platform/image-decoders/ImageFrame.h setRGBA(getAddr(x, y), r, g, b, a); x 542 Source/platform/image-decoders/bmp/BMPImageReader.cpp if (m_coord.x() < m_parent->size().width()) x 551 Source/platform/image-decoders/bmp/BMPImageReader.cpp if ((m_coord.x() < m_parent->size().width()) || (m_isTopDown ? (m_coord.y() < (m_parent->size().height() - 1)) : (m_coord.y() > 0))) x 567 Source/platform/image-decoders/bmp/BMPImageReader.cpp if (((m_coord.x() + dx) > m_parent->size().width()) || pastEndOfImage(dy)) x 598 Source/platform/image-decoders/bmp/BMPImageReader.cpp const int endX = std::min(m_coord.x() + count, m_parent->size().width()); x 617 Source/platform/image-decoders/bmp/BMPImageReader.cpp for (int which = 0; m_coord.x() < endX; ) { x 642 Source/platform/image-decoders/bmp/BMPImageReader.cpp const int endX = m_coord.x() + numPixels; x 670 Source/platform/image-decoders/bmp/BMPImageReader.cpp for (size_t pixel = 0; (pixel < pixelsPerByte) && (m_coord.x() < endX); ++pixel) { x 695 Source/platform/image-decoders/bmp/BMPImageReader.cpp while (m_coord.x() < endX) { x 738 Source/platform/image-decoders/bmp/BMPImageReader.cpp m_coord.move(-m_coord.x(), m_isTopDown ? 1 : -1); x 199 Source/platform/image-decoders/bmp/BMPImageReader.h const int offset = m_coord.x() * bytesPerPixel; x 252 Source/platform/image-decoders/bmp/BMPImageReader.h m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue, alpha); x 266 Source/platform/image-decoders/bmp/BMPImageReader.h while (m_coord.x() < endCoord) x 313 Source/platform/image-decoders/gif/GIFImageDecoder.cpp frameRect.setWidth(size().width() - frameRect.x()); x 215 Source/platform/image-decoders/gif/GIFImageReader.h void setRect(unsigned x, unsigned y, unsigned width, unsigned height) x 217 Source/platform/image-decoders/gif/GIFImageReader.h m_xOffset = x; x 714 Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp for (int x = 0; x < width; ++pixel, ++x) x 715 Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp setPixel<colorSpace>(buffer, pixel, samples, x); x 496 Source/platform/image-decoders/png/PNGImageDecoder.cpp for (int x = 0; x < width; ++x, pixel += colorChannels) { x 388 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp const int left = frameRect.x(); x 403 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp for (int x = 0; x < width; ++x, pixel += 4) { x 404 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp const int canvasX = left + x; x 424 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp for (int x = 0; x < width; ++x) { x 425 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp const int canvasX = left + x; x 442 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp for (int x = 0; x < width; ++x) { x 443 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp const int canvasX = left + x; x 516 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp m_decoderBuffer.u.RGBA.rgba = reinterpret_cast<uint8_t*>(buffer.getAddr(frameRect.x(), frameRect.y())); x 226 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp EXPECT_EQ(frameParameters[i].xOffset, frame->originalFrameRect().x()); x 269 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp EXPECT_EQ(frameParameters[i].xOffset, frame->originalFrameRect().x()); x 312 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp EXPECT_EQ(frameParameters[i].xOffset, frame->originalFrameRect().x()); x 49 Source/platform/scroll/FramelessScrollView.cpp dirtyRect.move(scrollbar->x(), scrollbar->y()); x 69 Source/platform/scroll/ScrollAnimator.cpp m_currentPosX = offset.x(); x 127 Source/platform/scroll/ScrollAnimator.cpp m_currentPosX = position.x(); x 441 Source/platform/scroll/ScrollAnimatorNone.cpp *m_horizontalData.m_currentPosition = offset.x(); x 442 Source/platform/scroll/ScrollAnimatorNone.cpp m_horizontalData.m_desiredPosition = offset.x(); x 443 Source/platform/scroll/ScrollAnimatorNone.cpp m_currentPosX = offset.x(); x 224 Source/platform/scroll/ScrollView.cpp IntPoint maximumOffset(contentsWidth() - visibleWidth() - scrollOrigin().x(), contentsHeight() - visibleHeight() - scrollOrigin().y()); x 231 Source/platform/scroll/ScrollView.cpp return IntPoint(-scrollOrigin().x(), -scrollOrigin().y()); x 290 Source/platform/scroll/ScrollView.cpp updateScrollbars(IntSize(newScrollPosition.x(), newScrollPosition.y())); x 309 Source/platform/scroll/ScrollView.cpp if (currentScrollPosition.x() < minScrollPosition.x()) x 310 Source/platform/scroll/ScrollView.cpp stretch.setWidth(currentScrollPosition.x() - minScrollPosition.x()); x 311 Source/platform/scroll/ScrollView.cpp if (currentScrollPosition.x() > maxScrollPosition.x()) x 312 Source/platform/scroll/ScrollView.cpp stretch.setWidth(currentScrollPosition.x() - maxScrollPosition.x()); x 395 Source/platform/scroll/ScrollView.cpp ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x(), scrollOrigin().y() - m_horizontalScrollbar->height())); x 403 Source/platform/scroll/ScrollView.cpp if (scrollOrigin().x() && !newHasVerticalScrollbar && !scrollbarsAreOverlay) x 404 Source/platform/scroll/ScrollView.cpp ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x() - m_verticalScrollbar->width(), scrollOrigin().y())); x 545 Source/platform/scroll/ScrollView.cpp IntPoint panIconDirtySquareLocation = IntPoint(m_panScrollIconPoint.x() - (panIconDirtySquareSizeLength / 2), m_panScrollIconPoint.y() - (panIconDirtySquareSizeLength / 2)); x 876 Source/platform/scroll/ScrollView.cpp context->translate(x(), y()); x 897 Source/platform/scroll/ScrollView.cpp context->translate(x(), y()); x 929 Source/platform/scroll/ScrollView.cpp int physicalScrollX = scrollPosition().x() + scrollOrigin().x(); x 933 Source/platform/scroll/ScrollView.cpp verticalOverhangRect.setX(frameRect().x()); x 1001 Source/platform/scroll/ScrollView.cpp int horizontalScrollbarXMin = m_horizontalScrollbar->frameRect().x() + m_horizontalScrollbar->frameRect().width(); x 1003 Source/platform/scroll/ScrollView.cpp return viewPoint.y() > horizontalScrollbarYMin && viewPoint.y() < horizontalScrollbarYMax && viewPoint.x() > horizontalScrollbarXMin; x 1006 Source/platform/scroll/ScrollView.cpp int verticalScrollbarXMin = m_verticalScrollbar->frameRect().x(); x 1007 Source/platform/scroll/ScrollView.cpp int verticalScrollbarXMax = m_verticalScrollbar->frameRect().x() + m_verticalScrollbar->frameRect().width(); x 1010 Source/platform/scroll/ScrollView.cpp return viewPoint.x() > verticalScrollbarXMin && viewPoint.x() < verticalScrollbarXMax && viewPoint.y() > verticalScrollbarYMin; x 1101 Source/platform/scroll/ScrollView.cpp m_panScrollIconPoint = IntPoint(iconPosition.x() - panIconSizeLength / 2 , iconPosition.y() - panIconSizeLength / 2) ; x 152 Source/platform/scroll/ScrollView.h int scrollX() const { return scrollPosition().x(); } x 156 Source/platform/scroll/ScrollableArea.cpp scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset)); x 413 Source/platform/scroll/ScrollableArea.cpp return IntRect(scrollPosition().x(), x 193 Source/platform/scroll/ScrollableArea.h int scrollPosition(ScrollbarOrientation orientation) { return orientation == HorizontalScrollbar ? scrollPosition().x() : scrollPosition().y(); } x 194 Source/platform/scroll/ScrollableArea.h int minimumScrollPosition(ScrollbarOrientation orientation) { return orientation == HorizontalScrollbar ? minimumScrollPosition().x() : minimumScrollPosition().y(); } x 195 Source/platform/scroll/ScrollableArea.h int maximumScrollPosition(ScrollbarOrientation orientation) { return orientation == HorizontalScrollbar ? maximumScrollPosition().x() : maximumScrollPosition().y(); } x 293 Source/platform/scroll/Scrollbar.cpp float destinationPosition = (m_orientation == HorizontalScrollbar ? currentPosition.x() : currentPosition.y()) + delta; x 352 Source/platform/scroll/Scrollbar.cpp m_pressedPos = orientation() == HorizontalScrollbar ? convertFromContainingWindow(evt.position()).x() : convertFromContainingWindow(evt.position()).y(); x 398 Source/platform/scroll/Scrollbar.cpp convertFromContainingWindow(evt.position()).x() : x 405 Source/platform/scroll/Scrollbar.cpp m_pressedPos = orientation() == HorizontalScrollbar ? convertFromContainingWindow(evt.position()).x() : convertFromContainingWindow(evt.position()).y(); x 465 Source/platform/scroll/Scrollbar.cpp int pressedPos = orientation() == HorizontalScrollbar ? convertFromContainingWindow(evt.position()).x() : convertFromContainingWindow(evt.position()).y(); x 497 Source/platform/scroll/Scrollbar.cpp int overlap = rect.maxX() - resizerRect.x(); x 601 Source/platform/scroll/Scrollbar.cpp return m_scrollableArea->scrollPosition().x() - m_scrollableArea->minimumScrollPosition().x(); x 55 Source/platform/scroll/Scrollbar.h virtual int x() const OVERRIDE { return Widget::x(); } x 130 Source/platform/scroll/ScrollbarTheme.cpp testPosition.move(scrollbar->x(), scrollbar->y()); x 232 Source/platform/scroll/ScrollbarTheme.cpp mousePosition.move(scrollbar->x(), scrollbar->y()); x 281 Source/platform/scroll/ScrollbarTheme.cpp return (scrollbar->orientation() == HorizontalScrollbar) ? constrainedTrackRect.x() - scrollbar->x() : constrainedTrackRect.y() - scrollbar->y(); x 322 Source/platform/scroll/ScrollbarTheme.cpp thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y(), thumbLength(scrollbar), scrollbar->height()); x 323 Source/platform/scroll/ScrollbarTheme.cpp beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), thumbPos + thumbRect.width() / 2, trackRect.height()); x 324 Source/platform/scroll/ScrollbarTheme.cpp afterThumbRect = IntRect(trackRect.x() + beforeThumbRect.width(), trackRect.y(), trackRect.maxX() - beforeThumbRect.maxX(), trackRect.height()); x 326 Source/platform/scroll/ScrollbarTheme.cpp thumbRect = IntRect(trackRect.x(), trackRect.y() + thumbPos, scrollbar->width(), thumbLength(scrollbar)); x 327 Source/platform/scroll/ScrollbarTheme.cpp beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), trackRect.width(), thumbPos + thumbRect.height() / 2); x 328 Source/platform/scroll/ScrollbarTheme.cpp afterThumbRect = IntRect(trackRect.x(), trackRect.y() + beforeThumbRect.height(), trackRect.width(), trackRect.maxY() - beforeThumbRect.maxY()); x 43 Source/platform/scroll/ScrollbarThemeClient.h virtual int x() const = 0; x 83 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp extraParams.scrollbarTrack.trackX = alignRect.x(); x 51 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp return IntRect(scrollbar->x(), scrollbar->y(), size.width(), size.height()); x 61 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp int x, y; x 63 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp x = scrollbar->x() + scrollbar->width() - size.width(); x 66 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp x = scrollbar->x(); x 69 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp return IntRect(x, y, size.width(), size.height()); x 81 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness); x 85 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp return IntRect(scrollbar->x(), scrollbar->y() + bs.height(), thickness, scrollbar->height() - 2 * bs.height()); x 120 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp FloatRect tickRect(rect.x(), yPos, rect.width(), 3); x 124 Source/platform/scroll/ScrollbarThemeNonMacCommon.cpp FloatRect tickStroke(rect.x(), yPos + 1, rect.width(), 1); x 133 Source/platform/scroll/ScrollbarThemeOverlay.cpp thumbRect.setX(thumbRect.x() + m_scrollbarMargin); x 140 Source/platform/text/BidiTestHarness.h for (size_t x = 0; x < strings.size(); x++) { x 141 Source/platform/text/BidiTestHarness.h int i = atoi(strings[x].c_str()); x 151 Source/platform/text/BidiTestHarness.h for (size_t x = 0; x < strings.size(); x++) { x 152 Source/platform/text/BidiTestHarness.h const std::string& levelString = strings[x]; x 142 Source/platform/text/TextStream.cpp return ts << "at (" << r.x() << "," << r.y() << ") size " << r.width() << "x" << r.height(); x 147 Source/platform/text/TextStream.cpp return ts << "(" << p.x() << "," << p.y() << ")"; x 152 Source/platform/text/TextStream.cpp ts << "(" << TextStream::FormatNumberRespectingIntegers(p.x()); x 167 Source/platform/text/TextStream.cpp ts << "at (" << TextStream::FormatNumberRespectingIntegers(r.x()); x 183 Source/platform/transforms/AffineTransform.cpp AffineTransform& AffineTransform::rotateFromVector(double x, double y) x 185 Source/platform/transforms/AffineTransform.cpp return rotateRadians(atan2(y, x)); x 229 Source/platform/transforms/AffineTransform.cpp transform.translate(dest.x() - source.x(), dest.y() - source.y()); x 234 Source/platform/transforms/AffineTransform.cpp void AffineTransform::map(double x, double y, double& x2, double& y2) const x 236 Source/platform/transforms/AffineTransform.cpp x2 = (m_transform[0] * x + m_transform[2] * y + m_transform[4]); x 237 Source/platform/transforms/AffineTransform.cpp y2 = (m_transform[1] * x + m_transform[3] * y + m_transform[5]); x 243 Source/platform/transforms/AffineTransform.cpp map(point.x(), point.y(), x2, y2); x 252 Source/platform/transforms/AffineTransform.cpp map(point.x(), point.y(), x2, y2); x 293 Source/platform/transforms/AffineTransform.cpp result.setP4(mapPoint(FloatPoint(rect.x(), rect.maxY()))); x 54 Source/platform/transforms/AffineTransform.h void map(double x, double y, double& x2, double& y2) const; x 95 Source/platform/transforms/AffineTransform.h AffineTransform& rotateFromVector(double x, double y); x 156 Source/platform/transforms/AffineTransform.h static AffineTransform translation(double x, double y) x 158 Source/platform/transforms/AffineTransform.h return AffineTransform(1, 0, 0, 1, x, y); x 77 Source/platform/transforms/RotateTransformOperation.cpp double x = -decomp.quaternionX; x 80 Source/platform/transforms/RotateTransformOperation.cpp double length = sqrt(x * x + y * y + z * z); x 84 Source/platform/transforms/RotateTransformOperation.cpp x /= length; x 89 Source/platform/transforms/RotateTransformOperation.cpp x = 0; x 93 Source/platform/transforms/RotateTransformOperation.cpp return RotateTransformOperation::create(x, y, z, angle, Rotate3D); x 39 Source/platform/transforms/RotateTransformOperation.h static PassRefPtr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) x 41 Source/platform/transforms/RotateTransformOperation.h return adoptRef(new RotateTransformOperation(x, y, z, angle, type)); x 44 Source/platform/transforms/RotateTransformOperation.h double x() const { return m_x; } x 69 Source/platform/transforms/RotateTransformOperation.h RotateTransformOperation(double x, double y, double z, double angle, OperationType type) x 70 Source/platform/transforms/RotateTransformOperation.h : m_x(x) x 44 Source/platform/transforms/ScaleTransformOperation.h double x() const { return m_x; } x 434 Source/platform/transforms/TransformationMatrix.cpp double s, t, x, y, z, w; x 441 Source/platform/transforms/TransformationMatrix.cpp x = (row[2][1] - row[1][2]) * s; x 446 Source/platform/transforms/TransformationMatrix.cpp x = 0.25 * s; x 452 Source/platform/transforms/TransformationMatrix.cpp x = (row[0][1] + row[1][0]) / s; x 458 Source/platform/transforms/TransformationMatrix.cpp x = (row[0][2] + row[2][0]) / s; x 464 Source/platform/transforms/TransformationMatrix.cpp result.quaternionX = x; x 532 Source/platform/transforms/TransformationMatrix.cpp TransformationMatrix& TransformationMatrix::rotateFromVector(double x, double y) x 534 Source/platform/transforms/TransformationMatrix.cpp return rotate(rad2deg(atan2(y, x))); x 570 Source/platform/transforms/TransformationMatrix.cpp double x = p.x(); x 572 Source/platform/transforms/TransformationMatrix.cpp double z = -(m13() * x + m23() * y + m43()) / m33(); x 575 Source/platform/transforms/TransformationMatrix.cpp double outX = x * m11() + y * m21() + z * m31() + m41(); x 576 Source/platform/transforms/TransformationMatrix.cpp double outY = x * m12() + y * m22() + z * m32() + m42(); x 578 Source/platform/transforms/TransformationMatrix.cpp double w = x * m14() + y * m24() + z * m34() + m44(); x 631 Source/platform/transforms/TransformationMatrix.cpp float left = clampEdgeValue(floorf(mappedQuadBounds.x())); x 635 Source/platform/transforms/TransformationMatrix.cpp if (std::isinf(mappedQuadBounds.x()) && std::isinf(mappedQuadBounds.width())) x 652 Source/platform/transforms/TransformationMatrix.cpp return FloatPoint(p.x() + static_cast<float>(m_matrix[3][0]), p.y() + static_cast<float>(m_matrix[3][1])); x 660 Source/platform/transforms/TransformationMatrix.cpp return FloatPoint3D(p.x() + static_cast<float>(m_matrix[3][0]), x 689 Source/platform/transforms/TransformationMatrix.cpp result.setP1(internalMapPoint(FloatPoint(r.x(), r.y()))); x 692 Source/platform/transforms/TransformationMatrix.cpp result.setP4(internalMapPoint(FloatPoint(r.x(), maxY))); x 738 Source/platform/transforms/TransformationMatrix.cpp TransformationMatrix& TransformationMatrix::rotate3d(double x, double y, double z, double angle) x 741 Source/platform/transforms/TransformationMatrix.cpp double length = sqrt(x * x + y * y + z * z); x 746 Source/platform/transforms/TransformationMatrix.cpp x /= length; x 760 Source/platform/transforms/TransformationMatrix.cpp if (x == 1.0 && y == 0.0 && z == 0.0) { x 773 Source/platform/transforms/TransformationMatrix.cpp } else if (x == 0.0 && y == 1.0 && z == 0.0) { x 786 Source/platform/transforms/TransformationMatrix.cpp } else if (x == 0.0 && y == 0.0 && z == 1.0) { x 808 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[0][0] = cosTheta + x * x * oneMinusCosTheta; x 809 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[0][1] = y * x * oneMinusCosTheta + z * sinTheta; x 810 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[0][2] = z * x * oneMinusCosTheta - y * sinTheta; x 811 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[1][0] = x * y * oneMinusCosTheta - z * sinTheta; x 813 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[1][2] = z * y * oneMinusCosTheta + x * sinTheta; x 814 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[2][0] = x * z * oneMinusCosTheta + y * sinTheta; x 815 Source/platform/transforms/TransformationMatrix.cpp mat.m_matrix[2][1] = y * z * oneMinusCosTheta - x * sinTheta; x 972 Source/platform/transforms/TransformationMatrix.cpp to.x() - from.x(), x 1248 Source/platform/transforms/TransformationMatrix.cpp void TransformationMatrix::multVecMatrix(double x, double y, double& resultX, double& resultY) const x 1250 Source/platform/transforms/TransformationMatrix.cpp resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0]; x 1251 Source/platform/transforms/TransformationMatrix.cpp resultY = m_matrix[3][1] + x * m_matrix[0][1] + y * m_matrix[1][1]; x 1252 Source/platform/transforms/TransformationMatrix.cpp double w = m_matrix[3][3] + x * m_matrix[0][3] + y * m_matrix[1][3]; x 1259 Source/platform/transforms/TransformationMatrix.cpp void TransformationMatrix::multVecMatrix(double x, double y, double z, double& resultX, double& resultY, double& resultZ) const x 1261 Source/platform/transforms/TransformationMatrix.cpp resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0] + z * m_matrix[2][0]; x 1262 Source/platform/transforms/TransformationMatrix.cpp resultY = m_matrix[3][1] + x * m_matrix[0][1] + y * m_matrix[1][1] + z * m_matrix[2][1]; x 1263 Source/platform/transforms/TransformationMatrix.cpp resultZ = m_matrix[3][2] + x * m_matrix[0][2] + y * m_matrix[1][2] + z * m_matrix[2][2]; x 1264 Source/platform/transforms/TransformationMatrix.cpp double w = m_matrix[3][3] + x * m_matrix[0][3] + y * m_matrix[1][3] + z * m_matrix[2][3]; x 115 Source/platform/transforms/TransformationMatrix.h void map(double x, double y, double& x2, double& y2) const { multVecMatrix(x, y, x2, y2); } x 214 Source/platform/transforms/TransformationMatrix.h TransformationMatrix& rotateFromVector(double x, double y); x 219 Source/platform/transforms/TransformationMatrix.h TransformationMatrix& rotate3d(double x, double y, double z, double angle); x 333 Source/platform/transforms/TransformationMatrix.h void multVecMatrix(double x, double y, double& dstX, double& dstY) const; x 338 Source/platform/transforms/TransformationMatrix.h multVecMatrix(sourcePoint.x(), sourcePoint.y(), resultX, resultY); x 343 Source/platform/transforms/TransformationMatrix.h void multVecMatrix(double x, double y, double z, double& dstX, double& dstY, double& dstZ) const; x 349 Source/platform/transforms/TransformationMatrix.h multVecMatrix(sourcePoint.x(), sourcePoint.y(), sourcePoint.z(), resultX, resultY, resultZ); x 46 Source/platform/transforms/TranslateTransformOperation.h double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); } x 49 Source/platform/transforms/TranslateTransformOperation.h Length x() const { return m_x; } x 68 Source/platform/transforms/TranslateTransformOperation.h transform.translate3d(x(borderBoxSize), y(borderBoxSize), z()); x 518 Source/web/ChromeClientImpl.cpp screenRect.move(windowRect.x, windowRect.y); x 227 Source/web/LinkHighlight.cpp absoluteQuad.move(-positionAdjust.x(), -positionAdjust.y()); x 264 Source/web/LinkHighlight.cpp IntRect clipRect(IntPoint(webClipRect.x, webClipRect.y), IntSize(webClipRect.width, webClipRect.height)); x 340 Source/web/LinkHighlight.cpp m_currentGraphicsLayer->addRepaintRect(FloatRect(layer()->position().x, layer()->position().y, layer()->bounds().width, layer()->bounds().height)); x 71 Source/web/PopupContainer.cpp relativePos.setX(pos.x()); x 83 Source/web/PopupContainer.cpp relativePos.setX(pos.x()); x 110 Source/web/PopupContainer.cpp if (windowRect.x() >= screen.x() && windowRect.maxX() <= screen.maxX() && (widgetRectInScreen.x() < screen.x() || widgetRectInScreen.maxX() > screen.maxX())) { x 114 Source/web/PopupContainer.cpp inverseWidgetRectInScreen.setX(inverseWidgetRectInScreen.x() + (isRTL ? -rtlOffset : rtlOffset)); x 117 Source/web/PopupContainer.cpp unsigned originalCutoff = std::max(enclosingScreen.x() - widgetRectInScreen.x(), 0) + std::max(widgetRectInScreen.maxX() - enclosingScreen.maxX(), 0); x 118 Source/web/PopupContainer.cpp unsigned inverseCutoff = std::max(enclosingScreen.x() - inverseWidgetRectInScreen.x(), 0) + std::max(inverseWidgetRectInScreen.maxX() - enclosingScreen.maxX(), 0); x 125 Source/web/PopupContainer.cpp if (widgetRectInScreen.x() < screen.x()) { x 126 Source/web/PopupContainer.cpp widgetRectInScreen.setWidth(widgetRectInScreen.maxX() - screen.x()); x 127 Source/web/PopupContainer.cpp widgetRectInScreen.setX(screen.x()); x 130 Source/web/PopupContainer.cpp widgetRectInScreen.setWidth(screen.maxX() - widgetRectInScreen.x()); x 179 Source/web/PopupContainer.cpp int rtlOffset = m_controlPosition.p2().x() - m_controlPosition.p1().x() - (m_listBox->width() + borderSize * 2); x 197 Source/web/PopupContainer.cpp int popupX = round((popupInitialCoordinate.x() + rightOffset) * pageScaleFactor); x 219 Source/web/PopupContainer.cpp IntSize transformOffset(m_controlPosition.p4().x() - m_controlPosition.p1().x(), m_controlPosition.p4().y() - m_controlPosition.p1().y() - m_controlSize.height()); x 338 Source/web/PopupContainer.cpp int tx = x(); x 358 Source/web/PopupContainer.cpp int tx = x(); x 395 Source/web/PopupContainer.cpp m_controlPosition.setP1(v->contentsToWindow(IntPoint(controlPosition.p1().x(), controlPosition.p1().y()))); x 396 Source/web/PopupContainer.cpp m_controlPosition.setP2(v->contentsToWindow(IntPoint(controlPosition.p2().x(), controlPosition.p2().y()))); x 397 Source/web/PopupContainer.cpp m_controlPosition.setP3(v->contentsToWindow(IntPoint(controlPosition.p3().x(), controlPosition.p3().y()))); x 398 Source/web/PopupContainer.cpp m_controlPosition.setP4(v->contentsToWindow(IntPoint(controlPosition.p4().x(), controlPosition.p4().y()))); x 352 Source/web/PopupListBox.cpp int tx = x() - scrollX() + ((shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) ? verticalScrollbar()->width() : 0); x 424 Source/web/PopupListBox.cpp rowRect.x() + separatorPadding, x 105 Source/web/ScrollbarGroup.cpp if (m_horizontalScrollbar && m_horizontalScrollbar->scrollOffset() != offset.x()) x 106 Source/web/ScrollbarGroup.cpp m_horizontalScrollbar->setScrollOffset(offset.x()); x 171 Source/web/ScrollbarGroup.cpp int x = m_horizontalScrollbar ? m_horizontalScrollbar->scrollOffset() : 0; x 173 Source/web/ScrollbarGroup.cpp return IntPoint(x, y); x 212 Source/web/ScrollbarGroup.cpp size.setWidth(m_verticalScrollbar->scrollbar()->x()); x 82 Source/web/WebDOMMouseEvent.cpp return constUnwrap<MouseEvent>()->x(); x 241 Source/web/WebFrameImpl.cpp || (contentRenderer->x() + contentRenderer->width() <= 0) || (contentRenderer->y() + contentRenderer->height() <= 0) x 324 Source/web/WebFrameImpl.cpp context.translate(static_cast<float>(-pageRect.x()), static_cast<float>(-pageRect.y())); x 84 Source/web/WebInputEventConversion.cpp m_position = widget->convertFromContainingWindow(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale)); x 129 Source/web/WebInputEventConversion.cpp m_position = widget->convertFromContainingWindow(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale)); x 246 Source/web/WebInputEventConversion.cpp m_position = widget->convertFromContainingWindow(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale)); x 410 Source/web/WebInputEventConversion.cpp m_pos = widget->convertFromContainingWindow(IntPoint((point.position.x - offset.width()) / scale, (point.position.y - offset.height()) / scale)); x 411 Source/web/WebInputEventConversion.cpp m_screenPos = IntPoint(point.screenPosition.x, point.screenPosition.y); x 463 Source/web/WebInputEventConversion.cpp IntPoint windowPoint = IntPoint(event.absoluteLocation().x(), event.absoluteLocation().y()); x 468 Source/web/WebInputEventConversion.cpp webEvent.windowX = windowPoint.x(); x 471 Source/web/WebInputEventConversion.cpp webEvent.x = localPoint.x(); x 553 Source/web/WebInputEventConversion.cpp x = localPoint.x(); x 592 Source/web/WebInputEventConversion.cpp x = position.x(); x 594 Source/web/WebInputEventConversion.cpp globalX = event.globalPosition().x(); x 596 Source/web/WebInputEventConversion.cpp movementX = event.movementDelta().x() * scale; x 770 Source/web/WebInputEventConversion.cpp x = localPoint.x(); x 81 Source/web/WebInputEventFactoryAndroid.cpp result.x = windowX; x 124 Source/web/WebInputEventFactoryAndroid.cpp result.x = windowX; x 161 Source/web/WebInputEventFactoryAndroid.cpp int x, x 166 Source/web/WebInputEventFactoryAndroid.cpp return gestureEvent(type, timeStampSeconds, x, y, modifiers); x 171 Source/web/WebInputEventFactoryAndroid.cpp int x, x 178 Source/web/WebInputEventFactoryAndroid.cpp result.x = x; x 56 Source/web/WebInputEventFactoryGtk.cpp bool shouldForgetPreviousClick(GdkWindow* window, gint time, gint x, gint y) x 69 Source/web/WebInputEventFactoryGtk.cpp || abs(x - gLastClickX) > doubleClickDistance x 454 Source/web/WebInputEventFactoryGtk.cpp result.x = static_cast<int>(event->x); x 456 Source/web/WebInputEventFactoryGtk.cpp result.windowX = result.x; x 484 Source/web/WebInputEventFactoryGtk.cpp bool forgetPreviousClick = shouldForgetPreviousClick(event->window, event->time, event->x, event->y); x 492 Source/web/WebInputEventFactoryGtk.cpp gLastClickX = event->x; x 509 Source/web/WebInputEventFactoryGtk.cpp result.x = static_cast<int>(event->x); x 511 Source/web/WebInputEventFactoryGtk.cpp result.windowX = result.x; x 532 Source/web/WebInputEventFactoryGtk.cpp if (shouldForgetPreviousClick(event->window, event->time, event->x, event->y)) x 544 Source/web/WebInputEventFactoryGtk.cpp result.x = static_cast<int>(event->x); x 546 Source/web/WebInputEventFactoryGtk.cpp result.windowX = result.x; x 571 Source/web/WebInputEventFactoryGtk.cpp if (shouldForgetPreviousClick(event->window, event->time, event->x, event->y)) x 588 Source/web/WebInputEventFactoryGtk.cpp result.x = static_cast<int>(event->x); x 590 Source/web/WebInputEventFactoryGtk.cpp result.windowX = result.x; x 206 Source/web/WebInputEventFactoryWin.cpp return MAKELPARAM(pos.x, pos.y); x 287 Source/web/WebInputEventFactoryWin.cpp result.x = static_cast<short>(LOWORD(lparam)); x 289 Source/web/WebInputEventFactoryWin.cpp result.windowX = result.x; x 292 Source/web/WebInputEventFactoryWin.cpp POINT globalPoint = { result.x, result.y }; x 295 Source/web/WebInputEventFactoryWin.cpp result.globalX = globalPoint.x; x 308 Source/web/WebInputEventFactoryWin.cpp (abs(lastClickPositionX - result.x) > (GetSystemMetrics(SM_CXDOUBLECLK) / 2)) x 317 Source/web/WebInputEventFactoryWin.cpp lastClickPositionX = result.x; x 390 Source/web/WebInputEventFactoryWin.cpp result.globalX = cursorPosition.x; x 451 Source/web/WebInputEventFactoryWin.cpp result.x = clientPoint.x; x 453 Source/web/WebInputEventFactoryWin.cpp result.windowX = result.x; x 489 Source/web/WebMediaPlayerClientImpl.cpp dest.set(rect.x(), rect.y(), rect.x() + rect.width(), rect.y() + rect.height()); x 77 Source/web/WebPagePopupImpl.cpp return FloatRect(m_popup->m_windowRectInScreen.x, m_popup->m_windowRectInScreen.y, m_popup->m_windowRectInScreen.width, m_popup->m_windowRectInScreen.height); x 339 Source/web/WebPagePopupImpl.cpp m_windowRectInScreen = WebRect(m_windowRectInScreen.x, m_windowRectInScreen.y, newSize.width, newSize.height); x 131 Source/web/WebPluginContainerImpl.cpp gc->translate(static_cast<float>(-origin.x()), static_cast<float>(-origin.y())); x 504 Source/web/WebPluginContainerImpl.cpp IntRect documentRect(x() + rect.x, y() + rect.y, rect.width, rect.height); x 707 Source/web/WebPluginContainerImpl.cpp m_scrollbarGroup->setLastMousePosition(IntPoint(event->x(), event->y())); x 750 Source/web/WebPluginContainerImpl.cpp WebPoint dragLocation(event->absoluteLocation().x() - location().x(), event->absoluteLocation().y() - location().y()); x 893 Source/web/WebPluginContainerImpl.cpp clipRect.move(-windowRect.x(), -windowRect.y()); x 898 Source/web/WebPluginContainerImpl.cpp cutOutRects[i].move(-frameRect.x(), -frameRect.y()); x 90 Source/web/WebPluginScrollbarImpl.cpp webrect.x += m_scrollbar->x(); x 106 Source/web/WebPluginScrollbarImpl.cpp IntPoint offset(parentPoint.x() - m_scrollbar->x(), parentPoint.y() - m_scrollbar->y()); x 287 Source/web/WebPluginScrollbarImpl.cpp if (!m_scrollbar->frameRect().contains(mousedown.x, mousedown.y)) x 290 Source/web/WebPluginScrollbarImpl.cpp mousedown.x -= m_scrollbar->x(); x 309 Source/web/WebPluginScrollbarImpl.cpp if (m_scrollbar->frameRect().contains(mousemove.x, mousemove.y) x 311 Source/web/WebPluginScrollbarImpl.cpp mousemove.x -= m_scrollbar->x(); x 110 Source/web/WebPopupMenuImpl.cpp if (event.x != m_lastMousePosition.x || event.y != m_lastMousePosition.y) { x 111 Source/web/WebPopupMenuImpl.cpp m_lastMousePosition = WebPoint(event.x, event.y); x 48 Source/web/WebScrollbarThemePainter.cpp SkRect clip = SkRect::MakeXYWH(rect.x, rect.y, rect.width, rect.height); x 466 Source/web/WebViewImpl.cpp m_lastMouseDownPoint = WebPoint(event.x, event.y); x 469 Source/web/WebViewImpl.cpp IntPoint point(event.x, event.y); x 573 Source/web/WebViewImpl.cpp syntheticWheel.x = m_positionOnFlingStart.x; x 575 Source/web/WebViewImpl.cpp syntheticWheel.globalX = m_globalPositionOnFlingStart.x; x 587 Source/web/WebViewImpl.cpp syntheticGestureEvent.x = m_positionOnFlingStart.x; x 589 Source/web/WebViewImpl.cpp syntheticGestureEvent.globalX = m_globalPositionOnFlingStart.x; x 616 Source/web/WebViewImpl.cpp m_positionOnFlingStart = WebPoint(event.x / pageScaleFactor(), event.y / pageScaleFactor()); x 677 Source/web/WebViewImpl.cpp scaledEvent.x = event.x / pageScaleFactor(); x 681 Source/web/WebViewImpl.cpp IntRect boundingBox(scaledEvent.x - scaledEvent.data.tap.width / 2, scaledEvent.y - scaledEvent.data.tap.height / 2, scaledEvent.data.tap.width, scaledEvent.data.tap.height); x 1001 Source/web/WebViewImpl.cpp IntPoint point = mainFrameImpl()->frameView()->windowToContents(IntPoint(rect.x, rect.y)); x 1033 Source/web/WebViewImpl.cpp const int absoluteSourceX = source.x + scrollOffset.width(); x 1046 Source/web/WebViewImpl.cpp const int newX = source.x - leftMargin; x 1069 Source/web/WebViewImpl.cpp scroll.x = scroll.y = 0; x 1115 Source/web/WebViewImpl.cpp rect.x -= 0.5 * (screenWidth - rect.width); x 1117 Source/web/WebViewImpl.cpp rect.x = max<float>(rect.x, hitPoint.x + padding - screenWidth); x 1118 Source/web/WebViewImpl.cpp scroll.x = rect.x; x 1214 Source/web/WebViewImpl.cpp WebRect rect(point.x(), point.y(), touchPointPadding, touchPointPadding); x 1260 Source/web/WebViewImpl.cpp computeScaleAndScrollForBlockRect(WebPoint(rect.x, rect.y), blockBounds, nonUserInitiatedPointPadding, minimumPageScaleFactor(), scale, scroll); x 1273 Source/web/WebViewImpl.cpp computeScaleAndScrollForBlockRect(WebPoint(rect.x, rect.y), rect, nonUserInitiatedPointPadding, minimumPageScaleFactor(), scale, scroll); x 1718 Source/web/WebViewImpl.cpp canvas->writePixels(target, rect.x(), rect.y()); x 2493 Source/web/WebViewImpl.cpp frame->view()->scrollElementToRect(element, IntRect(rect.x, rect.y, rect.width, rect.height)); x 2538 Source/web/WebViewImpl.cpp newScroll.setX(textboxRectInDocumentCoordinates.x() - min<int>(idealLeftPadding, maxLeftPaddingKeepingBoxOnscreen)); x 2542 Source/web/WebViewImpl.cpp newScroll.setX(max<int>(textboxRectInDocumentCoordinates.x(), caretInDocumentCoordinates.x() + caretInDocumentCoordinates.width() + caretPadding - viewWidth)); x 3227 Source/web/WebViewImpl.cpp if (point.x == -1 || point.y == -1) { x 85 Source/web/painting/PaintAggregator.cpp int rx = a.x(); x 92 Source/web/painting/PaintAggregator.cpp if (b.x() <= a.x()) x 95 Source/web/painting/PaintAggregator.cpp rr = b.x(); x 96 Source/web/painting/PaintAggregator.cpp } else if (b.x() <= a.x() && b.maxX() >= a.maxX()) { x 110 Source/web/painting/PaintAggregator.cpp return (a.y() == b.y() && a.height() == b.height() && (a.x() == b.maxX() || a.maxX() == b.x())) x 111 Source/web/painting/PaintAggregator.cpp || (a.x() == b.x() && a.width() == b.width() && (a.y() == b.maxY() || a.maxY() == b.y())); x 125 Source/web/painting/PaintAggregator.cpp ASSERT(!(scrollDelta.x() && scrollDelta.y())); x 131 Source/web/painting/PaintAggregator.cpp if (scrollDelta.x()) { x 132 Source/web/painting/PaintAggregator.cpp int dx = scrollDelta.x(); x 136 Source/web/painting/PaintAggregator.cpp damagedRect.setX(scrollRect.x()); x 144 Source/web/painting/PaintAggregator.cpp damagedRect.setX(scrollRect.x()); x 258 Source/web/painting/PaintAggregator.cpp if ((dx && m_update.scrollDelta.y()) || (dy && m_update.scrollDelta.x())) { x 74 Source/web/tests/LinkHighlightTest.cpp touchEvent.x = 20; x 178 Source/web/tests/LinkHighlightTest.cpp touchEvent.x = 20; x 214 Source/web/tests/LinkHighlightTest.cpp touchEvent.x = 50; x 221 Source/web/tests/LinkHighlightTest.cpp IntRect boundingBox(touchEvent.x - touchEvent.data.tap.width / 2, touchEvent.y - touchEvent.data.tap.height / 2, touchEvent.data.tap.width, touchEvent.data.tap.height); x 117 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta.x(), delta.y(), rect); x 128 Source/web/tests/PaintAggregatorTest.cpp EXPECT_EQ(delta.x(), update.scrollDelta.x()); x 143 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta1.x(), delta1.y(), rect); x 144 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta2.x(), delta2.y(), rect); x 155 Source/web/tests/PaintAggregatorTest.cpp IntPoint expectedDelta(delta1.x() + delta2.x(), x 157 Source/web/tests/PaintAggregatorTest.cpp EXPECT_EQ(expectedDelta.x(), update.scrollDelta.x()); x 175 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta1.x(), delta1.y(), rect); x 176 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta2.x(), delta2.y(), rect); x 190 Source/web/tests/PaintAggregatorTest.cpp greg.scrollRect(delta.x(), delta.y(), rect); x 462 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp ASSERT_EQ(expectedScrollPosition, webScrollLayer->scrollPosition().x); x 235 Source/web/tests/TouchActionTest.cpp contextStream << "=" << clientPoint.x() << "," << clientPoint.y() << ")."; x 242 Source/web/tests/TouchActionTest.cpp << " Test point not contained in visible area: " << visibleRect.x() << "," << visibleRect.y() x 302 Source/web/tests/TouchActionTest.cpp webTouchEvent.touches[0].screenPosition.x = clientPoint.x(); x 304 Source/web/tests/TouchActionTest.cpp webTouchEvent.touches[0].position.x = clientPoint.x(); x 112 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(a.x(), b.x()); \ x 2220 Source/web/tests/WebFrameTest.cpp webView->setPageScaleFactor(scale, WebPoint(scroll.x, scroll.y)); x 2242 Source/web/tests/WebFrameTest.cpp WebRect doubleTapPointWide(wideDiv.x + 50, wideDiv.y + 50, touchPointPadding, touchPointPadding); x 2243 Source/web/tests/WebFrameTest.cpp WebRect doubleTapPointTall(tallDiv.x + 50, tallDiv.y + 50, touchPointPadding, touchPointPadding); x 2253 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointWide.x, doubleTapPointWide.y), wideBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); x 2257 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(wideDiv.x, scroll.x, 20); x 2264 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointWide.x, doubleTapPointWide.y), wideBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); x 2271 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointTall.x, doubleTapPointTall.y), tallBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); x 2274 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(tallDiv.x, scroll.x, 20); x 2325 Source/web/tests/WebFrameTest.cpp WebPoint point(div.x + 50, div.y + 50); x 2354 Source/web/tests/WebFrameTest.cpp WebPoint point(div.x + 50, div.y + 3000); x 2358 Source/web/tests/WebFrameTest.cpp WebRect blockBounds = webViewHelper.webViewImpl()->computeBlockBounds(WebRect(point.x, point.y, 0, 0), true); x 2384 Source/web/tests/WebFrameTest.cpp WebPoint topPoint(topDiv.x + 50, topDiv.y + 50); x 2385 Source/web/tests/WebFrameTest.cpp WebPoint bottomPoint(bottomDiv.x + 50, bottomDiv.y + 50); x 2429 Source/web/tests/WebFrameTest.cpp WebPoint doubleTapPoint(div.x + 50, div.y + 50); x 2492 Source/web/tests/WebFrameTest.cpp WebPoint doubleTapPoint(div.x + 50, div.y + 50); x 2624 Source/web/tests/WebFrameTest.cpp int hScroll = editBoxWithText.x - leftBoxRatio * viewportWidth / scale; x 2625 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); x 2639 Source/web/tests/WebFrameTest.cpp hScroll = caret.x + caret.width + caretPadding - viewportWidth / scale; x 2640 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); x 2650 Source/web/tests/WebFrameTest.cpp hScroll = editBoxWithNoText.x; x 2651 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); x 3262 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[11].x > webMatchRects[12].x); x 3263 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[11].x > webMatchRects[13].x); x 3264 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[11].x > webMatchRects[14].x); x 3267 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[12].x < webMatchRects[11].x); x 3268 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[12].x < webMatchRects[13].x); x 3269 Source/web/tests/WebFrameTest.cpp EXPECT_TRUE(webMatchRects[12].x < webMatchRects[14].x); x 3498 Source/web/tests/WebFrameTest.cpp return WebPoint(rect.x, rect.y); x 3507 Source/web/tests/WebFrameTest.cpp return WebPoint(rect.x + rect.width - 1, rect.y + rect.height - 1); x 3735 Source/web/tests/WebFrameTest.cpp static int computeOffset(WebCore::RenderObject* renderer, int x, int y) x 3737 Source/web/tests/WebFrameTest.cpp return WebCore::VisiblePosition(renderer->positionForPoint(WebCore::LayoutPoint(x, y))).deepEquivalent().computeOffsetInContainerNode(); x 3851 Source/web/tests/WebFrameTest.cpp static WebGestureEvent fatTap(int x, int y) x 3855 Source/web/tests/WebFrameTest.cpp event.x = x; x 117 Source/web/tests/WebInputEventConversionTest.cpp webMouseEvent.x = 10; x 127 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(5, platformMouseBuilder.position().x()); x 129 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, platformMouseBuilder.globalPosition().x()); x 131 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(5, platformMouseBuilder.movementDelta().x()); x 138 Source/web/tests/WebInputEventConversionTest.cpp webGestureEvent.x = 10; x 146 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(5, platformGestureBuilder.position().x()); x 148 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, platformGestureBuilder.globalPosition().x()); x 225 Source/web/tests/WebInputEventConversionTest.cpp webTouchEvent.touches[0].screenPosition.x = 10.6f; x 227 Source/web/tests/WebInputEventConversionTest.cpp webTouchEvent.touches[0].position.x = 10.6f; x 232 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_FLOAT_EQ(10.6f, webTouchEvent.touches[0].screenPosition.x); x 234 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_FLOAT_EQ(10.6f, webTouchEvent.touches[0].position.x); x 240 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, platformTouchBuilder.touchPoints()[0].screenPos().x()); x 242 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(5, platformTouchBuilder.touchPoints()[0].pos().x()); x 255 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, webMouseBuilder.x); x 275 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, webGestureBuilder.x); x 291 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, webTouchBuilder.touches[0].screenPosition.x); x 293 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, webTouchBuilder.touches[0].position.x); x 323 Source/web/tests/WebInputEventConversionTest.cpp webMouseEvent.x = 100; x 333 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(30, platformMouseBuilder.position().x()); x 335 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(100, platformMouseBuilder.globalPosition().x()); x 337 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(20, platformMouseBuilder.movementDelta().x()); x 344 Source/web/tests/WebInputEventConversionTest.cpp webGestureEvent.x = 100; x 352 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(30, platformGestureBuilder.position().x()); x 354 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(100, platformGestureBuilder.globalPosition().x()); x 431 Source/web/tests/WebInputEventConversionTest.cpp webTouchEvent.touches[0].screenPosition.x = 100; x 433 Source/web/tests/WebInputEventConversionTest.cpp webTouchEvent.touches[0].position.x = 100; x 439 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(100, platformTouchBuilder.touchPoints()[0].screenPos().x()); x 441 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(30, platformTouchBuilder.touchPoints()[0].pos().x()); x 469 Source/web/tests/WebInputEventConversionTest.cpp webGestureEvent.x = 10; x 478 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, platformGestureBuilder.position().x()); x 480 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(10, platformGestureBuilder.globalPosition().x()); x 487 Source/web/tests/WebInputEventConversionTest.cpp EXPECT_EQ(webGestureEvent.x, recreatedWebGestureEvent.x); x 54 Source/web/tests/WebInputEventFactoryTestGtk.cpp firstClick.x = firstClick.y = firstClick.x_root = firstClick.y_root = 100; x 88 Source/web/tests/WebInputEventFactoryTestGtk.cpp secondClick.x = firstClick.x + 100; x 100 Source/web/tests/WebInputEventFactoryTestGtk.cpp secondClick.x = firstClick.y + 100; x 123 Source/web/tests/WebInputEventFactoryTestGtk.cpp mouseDown.x = mouseDown.y = mouseDown.x_root = mouseDown.y_root = 100; x 158 Source/web/tests/WebInputEventFactoryTestGtk.cpp mouseMove.x = mouseMove.y = mouseMove.x_root = mouseMove.y_root = mouseDown.x + 100; x 172 Source/web/tests/WebInputEventFactoryTestGtk.cpp mouseMove.x = mouseMove.y = mouseMove.x_root = mouseMove.y_root = mouseDown.x; x 116 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(0, point1.x); x 119 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(90, point2.x); x 125 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(10, point3.x); x 128 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(10, point4.x); x 146 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(10, point1.x); x 149 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(100, point2.x); x 155 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(0, point3.x); x 158 Source/web/tests/WebPluginContainerTest.cpp ASSERT_EQ(-10, point4.x); x 128 Source/web/tests/WebViewTest.cpp m_tapX = event.x; x 131 Source/web/tests/WebViewTest.cpp m_longpressX = event.x; x 769 Source/web/tests/WebViewTest.cpp frame->selectRange(WebPoint(focus.x, focus.y), WebPoint(anchor.x, anchor.y)); x 789 Source/web/tests/WebViewTest.cpp EXPECT_EQ(116, webViewImpl->page()->mainFrame()->loader().currentItem()->scrollPoint().x()); x 800 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->page()->mainFrame()->loader().currentItem()->scrollPoint().x()); x 950 Source/web/tests/WebViewTest.cpp event.x = center.x(); x 1016 Source/web/tests/WebViewTest.cpp event.x = 3; x 1024 Source/web/tests/WebViewTest.cpp event.x = 25; x 1122 Source/web/tests/WebViewTest.cpp event.x = 20; x 50 Source/web/x11/WebScreenInfoFactory.cpp int x, y; x 53 Source/web/x11/WebScreenInfoFactory.cpp display, root, &rootRet, &x, &y, &width, &height, &border, &depth); x 62 Source/web/x11/WebScreenInfoFactory.cpp results.rect = WebRect(x, y, width, height); x 76 Source/wtf/ArrayBuffer.h static inline int clampValue(int x, int left, int right); x 83 Source/wtf/ArrayBuffer.h int ArrayBuffer::clampValue(int x, int left, int right) x 86 Source/wtf/ArrayBuffer.h if (x < left) x 87 Source/wtf/ArrayBuffer.h x = left; x 88 Source/wtf/ArrayBuffer.h if (right < x) x 89 Source/wtf/ArrayBuffer.h x = right; x 90 Source/wtf/ArrayBuffer.h return x; x 53 Source/wtf/BitwiseOperations.h ALWAYS_INLINE uint32_t countLeadingZeros32(uint32_t x) x 56 Source/wtf/BitwiseOperations.h return LIKELY(_BitScanReverse(&index, x)) ? (31 - index) : 32; x 62 Source/wtf/BitwiseOperations.h ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x) x 65 Source/wtf/BitwiseOperations.h return LIKELY(_BitScanReverse64(&index, x)) ? (63 - index) : 64; x 77 Source/wtf/BitwiseOperations.h ALWAYS_INLINE uint32_t countLeadingZeros32(uint32_t x) x 79 Source/wtf/BitwiseOperations.h return LIKELY(x) ? __builtin_clz(x) : 32; x 82 Source/wtf/BitwiseOperations.h ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x) x 84 Source/wtf/BitwiseOperations.h return LIKELY(x) ? __builtin_clzll(x) : 64; x 91 Source/wtf/BitwiseOperations.h ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return countLeadingZeros64(x); } x 95 Source/wtf/BitwiseOperations.h ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return countLeadingZeros32(x); } x 44 Source/wtf/ByteOrder.h inline uint16_t ntohs(uint16_t x) { return x; } x 45 Source/wtf/ByteOrder.h inline uint16_t htons(uint16_t x) { return x; } x 46 Source/wtf/ByteOrder.h inline uint32_t ntohl(uint32_t x) { return x; } x 47 Source/wtf/ByteOrder.h inline uint32_t htonl(uint32_t x) { return x; } x 49 Source/wtf/ByteOrder.h inline uint16_t ntohs(uint16_t x) { return x; } x 50 Source/wtf/ByteOrder.h inline uint16_t htons(uint16_t x) { return x; } x 51 Source/wtf/ByteOrder.h inline uint32_t ntohl(uint32_t x) { return WTF::wswap32(x); } x 52 Source/wtf/ByteOrder.h inline uint32_t htonl(uint32_t x) { return WTF::wswap32(x); } x 54 Source/wtf/ByteOrder.h inline uint16_t ntohs(uint16_t x) { return WTF::bswap16(x); } x 55 Source/wtf/ByteOrder.h inline uint16_t htons(uint16_t x) { return WTF::bswap16(x); } x 56 Source/wtf/ByteOrder.h inline uint32_t ntohl(uint32_t x) { return WTF::bswap32(x); } x 57 Source/wtf/ByteOrder.h inline uint32_t htonl(uint32_t x) { return WTF::bswap32(x); } x 45 Source/wtf/ByteSwap.h inline uint32_t wswap32(uint32_t x) { return ((x & 0xffff0000) >> 16) | ((x & 0x0000ffff) << 16); } x 49 Source/wtf/ByteSwap.h ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return _byteswap_uint64(x); } x 50 Source/wtf/ByteSwap.h ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return _byteswap_ulong(x); } x 51 Source/wtf/ByteSwap.h ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return _byteswap_ushort(x); } x 55 Source/wtf/ByteSwap.h ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return __builtin_bswap64(x); } x 56 Source/wtf/ByteSwap.h ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return __builtin_bswap32(x); } x 59 Source/wtf/ByteSwap.h ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return __builtin_bswap16(x); } x 61 Source/wtf/ByteSwap.h inline uint16_t bswap16(uint16_t x) { return ((x & 0xff00) >> 8) | ((x & 0x00ff) << 8); } x 68 Source/wtf/ByteSwap.h ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap64(x); } x 72 Source/wtf/ByteSwap.h ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap32(x); } x 646 Source/wtf/CheckedArithmetic.h U x = 0; x 648 Source/wtf/CheckedArithmetic.h bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; x 650 Source/wtf/CheckedArithmetic.h overflowed |= !safeAdd(x, y, result); x 658 Source/wtf/CheckedArithmetic.h U x = 0; x 660 Source/wtf/CheckedArithmetic.h bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; x 662 Source/wtf/CheckedArithmetic.h overflowed |= !safeSub(x, y, result); x 670 Source/wtf/CheckedArithmetic.h U x = 0; x 672 Source/wtf/CheckedArithmetic.h bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; x 674 Source/wtf/CheckedArithmetic.h overflowed |= !safeMultiply(x, y, result); x 140 Source/wtf/CheckedArithmeticTest.cpp #define CoerceLiteralToUnsigned(x) x##U x 141 Source/wtf/CheckedArithmeticTest.cpp #define CoerceLiteralNop(x) x x 142 Source/wtf/CheckedArithmeticTest.cpp #define AllowMixedSignednessTest(x) x x 143 Source/wtf/CheckedArithmeticTest.cpp #define IgnoreMixedSignednessTest(x) x 159 Source/wtf/Compiler.h #define UNLIKELY(x) __builtin_expect((x), 0) x 161 Source/wtf/Compiler.h #define UNLIKELY(x) (x) x 170 Source/wtf/Compiler.h #define LIKELY(x) __builtin_expect((x), 1) x 172 Source/wtf/Compiler.h #define LIKELY(x) (x) x 68 Source/wtf/FunctionalTest.cpp static int multiply(int x, int y) x 70 Source/wtf/FunctionalTest.cpp return x * y; x 73 Source/wtf/FunctionalTest.cpp static int subtract(int x, int y) x 75 Source/wtf/FunctionalTest.cpp return x - y; x 64 Source/wtf/HashTable.h template<bool x, typename T, typename U, typename V, typename W, typename X, typename Y, typename Z> x 438 Source/wtf/HashTable.h template<bool x, typename T, typename U, typename V, typename W, typename X, typename Y, typename Z> friend struct WeakProcessingHashTableHelper; x 89 Source/wtf/HashTraits.h static IteratorReferenceType getToReferenceConversion(IteratorGetType x) { return *x; } x 90 Source/wtf/HashTraits.h static IteratorConstReferenceType getToReferenceConstConversion(IteratorConstGetType x) { return *x; } x 171 Source/wtf/HashTraits.h static IteratorReferenceType getToReferenceConversion(IteratorGetType x) { return *x; } x 172 Source/wtf/HashTraits.h static IteratorConstReferenceType getToReferenceConstConversion(IteratorConstGetType x) { return *x; } x 200 Source/wtf/HashTraits.h static IteratorReferenceType getToReferenceConversion(IteratorGetType x) { return *x; } x 201 Source/wtf/HashTraits.h static IteratorConstReferenceType getToReferenceConstConversion(IteratorConstGetType x) { return x->get(); } x 58 Source/wtf/MathExtras.h inline double wtf_ceil(double x) { return copysign(ceil(x), x); } x 60 Source/wtf/MathExtras.h #define ceil(x) wtf_ceil(x) x 69 Source/wtf/MathExtras.h inline bool isfinite(double x) { return finite(x); } x 72 Source/wtf/MathExtras.h inline bool signbit(double x) { struct ieee_double *p = (struct ieee_double *)&x; return p->dbl_sign; } x 130 Source/wtf/MathExtras.h inline bool isfinite(double x) { return _finite(x); } x 135 Source/wtf/MathExtras.h inline double nextafter(double x, double y) { return _nextafter(x, y); } x 136 Source/wtf/MathExtras.h inline float nextafterf(float x, float y) { return x > y ? x - FLT_EPSILON : x + FLT_EPSILON; } x 138 Source/wtf/MathExtras.h inline double copysign(double x, double y) { return _copysign(x, y); } x 143 Source/wtf/MathExtras.h inline double wtf_atan2(double x, double y) x 151 Source/wtf/MathExtras.h if (x == posInf && y == posInf) x 153 Source/wtf/MathExtras.h else if (x == posInf && y == negInf) x 155 Source/wtf/MathExtras.h else if (x == negInf && y == posInf) x 157 Source/wtf/MathExtras.h else if (x == negInf && y == negInf) x 160 Source/wtf/MathExtras.h result = ::atan2(x, y); x 166 Source/wtf/MathExtras.h inline double wtf_fmod(double x, double y) { return (!std::isinf(x) && std::isinf(y)) ? x : fmod(x, y); } x 169 Source/wtf/MathExtras.h inline double wtf_pow(double x, double y) { return y == 0 ? 1 : pow(x, y); } x 171 Source/wtf/MathExtras.h #define atan2(x, y) wtf_atan2(x, y) x 172 Source/wtf/MathExtras.h #define fmod(x, y) wtf_fmod(x, y) x 173 Source/wtf/MathExtras.h #define pow(x, y) wtf_pow(x, y) x 262 Source/wtf/MathExtras.h inline int clampToInteger(unsigned x) x 266 Source/wtf/MathExtras.h if (x >= intMax) x 268 Source/wtf/MathExtras.h return static_cast<int>(x); x 271 Source/wtf/MathExtras.h inline bool isWithinIntRange(float x) x 273 Source/wtf/MathExtras.h return x > static_cast<float>(std::numeric_limits<int>::min()) && x < static_cast<float>(std::numeric_limits<int>::max()); x 116 Source/wtf/PageAllocator.cpp #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k)))) x 118 Source/wtf/PageAllocator.cpp uint32_t ranvalInternal(ranctx* x) x 120 Source/wtf/PageAllocator.cpp uint32_t e = x->a - rot(x->b, 27); x 121 Source/wtf/PageAllocator.cpp x->a = x->b ^ rot(x->c, 17); x 122 Source/wtf/PageAllocator.cpp x->b = x->c + x->d; x 123 Source/wtf/PageAllocator.cpp x->c = x->d + e; x 124 Source/wtf/PageAllocator.cpp x->d = e + x->a; x 125 Source/wtf/PageAllocator.cpp return x->d; x 130 Source/wtf/PageAllocator.cpp uint32_t ranval(ranctx* x) x 132 Source/wtf/PageAllocator.cpp spinLockLock(&x->lock); x 133 Source/wtf/PageAllocator.cpp if (UNLIKELY(!x->initialized)) { x 134 Source/wtf/PageAllocator.cpp x->initialized = true; x 138 Source/wtf/PageAllocator.cpp x->a = 0xf1ea5eed; x 139 Source/wtf/PageAllocator.cpp x->b = x->c = x->d = seed; x 141 Source/wtf/PageAllocator.cpp (void) ranvalInternal(x); x 144 Source/wtf/PageAllocator.cpp uint32_t ret = ranvalInternal(x); x 145 Source/wtf/PageAllocator.cpp spinLockUnlock(&x->lock); x 66 Source/wtf/SHA1.cpp static inline uint32_t rotateLeft(int n, uint32_t x) x 69 Source/wtf/SHA1.cpp return (x << n) | (x >> (32 - n)); x 112 Source/wtf/TypeTraits.h static YesType convertCheck(To* x); x 66 Source/wtf/dtoa.cpp #define word0(x) (x)->L[0] x 67 Source/wtf/dtoa.cpp #define word1(x) (x)->L[1] x 69 Source/wtf/dtoa.cpp #define word0(x) (x)->L[1] x 70 Source/wtf/dtoa.cpp #define word1(x) (x)->L[0] x 72 Source/wtf/dtoa.cpp #define dval(x) (x)->d x 177 Source/wtf/dtoa.cpp uint32_t* x = b.words(); x 182 Source/wtf/dtoa.cpp unsigned long long y = *x * (unsigned long long)m + carry; x 184 Source/wtf/dtoa.cpp *x++ = (uint32_t)y & 0xffffffffUL; x 186 Source/wtf/dtoa.cpp uint32_t xi = *x; x 190 Source/wtf/dtoa.cpp *x++ = (z << 16) + (y & 0xffff); x 198 Source/wtf/dtoa.cpp static int hi0bits(uint32_t x) x 202 Source/wtf/dtoa.cpp if (!(x & 0xffff0000)) { x 204 Source/wtf/dtoa.cpp x <<= 16; x 206 Source/wtf/dtoa.cpp if (!(x & 0xff000000)) { x 208 Source/wtf/dtoa.cpp x <<= 8; x 210 Source/wtf/dtoa.cpp if (!(x & 0xf0000000)) { x 212 Source/wtf/dtoa.cpp x <<= 4; x 214 Source/wtf/dtoa.cpp if (!(x & 0xc0000000)) { x 216 Source/wtf/dtoa.cpp x <<= 2; x 218 Source/wtf/dtoa.cpp if (!(x & 0x80000000)) { x 220 Source/wtf/dtoa.cpp if (!(x & 0x40000000)) x 229 Source/wtf/dtoa.cpp uint32_t x = *y; x 231 Source/wtf/dtoa.cpp if (x & 7) { x 232 Source/wtf/dtoa.cpp if (x & 1) x 234 Source/wtf/dtoa.cpp if (x & 2) { x 235 Source/wtf/dtoa.cpp *y = x >> 1; x 238 Source/wtf/dtoa.cpp *y = x >> 2; x 242 Source/wtf/dtoa.cpp if (!(x & 0xffff)) { x 244 Source/wtf/dtoa.cpp x >>= 16; x 246 Source/wtf/dtoa.cpp if (!(x & 0xff)) { x 248 Source/wtf/dtoa.cpp x >>= 8; x 250 Source/wtf/dtoa.cpp if (!(x & 0xf)) { x 252 Source/wtf/dtoa.cpp x >>= 4; x 254 Source/wtf/dtoa.cpp if (!(x & 0x3)) { x 256 Source/wtf/dtoa.cpp x >>= 2; x 258 Source/wtf/dtoa.cpp if (!(x & 1)) { x 260 Source/wtf/dtoa.cpp x >>= 1; x 261 Source/wtf/dtoa.cpp if (!x) x 264 Source/wtf/dtoa.cpp *y = x; x 281 Source/wtf/dtoa.cpp const uint32_t* x = 0; x 316 Source/wtf/dtoa.cpp x = xa; x 320 Source/wtf/dtoa.cpp z = *x++ * (unsigned long long)y + *xc + carry; x 323 Source/wtf/dtoa.cpp } while (x < xae); x 330 Source/wtf/dtoa.cpp x = xa; x 334 Source/wtf/dtoa.cpp z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; x 336 Source/wtf/dtoa.cpp uint32_t z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; x 339 Source/wtf/dtoa.cpp } while (x < xae); x 343 Source/wtf/dtoa.cpp x = xa; x 348 Source/wtf/dtoa.cpp z = (*x & 0xffff) * y + (*xc >> 16) + carry; x 351 Source/wtf/dtoa.cpp z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry; x 353 Source/wtf/dtoa.cpp } while (x < xae); x 557 Source/wtf/dtoa.cpp uint32_t* x; x 565 Source/wtf/dtoa.cpp x = b.words(); x 573 Source/wtf/dtoa.cpp x[0] = y | (z << (32 - k)); x 576 Source/wtf/dtoa.cpp x[0] = y; x 579 Source/wtf/dtoa.cpp x[1] = z; x 585 Source/wtf/dtoa.cpp x[0] = z; x 595 Source/wtf/dtoa.cpp *bits = (32 * i) - hi0bits(x[i - 1]); x 754 Source/wtf/dtoa.cpp uint32_t x; x 816 Source/wtf/dtoa.cpp x = (i > 32) ? (word0(&u) << (64 - i)) | (word1(&u) >> (i - 32)) x 818 Source/wtf/dtoa.cpp dval(&d2) = x; x 15 Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c #define STATS(x) x x 17 Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c #define STATS(x) x 45 public/platform/WebFloatPoint.h float x; x 49 public/platform/WebFloatPoint.h : x(0.0f) x 54 public/platform/WebFloatPoint.h WebFloatPoint(float x, float y) x 55 public/platform/WebFloatPoint.h : x(x) x 62 public/platform/WebFloatPoint.h : x(p.x()) x 69 public/platform/WebFloatPoint.h x = p.x(); x 76 public/platform/WebFloatPoint.h return WebCore::FloatPoint(x, y); x 80 public/platform/WebFloatPoint.h : x(p.x()) x 87 public/platform/WebFloatPoint.h x = p.x(); x 94 public/platform/WebFloatPoint.h return gfx::PointF(x, y); x 102 public/platform/WebFloatPoint.h return a.x == b.x && a.y == b.y; x 47 public/platform/WebFloatRect.h float x; x 55 public/platform/WebFloatRect.h : x(0) x 62 public/platform/WebFloatRect.h WebFloatRect(float x, float y, float width, float height) x 63 public/platform/WebFloatRect.h : x(x) x 72 public/platform/WebFloatRect.h : x(r.x()) x 81 public/platform/WebFloatRect.h x = r.x(); x 90 public/platform/WebFloatRect.h return WebCore::FloatRect(x, y, width, height); x 94 public/platform/WebFloatRect.h : x(r.x()) x 103 public/platform/WebFloatRect.h x = r.x(); x 112 public/platform/WebFloatRect.h return gfx::RectF(x, y, std::max(0.0f, width), std::max(0.0f, height)); x 119 public/platform/WebFloatRect.h return a.x == b.x && a.y == b.y && a.width == b.width && a.height == b.height; x 92 public/platform/WebFloatSize.h : width(v.x()) x 106 public/platform/WebFloatSize.h width = v.x(); x 172 public/platform/WebGraphicsContext3D.h virtual void postSubBufferCHROMIUM(int x, int y, int width, int height) = 0; x 238 public/platform/WebGraphicsContext3D.h virtual void copyTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border) = 0; x 239 public/platform/WebGraphicsContext3D.h virtual void copyTexSubImage2D(WGC3Denum target, WGC3Dint level, WGC3Dint xoffset, WGC3Dint yoffset, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) = 0; x 300 public/platform/WebGraphicsContext3D.h virtual void readPixels(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Denum format, WGC3Denum type, void* pixels) = 0; x 306 public/platform/WebGraphicsContext3D.h virtual void scissor(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) = 0; x 322 public/platform/WebGraphicsContext3D.h virtual void uniform1f(WGC3Dint location, WGC3Dfloat x) = 0; x 324 public/platform/WebGraphicsContext3D.h virtual void uniform1i(WGC3Dint location, WGC3Dint x) = 0; x 326 public/platform/WebGraphicsContext3D.h virtual void uniform2f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y) = 0; x 328 public/platform/WebGraphicsContext3D.h virtual void uniform2i(WGC3Dint location, WGC3Dint x, WGC3Dint y) = 0; x 330 public/platform/WebGraphicsContext3D.h virtual void uniform3f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z) = 0; x 332 public/platform/WebGraphicsContext3D.h virtual void uniform3i(WGC3Dint location, WGC3Dint x, WGC3Dint y, WGC3Dint z) = 0; x 334 public/platform/WebGraphicsContext3D.h virtual void uniform4f(WGC3Dint location, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z, WGC3Dfloat w) = 0; x 336 public/platform/WebGraphicsContext3D.h virtual void uniform4i(WGC3Dint location, WGC3Dint x, WGC3Dint y, WGC3Dint z, WGC3Dint w) = 0; x 345 public/platform/WebGraphicsContext3D.h virtual void vertexAttrib1f(WGC3Duint index, WGC3Dfloat x) = 0; x 347 public/platform/WebGraphicsContext3D.h virtual void vertexAttrib2f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y) = 0; x 349 public/platform/WebGraphicsContext3D.h virtual void vertexAttrib3f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z) = 0; x 351 public/platform/WebGraphicsContext3D.h virtual void vertexAttrib4f(WGC3Duint index, WGC3Dfloat x, WGC3Dfloat y, WGC3Dfloat z, WGC3Dfloat w) = 0; x 356 public/platform/WebGraphicsContext3D.h virtual void viewport(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) = 0; x 45 public/platform/WebPoint.h int x; x 49 public/platform/WebPoint.h : x(0) x 54 public/platform/WebPoint.h WebPoint(int x, int y) x 55 public/platform/WebPoint.h : x(x) x 62 public/platform/WebPoint.h : x(p.x()) x 69 public/platform/WebPoint.h x = p.x(); x 76 public/platform/WebPoint.h return WebCore::IntPoint(x, y); x 80 public/platform/WebPoint.h : x(p.x()) x 87 public/platform/WebPoint.h x = p.x(); x 94 public/platform/WebPoint.h return gfx::Point(x, y); x 101 public/platform/WebPoint.h return a.x == b.x && a.y == b.y; x 47 public/platform/WebRect.h int x; x 55 public/platform/WebRect.h : x(0) x 62 public/platform/WebRect.h WebRect(int x, int y, int width, int height) x 63 public/platform/WebRect.h : x(x) x 72 public/platform/WebRect.h : x(r.x()) x 81 public/platform/WebRect.h x = r.x(); x 90 public/platform/WebRect.h return WebCore::IntRect(x, y, width, height); x 94 public/platform/WebRect.h : x(r.x()) x 103 public/platform/WebRect.h x = r.x(); x 112 public/platform/WebRect.h return gfx::Rect(x, y, std::max(0, width), std::max(0, height)); x 119 public/platform/WebRect.h return a.x == b.x && a.y == b.y && a.width == b.width && a.height == b.height; x 91 public/platform/WebSize.h : width(v.x()) x 105 public/platform/WebSize.h width = v.x(); x 43 public/platform/WebTransformOperations.h virtual void appendTranslate(double x, double y, double z) = 0; x 44 public/platform/WebTransformOperations.h virtual void appendRotate(double x, double y, double z, double degrees) = 0; x 45 public/platform/WebTransformOperations.h virtual void appendScale(double x, double y, double z) = 0; x 46 public/platform/WebTransformOperations.h virtual void appendSkew(double x, double y) = 0; x 51 public/web/WebDOMMouseEvent.h BLINK_EXPORT int x() const; x 309 public/web/WebInputEvent.h int x; x 322 public/web/WebInputEvent.h , x(0) x 338 public/web/WebInputEvent.h , x(0) x 426 public/web/WebInputEvent.h int x; x 487 public/web/WebInputEvent.h , x(0) x 45 public/web/WebWindowFeatures.h float x; x 84 public/web/WebWindowFeatures.h : x(f.x) x 107 public/web/WebWindowFeatures.h result.x = x; x 78 public/web/android/WebInputEventFactory.h int x, x 86 public/web/android/WebInputEventFactory.h int x,