Searched refs:maxX (Results 1 - 25 of 175) sorted by relevance

1234567

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderOverflow.h79 LayoutUnit maxX = std::max(rect.maxX(), m_layoutOverflow.maxX()); local
83 m_layoutOverflow.setWidth(maxX - m_layoutOverflow.x());
89 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX()); local
93 m_visualOverflow.setWidth(maxX - m_visualOverflow.x());
H A DRenderRegionSet.cpp59 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
H A DRenderRegion.cpp80 LayoutUnit flowThreadPortionTopMax(isHorizontalWritingMode() ? m_flowThreadPortionRect.maxY() : m_flowThreadPortionRect.maxX());
81 LayoutUnit flowThreadPortionLeftMax(isHorizontalWritingMode() ? m_flowThreadPortionRect.maxX() : m_flowThreadPortionRect.maxY());
169 LayoutUnit maxX = clipX ? flowThreadPortionRect.maxX() : std::max(flowThreadPortionRect.maxX(), (flowThreadOverflow.maxX() + outlineSize)); local
170 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
173 LayoutUnit maxX = isLastPortion ? std::max(flowThreadPortionRect.maxX(), flowThreadOverflow.maxX()) local
[all...]
H A DRenderInline.cpp1555 pixelSnappedBox.y() - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
1557 pixelSnappedBox.maxY() + (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
1560 (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
1561 (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
1566 pixelSnappedBox.maxX(),
1567 pixelSnappedBox.y() - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineWidth : 0),
1568 pixelSnappedBox.maxX() + outlineWidth,
1569 pixelSnappedBox.maxY() + (nextline.isEmpty() || nextline.maxX() <
[all...]
H A DRenderThemeWinCE.cpp254 IntRect buttonRect(rect.maxX() - dropDownButtonWidth - 1, rect.y(), dropDownButtonWidth, rect.height());
390 paintInfo.context->drawLine(IntPoint(xBounds.maxX(), xBounds.y()), IntPoint(xBounds.x(), xBounds.maxY()));
504 IntPoint right = IntPoint(left.x() + mediaElement->percentLoaded() * (r.maxX() - r.x() - 4), (r.y() + r.maxY()) / 2);
510 i.context->drawLine(left, IntPoint(r.maxX() - 2, left.y()));
573 FloatPoint(imRect.maxX() - 1, imRect.y()),
574 FloatPoint(imRect.maxX() - 1, imRect.maxY()),
580 paintInfo.context->drawLine(IntPoint(imRect.maxX(), imRect.y()), IntPoint(imRect.x(), imRect.maxY()));
602 FloatPoint pts[3] = { FloatPoint(imRect.x(), imRect.y()), FloatPoint(imRect.maxX(), (imRect.y() + imRect.maxY()) / 2.0), FloatPoint(imRect.x(), imRect.maxY()) };
614 FloatPoint pts[3] = { FloatPoint((imRect.x() + imRect.maxX()) / 2.0, imRect.y()), FloatPoint(imRect.x(), (imRect.y() + imRect.maxY()) / 2.0), FloatPoint((imRect.x() + imRect.maxX()) / 2.
[all...]
H A DRenderIFrame.cpp92 return boundingRect.maxX() > 0 && boundingRect.maxY() > 0;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DHoverMenu.js119 else if (rects.length === 2 && rects[0].minX() >= rects[1].maxX())
135 this._button.style.left = (lastRect.maxX() - bounds.minX() - buttonWidth) + "px";
178 "M", rect.maxX(), rect.minY(),
183 "H", rect.maxX()
189 "H", rect.maxX() - r,
203 var maxX = -Number.MAX_VALUE; variable
206 var maxX = Math.max(rect.maxX(), maxX);
210 maxX
[all...]
H A DPopover.js460 if (x + width > containerFrame.maxX())
461 x = containerFrame.maxX() - width;
496 ctx.moveTo(bounds.maxX(), bounds.minY() + r);
497 ctx.lineTo(bounds.maxX(), anchorPoint.y - arrowHalfLength);
499 ctx.lineTo(bounds.maxX(), anchorPoint.y + arrowHalfLength);
500 ctx.arcTo(bounds.maxX(), bounds.maxY(), bounds.minX(), bounds.maxY(), r);
502 ctx.arcTo(bounds.minX(), bounds.minY(), bounds.maxX(), bounds.minY(), r);
503 ctx.arcTo(bounds.maxX(), bounds.minY(), bounds.maxX(), bounds.maxY(), r);
510 ctx.arcTo(bounds.minX(), bounds.minY(), bounds.maxX(), bound
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DIntRect.cpp52 && x() < other.maxX() && other.x() < maxX()
58 return x() <= other.x() && maxX() >= other.maxX()
66 int r = std::min(maxX(), other.maxX());
95 int r = std::max(maxX(), other.maxX());
116 int right = std::max(maxX(), other.maxX());
[all...]
H A DLayoutRect.cpp48 && x() < other.maxX() && other.x() < maxX()
54 return x() <= other.x() && maxX() >= other.maxX()
61 LayoutPoint newMaxPoint(std::min(maxX(), other.maxX()), std::min(maxY(), other.maxY()));
84 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
101 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), st
[all...]
H A DFloatRect.cpp54 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
61 && x() < other.maxX() && other.x() < maxX()
67 return x() <= other.x() && maxX() >= other.maxX()
75 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
82 float r = std::min(maxX(), other.maxX());
113 float maxX = std::max(this->maxX(), othe local
136 float maxX = std::max(this->maxX(), p.x()); local
[all...]
H A DPath.cpp160 addLineTo(FloatPoint(rect.maxX() - topRightRadius.width(), rect.y()));
162 addBezierCurveTo(FloatPoint(rect.maxX() - topRightRadius.width() * gCircleControlPoint, rect.y()),
163 FloatPoint(rect.maxX(), rect.y() + topRightRadius.height() * gCircleControlPoint),
164 FloatPoint(rect.maxX(), rect.y() + topRightRadius.height()));
165 addLineTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height()));
167 addBezierCurveTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height() * gCircleControlPoint),
168 FloatPoint(rect.maxX() - bottomRightRadius.width() * gCircleControlPoint, rect.maxY()),
169 FloatPoint(rect.maxX() - bottomRightRadius.width(), rect.maxY()));
H A DFloatRoundedRect.cpp123 maxXIntercept = rect().maxX();
131 minXIntercept = topLeftRect.maxX() - cornerRectIntercept(topLeftRect.maxY() - y, topLeftRect);
133 minXIntercept = bottomLeftRect.maxX() - cornerRectIntercept(y - bottomLeftRect.y(), bottomLeftRect);
145 maxXIntercept = m_rect.maxX();
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DIntRectWin.cpp41 RECT rect = { x(), y(), maxX(), maxY() };
/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingConstraints.cpp38 offset.setWidth(viewportRect.maxX() - m_viewportRectAtLastLayout.maxX());
53 float rightLimit = constrainingRect.maxX() - m_rightOffset;
54 float rightDelta = std::min<float>(0, rightLimit - m_stickyBoxRect.maxX());
65 float availableSpace = std::max<float>(0, m_containingBlockRect.maxX() - m_stickyBoxRect.maxX());
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DRectangleShape.cpp69 float x2 = bounds.maxX();
79 x2 = bounds.maxX() - marginRadiusX + xi;
84 x2 = bounds.maxX() - marginRadiusX + xi;
H A DBoxShape.cpp126 result.append(LineSegment(rect.x(), rect.maxX()));
134 result.append(LineSegment(rect.x(), rect.maxX()));
138 float x1 = rect.maxX();
147 x2 = rect.maxX();
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DSelectionRect.cpp51 SelectionRect::SelectionRect(const IntRect& rect, TextDirection direction, int minX, int maxX, int maxY, argument
57 , m_maxX(maxX)
H A DSelectionRect.h54 int maxX() const { return m_maxX; } function in class:WebCore::SelectionRect
103 void setMaxX(int maxX) { m_maxX = maxX; } argument
/macosx-10.10/WebCore-7600.1.25/page/
H A DGestureTapHighlighter.cpp85 return !rect.isEmpty() && x >= rect.x() && x <= rect.maxX();
91 && a.x() <= b.maxX() && b.x() <= a.maxX()
104 LayoutUnit rightSide = std::max(rect.maxX(), other.maxX());
136 contains(prev, rect.maxX()) ? squared : rounded,
138 contains(next, rect.maxX()) ? squared : rounded);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DGeometry.js167 maxX: function()
180 var x2 = Math.min(this.maxX(), rect.maxX());
199 var width = Math.max(this.maxX(), rect.maxX()) - x;
296 var maxX = -Number.MAX_VALUE;
300 maxX = Math.max(maxX, point.x);
304 return new WebInspector.Rect(minX, minY, maxX - minX, maxY - minY);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DClientRect.h46 float right() const { return m_rect.maxX(); }
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkTextDisp.c210 int maxX; /* First x-coordinate to right of available member in struct:TextDInfo
374 int maxX, int tabOrigin, int *nextXPtr));
385 int maxX));
813 int x = 0, maxX = 0; /* Initializations needed only to
977 maxX = -1;
979 maxX = textPtr->dInfoPtr->maxX - textPtr->dInfoPtr->x
981 if (maxX < x) {
982 maxX = x;
1023 byteOffset, maxX
808 int x = 0, maxX = 0; /* Initializations needed only to local
1874 int minX, maxX, xOffset; local
4828 int maxX; local
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkTextDisp.c312 int maxX; /* First x-coordinate to right of available member in struct:TextDInfo
514 int start, int end, int startX, int maxX,
559 int startX, int maxX, int flags, int *nextXPtr);
569 int maxX);
1084 int x = 0, maxX = 0; /* Initializations needed only to stop
1399 maxX = -1;
1401 maxX = textPtr->dInfoPtr->maxX - textPtr->dInfoPtr->x
1403 if (maxX < x) {
1404 maxX
1079 int x = 0, maxX = 0; /* Initializations needed only to stop local
2538 int minX, maxX, xOffset; local
5941 int newX, maxX; local
7024 TkTextCharLayoutProc( TkText *textPtr, TkTextIndex *indexPtr, TkTextSegment *segPtr, int byteOffset, int maxX, int maxBytes, int noCharsYet, TkWrapMode wrapMode, register TkTextDispChunk *chunkPtr) argument
7258 CharChunkMeasureChars( TkTextDispChunk *chunkPtr, const char *chars, int charsLen, int start, int end, int startX, int maxX, int flags, int *nextXPtr) argument
7621 int maxX; local
7866 SizeOfTab( TkText *textPtr, int tabStyle, TkTextTabArray *tabArrayPtr, int *indexPtr, int x, int maxX) argument
8056 MeasureChars( Tk_Font tkfont, CONST char *source, int maxBytes, int rangeStart, int rangeLength, int startX, int maxX, int flags, int *nextXPtr) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/cairo/
H A DWidgetBackingStoreCairo.cpp70 targetRect.shiftMaxXEdgeTo(targetRect.maxX() - scrollOffset.width());

Completed in 144 milliseconds

1234567