Searched refs:minX (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DHoverMenu.js119 else if (rects.length === 2 && rects[0].minX() >= rects[1].maxX())
127 style.left = bounds.minX() + "px";
135 this._button.style.left = (lastRect.maxX() - bounds.minX() - buttonWidth) + "px";
173 var tx = -secondRect.minX();
179 "H", rect.minX() + r,
188 "M", rect.minX(), rect.minY(),
193 "H", rect.minX()
202 var minX = Number.MAX_VALUE; variable
205 var minX = Math.min(rect.minX(), min
[all...]
H A DPopover.js82 this._element.style.left = frame.minX() + "px";
252 anchorPoint = new WebInspector.Point(targetFrame.midX() - bestFrame.minX(), bestFrame.size.height - WebInspector.Popover.ShadowPadding);
255 anchorPoint = new WebInspector.Point(targetFrame.midX() - bestFrame.minX(), WebInspector.Popover.ShadowPadding);
318 fromFrame.minX() + this._anchorPoint.x,
332 animatedValue(fromFrame.minX(), toFrame.minX(), progress),
339 absoluteAnchorPoint.x - this._frame.minX(),
458 if (x < containerFrame.minX())
459 x = containerFrame.minX();
500 ctx.arcTo(bounds.maxX(), bounds.maxY(), bounds.minX(), bound
[all...]
H A DCodeMirrorAdditions.js452 lineRects.push(new WebInspector.Rect(minX, minY, maxX - minX, maxY - minY));
454 var minX = Math.floor(coords.left);
460 lineRects.push(new WebInspector.Rect(minX, minY, maxX - minX, maxY - minY));
462 var minX = Math.floor(firstCharCoords.left);
466 lineRects.push(new WebInspector.Rect(minX, minY, maxX - minX, maxY - minY));
/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
56 , m_minX(minX)
H A DSelectionRect.h53 int minX() const { return m_minX; } function in class:WebCore::SelectionRect
102 void setMinX(int minX) { m_minX = minX; } argument
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DGeometry.js147 minX: function()
179 var x1 = Math.max(this.minX(), rect.minX());
197 var x = Math.min(this.minX(), rect.minX());
294 var minX = Number.MAX_VALUE;
299 minX = Math.min(minX, point.x);
304 return new WebInspector.Rect(minX, minY, maxX - minX, max
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFloatRect.cpp111 float minX = std::min(x(), other.x()); local
116 setLocationAndSizeFromEdges(minX, minY, maxX, maxY);
134 float minX = std::min(x(), p.x()); local
139 setLocationAndSizeFromEdges(minX, minY, maxX, maxY);
H A DRegion.cpp366 int minX = std::numeric_limits<int>::max();
376 if (*firstSegment < minX)
377 minX = *firstSegment;
386 ASSERT(minX <= maxX);
389 return IntRect(minX, minY, maxX - minX, maxY - minY);
H A DFloatPolygon.h85 float minX() const { return std::min(vertex1().x(), vertex2().x()); } function in class:WebCore::VertexPair
H A DFloatPolygon.cpp204 bool boundsOverlap = (minX() < rect.maxX()) && (maxX() > rect.x()) && (minY() < rect.maxY()) && (maxY() > rect.y());
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeDisplay.c827 int minX, minY, maxX, maxY; local
829 if (!Tree_AreaBbox(tree, TREE_AREA_CONTENT, &minX, &minY, &maxX, &maxY))
833 if (x < minX)
834 x = minX;
2574 int minX, int minY, /* Left, top in canvas coordinates. */
2594 (range->offset + range->totalWidth >= minX)) {
2619 if ((rx + range->totalWidth > minX) &&
2623 dx = MAX(minX - rx, 0);
2627 dx = minX;
2698 int minX, max local
2570 Tree_ItemsInArea( TreeCtrl *tree, TreeItemList *items, int minX, int minY, int maxX, int maxY ) argument
3192 int minX, minY, maxX, maxY; local
3705 AddRectToRedrawRgn( TreeCtrl *tree, int minX, int minY, int maxX, int maxY) argument
3789 int minX, minY, maxX, maxY; local
3992 int minX, minY, maxX, maxY; local
4124 int minX, minY, maxX, maxY; local
4248 int minX, minY, maxX, maxY; local
4716 int x, y, minX, minY, maxX, maxY; local
5156 int x, y, minX, minY, maxX, maxY; local
5653 int minX, minY, maxX, maxY; local
7579 int minX, minY, maxX, maxY; local
[all...]
H A DtkTreeColumn.c4722 int minX = 0, maxX = 0; local
4730 minX = Tree_HeaderLeft(tree);
4734 minX = Tree_ContentLeft(tree);
4738 minX = Tree_ContentRight(tree);
4746 if (x == minX - 1)
4858 int minX, maxX, width, height; local
4868 minX = Tree_ContentLeft(tree);
4884 if ((x < maxX) && (x + column->useWidth > minX))
4913 if (minX < maxX)
H A DtkTreeElem.c3974 int minX, maxX, minY, maxY; local
4019 minX = args->display.bounds[0];
4030 if (((x + width) <= minX) || ((y + height) <= minY)
4047 if (cx < minX) {
4048 cw -= minX - cx;
4049 cx = minX;
H A DtkTreeCtrl.h586 MODULE_SCOPE void TreeItem_Draw(TreeCtrl *tree, TreeItem self, int lock, int x, int y, int width, int height, TreeDrawable td, int minX, int maxX, int index);
867 MODULE_SCOPE void Tree_ItemsInArea(TreeCtrl *tree, TreeItemList *items, int minX, int minY, int maxX, int maxY);
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderRegion.cpp168 LayoutUnit minX = clipX ? flowThreadPortionRect.x() : std::min(flowThreadPortionRect.x(), flowThreadOverflow.x() - outlineSize); local
170 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
172 LayoutUnit minX = isFirstPortion ? (flowThreadOverflow.x() - outlineSize) : flowThreadPortionRect.x(); local
177 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
H A DRenderLayer.h1183 LayoutUnit verticalScrollbarStart(int minX, int maxX) const;
1184 LayoutUnit horizontalScrollbarStart(int minX) const;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DFontMac.mm374 GlyphIterationState(CGPoint startingPoint, CGPoint currentPoint, CGFloat y1, CGFloat y2, CGFloat minX, CGFloat maxX)
379 , minX(minX)
387 CGFloat minX;
399 state.minX = std::min(state.minX, x);
408 // leftmost and rightmost intersection in GlyphIterationState::minX and
556 if (info.minX < info.maxX) {
557 result.append(info.minX - lineExtents.x());
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DPolygonShape.cpp58 return minX();
73 return FloatShapeInterval(minX(), maxX());
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dgeometry.tcl1002 set minX [lindex $polyline 0]
1003 set maxX $minX
1007 if {$x < $minX} {set minX $x}
1012 return [list $minX $minY $maxX $maxY]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorOverlayPage.js438 var minX = Number.MAX_VALUE, minY = Number.MAX_VALUE, maxX = Number.MIN_VALUE; maxY = Number.MIN_VALUE;
442 minX = Math.min(minX, quad[j].x);
/macosx-10.10/tcl-105/tcl_ext/tktable/tktable/generic/
H A DtkTableCmds.c291 int r1, c1, r2, c2, minX = 99999, minY = 99999, maxX = 0, maxY = 0;
302 if (x < minX) minX = x;
311 Tcl_ListObjAppendElement(NULL, resultPtr, Tcl_NewIntObj(minX));
314 Tcl_NewIntObj(maxX-minX));
289 int r1, c1, r2, c2, minX = 99999, minY = 99999, maxX = 0, maxY = 0; local
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistBind.tcl966 set minX [minScrollableX $win]
971 ($x < $minX && $prevX >= $minX)} {
978 ($x >= $minX && $prevX < $minX)} {
1004 set minX [minScrollableX $win]
1020 } elseif {$x < $minX} {
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/library/
H A Dtreectrl.tcl326 # scan [$w bbox $area] "%d %d %d %d" minX y1 maxX y2
327 scan [ColumnsBbox $w $area] "%d %d %d %d" minX y1 maxX y2
328 if {$x < $minX} {
329 set x $minX
/macosx-10.10/tcl-105/tk/tk/library/
H A Dclrpick.tcl140 # minX is the x coordinate of the first colorbar
142 set data(minX) $data(indent)
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkTextDisp.c1883 int minX, maxX, xOffset;
1900 minX = dInfoPtr->curPixelOffset;
1901 xOffset = dInfoPtr->x - minX;
1902 maxX = minX + dInfoPtr->maxX - dInfoPtr->x;
1874 int minX, maxX, xOffset; local

Completed in 417 milliseconds

12