Home
last modified time | relevance | path

Searched refs:aTestRect (Results 1 – 25 of 27) sorted by relevance

12

/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/qa/cppunit/
H A Dcomplextext.cxx93 tools::Rectangle aBoundRect, aTestRect( 0, 1, 71, 15 ); in testArabic() local
95 CPPUNIT_ASSERT_EQUAL(aTestRect, aBoundRect); in testArabic()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/data/
H A Ddrwlayer.cxx1328 tools::Rectangle aTestRect; in HasObjectsInRows() local
1330 aTestRect.AdjustTop(pDoc->GetRowHeight( 0, nStartRow-1, nTab) ); in HasObjectsInRows()
1333 aTestRect.SetBottom( MAXMM ); in HasObjectsInRows()
1336 aTestRect.SetBottom( aTestRect.Top() ); in HasObjectsInRows()
1337 aTestRect.AdjustBottom(pDoc->GetRowHeight( nStartRow, nEndRow, nTab) ); in HasObjectsInRows()
1338 aTestRect.SetBottom(TwipsToHmm( aTestRect.Bottom() )); in HasObjectsInRows()
1341 aTestRect.SetTop(TwipsToHmm( aTestRect.Top() )); in HasObjectsInRows()
1343 aTestRect.SetLeft( 0 ); in HasObjectsInRows()
1344 aTestRect.SetRight( MAXMM ); in HasObjectsInRows()
1348 MirrorRectRTL( aTestRect ); in HasObjectsInRows()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sfx2/source/view/
H A Dlokcharthelper.cxx202 tools::Rectangle aTestRect = rTileRect; in PaintTile() local
203 aTestRect.Intersection( aChartRect ); in PaintTile()
204 if (aTestRect.IsEmpty()) in PaintTile()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sfx2/source/view/
H A Dlokcharthelper.cxx205 tools::Rectangle aTestRect = rTileRect; in PaintTile() local
206 aTestRect.Intersection( aChartRect ); in PaintTile()
207 if (aTestRect.IsEmpty()) in PaintTile()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/window/
H A Dsplitwin.cxx1811 tools::Rectangle aTestRect; in MouseButtonDown() local
1815 ImplGetFadeOutRect( aTestRect ); in MouseButtonDown()
1816 if ( aTestRect.IsInside( aMousePosPixel ) ) in MouseButtonDown()
1824 ImplGetFadeInRect( aTestRect, true ); in MouseButtonDown()
1825 if ( aTestRect.IsInside( aMousePosPixel ) ) in MouseButtonDown()
1896 tools::Rectangle aTestRect; in Tracking() local
1897 ImplGetFadeInRect( aTestRect, true ); in Tracking()
1898 bool bNewPressed = aTestRect.IsInside( aMousePosPixel ); in Tracking()
1922 tools::Rectangle aTestRect; in Tracking() local
1923 ImplGetFadeOutRect( aTestRect ); in Tracking()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/window/
H A Dsplitwin.cxx1880 tools::Rectangle aTestRect; in MouseButtonDown() local
1884 ImplGetFadeOutRect( aTestRect ); in MouseButtonDown()
1885 if ( aTestRect.IsInside( aMousePosPixel ) ) in MouseButtonDown()
1893 ImplGetFadeInRect( aTestRect, true ); in MouseButtonDown()
1894 if ( aTestRect.IsInside( aMousePosPixel ) ) in MouseButtonDown()
1965 tools::Rectangle aTestRect; in Tracking() local
1966 ImplGetFadeInRect( aTestRect, true ); in Tracking()
1967 bool bNewPressed = aTestRect.IsInside( aMousePosPixel ); in Tracking()
1991 tools::Rectangle aTestRect; in Tracking() local
1992 ImplGetFadeOutRect( aTestRect ); in Tracking()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/data/
H A Ddrwlayer.cxx1504 tools::Rectangle aTestRect; in HasObjectsInRows() local
1506 aTestRect.AdjustTop(pDoc->GetRowHeight( 0, nStartRow-1, nTab) ); in HasObjectsInRows()
1509 aTestRect.SetBottom( MAXMM ); in HasObjectsInRows()
1512 aTestRect.SetBottom( aTestRect.Top() ); in HasObjectsInRows()
1513 aTestRect.AdjustBottom(pDoc->GetRowHeight( nStartRow, nEndRow, nTab) ); in HasObjectsInRows()
1514 aTestRect.SetBottom(convertTwipToMm100(aTestRect.Bottom())); in HasObjectsInRows()
1517 aTestRect.SetTop(convertTwipToMm100(aTestRect.Top())); in HasObjectsInRows()
1519 aTestRect.SetLeft( 0 ); in HasObjectsInRows()
1520 aTestRect.SetRight( MAXMM ); in HasObjectsInRows()
1524 MirrorRectRTL( aTestRect ); in HasObjectsInRows()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/base/
H A DnsLayoutUtils.cpp2540 const nsRect& aTestRect) in RoundedRectIntersectsRect() argument
2542 if (!aTestRect.Intersects(aRoundedRect)) in RoundedRectIntersectsRect()
2548 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
2549 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
2550 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
2551 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1037 const nsRect& aTestRect);
H A DnsDisplayList.cpp2784 const nsRect& aTestRect) in RoundedBorderIntersectsRect() argument
2786 if (!nsRect(aFrameToReferenceFrame, aFrame->GetSize()).Intersects(aTestRect)) in RoundedBorderIntersectsRect()
2793 radii, aTestRect); in RoundedBorderIntersectsRect()
/dports/www/firefox-esr/firefox-91.8.0/layout/base/
H A DnsLayoutUtils.cpp2007 const nsRect& aTestRect) { in RoundedRectIntersectsRect() argument
2008 if (!aTestRect.Intersects(aRoundedRect)) return false; in RoundedRectIntersectsRect()
2013 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
2014 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
2015 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
2016 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1133 const nsRect& aTestRect);
/dports/www/firefox/firefox-99.0/layout/base/
H A DnsLayoutUtils.cpp1987 const nsRect& aTestRect) { in RoundedRectIntersectsRect() argument
1988 if (!aTestRect.Intersects(aRoundedRect)) return false; in RoundedRectIntersectsRect()
1993 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
1994 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
1995 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
1996 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1157 const nsRect& aTestRect);
/dports/mail/thunderbird/thunderbird-91.8.0/layout/base/
H A DnsLayoutUtils.cpp2007 const nsRect& aTestRect) { in RoundedRectIntersectsRect() argument
2008 if (!aTestRect.Intersects(aRoundedRect)) return false; in RoundedRectIntersectsRect()
2013 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
2014 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
2015 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
2016 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1133 const nsRect& aTestRect);
/dports/lang/spidermonkey60/firefox-60.9.0/layout/base/
H A DnsLayoutUtils.cpp2438 const nsRect& aTestRect) { in RoundedRectIntersectsRect() argument
2439 if (!aTestRect.Intersects(aRoundedRect)) return false; in RoundedRectIntersectsRect()
2444 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
2445 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
2446 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
2447 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1033 const nsRect& aTestRect); in MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS()
/dports/lang/spidermonkey78/firefox-78.9.0/layout/base/
H A DnsLayoutUtils.cpp2518 const nsRect& aTestRect) { in RoundedRectIntersectsRect() argument
2519 if (!aTestRect.Intersects(aRoundedRect)) return false; in RoundedRectIntersectsRect()
2524 insets.top = aTestRect.YMost() - aRoundedRect.y; in RoundedRectIntersectsRect()
2525 insets.right = aRoundedRect.XMost() - aTestRect.x; in RoundedRectIntersectsRect()
2526 insets.bottom = aRoundedRect.YMost() - aTestRect.y; in RoundedRectIntersectsRect()
2527 insets.left = aTestRect.XMost() - aRoundedRect.x; in RoundedRectIntersectsRect()
H A DnsLayoutUtils.h1177 const nsRect& aTestRect); in MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/control/
H A Dbutton.cxx732 tools::Rectangle aTestRect( Point(), pDev->GetOutputSizePixel() ); in ImplHitTestPushButton() local
734 return aTestRect.IsInside( rPos ); in ImplHitTestPushButton()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/control/
H A Dbutton.cxx696 tools::Rectangle aTestRect( Point(), pDev->GetOutputSizePixel() ); in ImplHitTestPushButton() local
698 return aTestRect.IsInside( rPos ); in ImplHitTestPushButton()
/dports/www/firefox/firefox-99.0/layout/painting/
H A DnsDisplayList.cpp3353 const nsRect& aTestRect) { in RoundedBorderIntersectsRect() argument
3355 .Intersects(aTestRect)) { in RoundedBorderIntersectsRect()
3363 aTestRect); in RoundedBorderIntersectsRect()
/dports/www/firefox-esr/firefox-91.8.0/layout/painting/
H A DnsDisplayList.cpp3894 const nsRect& aTestRect) { in RoundedBorderIntersectsRect() argument
3895 if (!nsRect(aFrameToReferenceFrame, aFrame->GetSize()).Intersects(aTestRect)) in RoundedBorderIntersectsRect()
3902 aTestRect); in RoundedBorderIntersectsRect()
/dports/mail/thunderbird/thunderbird-91.8.0/layout/painting/
H A DnsDisplayList.cpp3894 const nsRect& aTestRect) { in RoundedBorderIntersectsRect() argument
3895 if (!nsRect(aFrameToReferenceFrame, aFrame->GetSize()).Intersects(aTestRect)) in RoundedBorderIntersectsRect()
3902 aTestRect); in RoundedBorderIntersectsRect()

12