/aoo41x/main/tools/inc/tools/ |
H A D | debug.hxx | 500 #define DBG_TRACE1( aTrace, x1 ) \ argument 506 x1 ); \ 509 #define DBG_TRACE2( aTrace, x1, x2 ) \ argument 735 #define DBG_TRACE1( aTrace, x1 ) ((void)0) argument 736 #define DBG_TRACE2( aTrace, x1, x2 ) ((void)0) argument 737 #define DBG_TRACE3( aTrace, x1, x2, x3 ) ((void)0) argument 742 #define DBG_WARNING1( aWarning, x1 ) ((void)0) argument 743 #define DBG_WARNING2( aWarning, x1, x2 ) ((void)0) argument 749 #define DBG_ERROR1( aError, x1 ) ((void)0) argument 750 #define DBG_ERROR2( aError, x1, x2 ) ((void)0) argument [all …]
|
/aoo41x/main/canvas/source/tools/ |
H A D | surfacerect.hxx | 63 const sal_Int32 x1(maPos.getX()); in pointInside() local 67 if(px < x1) return false; in pointInside() 77 const sal_Int32 x1(maPos.getX()); in hLineIntersect() local 83 if((lx1 < x1) && (lx2 < x1)) return false; in hLineIntersect() 91 const sal_Int32 x1(maPos.getX()); in vLineIntersect() local 95 if(lx < x1) return false; in vLineIntersect() 105 const sal_Int32 x1(maPos.getX()); in intersection() local 109 if(r.hLineIntersect(x1,x2,y1)) return true; in intersection() 118 const sal_Int32 x1(maPos.getX()); in inside() local 122 if(!(r.pointInside(x1,y1))) return false; in inside() [all …]
|
H A D | surface.cxx | 362 const double x1(maSourceOffset.getX()); in drawWithClip() local 366 const double x2(x1+w); in drawWithClip() 368 const ::basegfx::B2DRectangle aSurfaceClipRect(x1,y1,x2,y2); in drawWithClip()
|
/aoo41x/main/svtools/source/filter/ |
H A D | sgvmain.cxx | 120 double x1,y1; in RotatePoint() local 123 x1=dx*cs-dy*sn; in RotatePoint() 132 double x1,y1; in RotatePoint() local 135 x1=dx*cs-dy*sn; in RotatePoint() 478 if (x1>x2) { i=x1; x1=x2; x2=i; } in DrawSlideRect() 504 i0=x1; in DrawSlideRect() 505 i=x1; in DrawSlideRect() 524 cx=(x1+x2) /2; in DrawSlideRect() 526 dx=x2-x1+1; in DrawSlideRect() 692 i0=x1; in DrawSlideCirc() [all …]
|
/aoo41x/main/stoc/source/security/ |
H A D | access_controller.cxx | 114 Reference< security::XAccessControlContext > const & x1, in acc_Intersection() 117 : m_x1( x1 ) in acc_Intersection() 130 Reference< security::XAccessControlContext > const & x1, in create() 134 if (! x1.is()) in create() 137 return x1; in create() 138 return new acc_Intersection( x1, x2 ); in create() 177 Reference< security::XAccessControlContext > const & x1, in acc_Union() 180 : m_x1( x1 ) in acc_Union() 193 Reference< security::XAccessControlContext > const & x1, in create() 197 if (! x1.is()) in create() [all …]
|
/aoo41x/main/filter/source/graphicfilter/ios2met/ |
H A D | ios2met.cxx | 1030 x1=aP1.X(); y1=aP1.Y(); in ReadArc() 1035 ncy=2*p*p*((y3-y1)*(x2-x1)-(y1-y2)*(x1-x3)); in ReadArc() 1036 ncx=2*q*q*(x2-x1); in ReadArc() 1043 cy=( q*q*((x3*x3-x1*x1)*(x2-x1)+(x2*x2-x1*x1)*(x1-x3)) + in ReadArc() 1044 p*p*((y3*y3-y1*y1)*(x2-x1)+(y2*y2-y1*y1)*(x1-x3)) ) / ncy; in ReadArc() 1045 cx=( q*q*(x2*x2-x1*x1)+p*p*(y2*y2-y1*y1)+cy*2*p*p*(y1-y2) ) / ncx; in ReadArc() 1047 r=sqrt(q*q*(x1-cx)*(x1-cx)+p*p*(y1-cy)*(y1-cy)); in ReadArc() 2120 x1=ReadCoord(b32); in ReadDsc() 2125 if (x1>x2) in ReadDsc() 2127 nt=x1; in ReadDsc() [all …]
|
/aoo41x/main/cppuhelper/test/ |
H A D | testpropshlp.cxx | 815 Reference < XPropertiesChangeListener > x1( xPS_L, UNO_QUERY ); in test_PropertySetHelper() local 823 pPS->addPropertiesChangeListener( szPN, x1 ); in test_PropertySetHelper() 826 pPS->addPropertiesChangeListener( szPN, x1 ); in test_PropertySetHelper() 830 pPS->removePropertiesChangeListener( x1 ); in test_PropertySetHelper() 831 pPS->removePropertiesChangeListener( x1 ); in test_PropertySetHelper() 860 Reference < XPropertiesChangeListener > x1( xPS_L, UNO_QUERY ); in test_PropertySetHelper() local 867 pPS->addPropertiesChangeListener( szPN, x1 ); in test_PropertySetHelper() 869 pPS->addPropertiesChangeListener( szPN, x1 ); in test_PropertySetHelper() 1104 Reference < XPropertiesChangeListener > x1( xPS_L, UNO_QUERY ); in test_PropertySetHelper() local 1113 pPS->addPropertiesChangeListener( szPN, x1 ); in test_PropertySetHelper() [all …]
|
/aoo41x/main/toolkit/source/awt/ |
H A D | vclxgraphics.cxx | 389 void VCLXGraphics::drawLine( sal_Int32 x1, sal_Int32 y1, sal_Int32 x2, sal_Int32 y2 ) throw(uno::Ru… in drawLine() argument 396 mpOutputDevice->DrawLine( Point( x1, y1 ), Point( x2, y2 ) ); in drawLine() 471 …rc( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 x1, sal_Int32 y1, sal_I… in drawArc() argument 478 …mpOutputDevice->DrawArc( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawArc() 482 …ie( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 x1, sal_Int32 y1, sal_I… in drawPie() argument 489 …mpOutputDevice->DrawPie( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawPie() 493 …rd( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 x1, sal_Int32 y1, sal_I… in drawChord() argument 500 …mpOutputDevice->DrawChord( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Poi… in drawChord()
|
/aoo41x/main/svx/source/svdraw/ |
H A D | svdpagv.cxx | 580 long x1=GetPage()->GetLftBorder()+1+nWrX; in DrawPageViewGrid() local 594 x1=rGF.GetUserArea().Left(); in DrawPageViewGrid() 605 if (x1<rRect.Left() -nX1Pix) x1=rRect.Left() -nX1Pix; in DrawPageViewGrid() 613 while (xBigOrg>=x1) xBigOrg-=nx1; in DrawPageViewGrid() 614 while (xBigOrg<x1) xBigOrg+=nx1; in DrawPageViewGrid() 616 while (xFinOrg>=x1) xFinOrg-=nx2; in DrawPageViewGrid() 617 while (xFinOrg<x1) xFinOrg+=nx2; in DrawPageViewGrid() 626 if( x1 <= x2 && y1 <= y2 ) in DrawPageViewGrid()
|
/aoo41x/main/basebmp/inc/basebmp/ |
H A D | clippedlinerenderer.hxx | 226 const sal_Int32 x1 = aPt1.getX(); in renderClippedLine() local 232 sal_Int32 adx = x2 - x1; in renderClippedLine() 250 sal_Int32 xs = x1; in renderClippedLine() 258 prepareClip(x1, x2, y1, adx, ady, xs, ys, sx, sy, in renderClippedLine() 334 prepareClip(y1, y2, x1, ady, adx, ys, xs, sy, sx, in renderClippedLine()
|
H A D | linerenderer.hxx | 79 const sal_Int32 x1 = rPt1.getX(); in renderLine() local 85 sal_Int32 adx = x2 - x1; in renderLine() 103 sal_Int32 xs = x1; in renderLine()
|
/aoo41x/main/vcl/source/fontsubset/ |
H A D | sft.cxx | 89 int x1, y1; member 94 x1( 0 ), y1( 0 ), in PSPathElement() 921 p.x1 = x0 = srcA[cp].x; in BSplineToPSPath() 938 p.x1 = x0 + (2 * (x1 - x0) + 1) / 3; in BSplineToPSPath() 940 p.x2 = x1 + (curx - x1 + 1) / 3; in BSplineToPSPath() 951 p.x1 = curx; in BSplineToPSPath() 962 x2 = (x1 + curx + 1) / 2; in BSplineToPSPath() 965 p.x1 = x0 + (2 * (x1 - x0) + 1) / 3; in BSplineToPSPath() 967 p.x2 = x1 + (x2 - x1 + 1) / 3; in BSplineToPSPath() 973 x1 = curx; y1 = cury; in BSplineToPSPath() [all …]
|
/aoo41x/main/filter/source/graphicfilter/ipict/ |
H A D | ipict.cxx | 1079 short y1,x1,y2,x2; in ReadHeader() local 1133 *pPict >> y1 >> x1 >> y2 >> x2; // Rahmen-Rechteck des Bildes in ReadHeader() 1134 if (x1 > x2 || y1 > y2) continue; // bad bdbox in ReadHeader() 1135 if (x1 < -2048 || x2 > 2048 || y1 < -2048 || y2 > 2048 || // origin|dest is very small|large in ReadHeader() 1136 (x1 == x2 && y1 == y2) ) // 1 pixel pict is dubious in ReadHeader() 1138 else if (x2 < x1+8 || y2 < y1+8) // a little dubious in ReadHeader() 1141 aBoundingRect=Rectangle( x1,y1, x2, y2 ); in ReadHeader() 1183 *pPict >> y1 >> x1 >> y2 >> x2; // reading the optimal bounding rect in ReadHeader() 1184 if (x1 > x2 || y1 > y2) continue; // bad bdbox in ReadHeader() 1193 aBoundingRect=Rectangle( x1,y1, x2, y2 ); in ReadHeader()
|
/aoo41x/main/crashrep/source/win32/ |
H A D | rctemplate.txt | 79 FONT FONTSIZE, "MS Shell Dlg", 400, 0, 0x1 99 FONT FONTSIZE, "MS Shell Dlg", 400, 0, 0x1 117 FONT FONTSIZE, "MS Shell Dlg", 400, 0, 0x1 144 FONT FONTSIZE, "MS Shell Dlg", 400, 0, 0x1
|
/aoo41x/main/cppu/inc/com/sun/star/uno/ |
H A D | Reference.hxx | 376 Reference< XInterface > x1( _pInterface, UNO_QUERY ); in operator ==() local 378 return (x1._pInterface == x2._pInterface); in operator ==() 399 Reference< XInterface > x1( _pInterface, UNO_QUERY ); in operator <() local 401 return (x1._pInterface < x2._pInterface); in operator <()
|
/aoo41x/main/svl/source/numbers/ |
H A D | zformat.cxx | 2251 sal_uLong x0, y0, x1, y1; in GetOutputString() local 2269 x1 = 1; in GetOutputString() 2275 x1 = 1; in GetOutputString() 2281 x1 = 1; in GetOutputString() 2287 x1 = x0; in GetOutputString() 2309 x1--; in GetOutputString() 2326 x2 = x1 / nGgt; in GetOutputString() 2336 x1 = x2; in GetOutputString() 2347 x0 = x1; in GetOutputString() 2349 x1 = x2; in GetOutputString() [all …]
|
/aoo41x/main/soltools/mkdepend/ |
H A D | cppsetup.c | 98 pperror(tag, x0,x1,x2,x3,x4) in pperror() argument 99 int tag,x0,x1,x2,x3,x4; in pperror() 102 warning(x0,x1,x2,x3,x4);
|
/aoo41x/main/sc/source/core/tool/ |
H A D | interpr2.cxx | 1822 ScToken* x1 = static_cast<ScToken*>(p1st.get()); in ScIntersect() local 1829 ScToken* xt[2] = { x1, x2 }; in ScIntersect() 1847 x1 = xt[0], x2 = xt[1]; in ScIntersect() 1849 x1->CalcAbsIfRel( aPos); in ScIntersect() 1853 ScRefList::const_iterator end1( x1->GetRefList()->end()); in ScIntersect() 1897 ScToken* pt[2] = { x1, x2 }; in ScIntersect() 1953 formula::FormulaTokenRef x1 = PopToken(); in ScRangeFunc() local 1955 if (nGlobalError || !x2 || !x1) in ScRangeFunc() 1989 ScToken* x1 = static_cast<ScToken*>(p1st.get()); in ScUnionFunc() local 1997 xRes = x1; in ScUnionFunc() [all …]
|
/aoo41x/main/editeng/source/uno/ |
H A D | unonrule.cxx | 568 Reference< XIndexReplace > x1( Any1, UNO_QUERY ), x2( Any2, UNO_QUERY ); in Compare() local 569 if( x1.is() && x2.is() ) in Compare() 571 if( x1.get() == x2.get() ) in Compare() 574 SvxUnoNumberingRules* pRule1 = SvxUnoNumberingRules::getImplementation( x1 ); in Compare()
|
/aoo41x/main/x11_extensions/prj/ |
H A D | build.lst | 1 x1 x11_extensions : solenv NULL 2 x1 x11_extensions usr1 - u x11_mkout NULL
|
/aoo41x/main/cosv/source/unittest/ |
H A D | string_ut.cxx | 49 String x1; in classtest_String() local 50 UT_CHECK( String(), check_value(x1,"") ) in classtest_String()
|
/aoo41x/main/idlc/test/parser/ |
H A D | constant.tests | 181 module m { const unsigned short C = -0x1; }; 229 module m { const unsigned long C = -0x1; }; 277 module m { const unsigned hyper C = -0x1; };
|
/aoo41x/main/basegfx/inc/basegfx/range/ |
H A D | b2ibox.hxx | 53 B2IBox(sal_Int32 x1, in B2IBox() argument 57 maRangeX(x1), in B2IBox()
|
H A D | b2irange.hxx | 53 B2IRange(sal_Int32 x1, in B2IRange() argument 57 : maRangeX(x1), in B2IRange()
|
H A D | b2drange.hxx | 56 B2DRange(double x1, in B2DRange() argument 60 : maRangeX(x1), in B2DRange()
|