Home
last modified time | relevance | path

Searched refs:smallestX (Results 1 – 11 of 11) sorted by relevance

/dports/devel/umbrello/umbrello-21.12.3/umbrello/umlwidgets/
H A Dwidgetlist_utils.cpp26 qreal smallestX = 0; in getSmallestX() local
31 smallestX = widget->x(); in getSmallestX()
33 if (smallestX > widget->x()) in getSmallestX()
34 smallestX = widget->x(); in getSmallestX()
39 return smallestX; in getSmallestX()
/dports/games/openbve/OpenBVE-1.8.2.1/source/Plugins/Object.LokSim/
H A DObjectParser.cs295 int smallestX = TextureWidth; in ReadObject()
332 if (OpenBVEWidth <= smallestX && OpenBVEHeight <= smallestY) in ReadObject()
335 smallestX = (int)OpenBVEWidth; in ReadObject()
/dports/www/firefox-esr/firefox-91.8.0/gfx/cairo/cairo/src/win32/
H A Dcairo-dwrite-font.cpp1135 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1140 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1141 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1163 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/www/firefox/firefox-99.0/gfx/cairo/cairo/src/win32/
H A Dcairo-dwrite-font.cpp1135 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1140 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1141 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1163 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/cairo/cairo/src/win32/
H A Dcairo-dwrite-font.cpp1135 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1140 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1141 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1163 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/cairo/cairo/src/
H A Dcairo-dwrite-font.cpp1333 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1338 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1339 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1361 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/cairo/cairo/src/
H A Dcairo-dwrite-font.cpp1333 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1338 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1339 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1361 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/cairo/cairo/src/
H A Dcairo-dwrite-font.cpp1333 INT32 smallestX = INT_MAX; in _cairo_dwrite_show_glyphs_on_surface() local
1338 if (glyphs[i].x < smallestX) { in _cairo_dwrite_show_glyphs_on_surface()
1339 smallestX = (INT32)glyphs[i].x; in _cairo_dwrite_show_glyphs_on_surface()
1361 fontArea.left = (INT32)(smallestX - scaled_font->font_matrix.xx); in _cairo_dwrite_show_glyphs_on_surface()
/dports/devel/umbrello/umbrello-21.12.3/umbrello/
H A Dumlscene.cpp4223 qreal smallestX = WidgetList_Utils::getSmallestX(widgetList); in alignLeft() local
4226 widget->setX(smallestX); in alignLeft()
4321 qreal smallestX = WidgetList_Utils::getSmallestX(widgetList); in alignHorizontalMiddle() local
4323 qreal middle = int((biggestX - smallestX) / 2) + smallestX; in alignHorizontalMiddle()
4380 qreal smallestX = WidgetList_Utils::getSmallestX(widgetList); in alignHorizontalDistribute() local
4383 qreal distance = int(((biggestX - smallestX) - widthsSum) / (widgetList.count() - 1.0) + 0.5); in alignHorizontalDistribute()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/libs/kimath/src/geometry/
H A Dshape_poly_set.cpp1012 FractureEdge* smallestX = nullptr; in fractureSingle() local
1023 smallestX = border_edge; in fractureSingle()
1027 int num_processed = processEdge( edges, smallestX ); in fractureSingle()
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgsgeometryutils.cpp1464 const double smallestX = std::min( right - x, x - left ); in closestSideOfRectangle() local
1466 if ( smallestX < smallestY ) in closestSideOfRectangle()