Home
last modified time | relevance | path

Searched refs:x1 (Results 1 – 25 of 131) sorted by relevance

123456

/trunk/main/tools/inc/tools/
H A Ddebug.hxx500 #define DBG_TRACE1( aTrace, x1 ) \ argument
506 x1 ); \
509 #define DBG_TRACE2( aTrace, x1, x2 ) \ argument
515 x1, x2 ); \
518 #define DBG_TRACE3( aTrace, x1, x2, x3 ) \ argument
524 x1, x2, x3 ); \
527 #define DBG_TRACE4( aTrace, x1, x2, x3, x4 ) \ argument
533 x1, x2, x3, x4 ); \
536 #define DBG_TRACE5( aTrace, x1, x2, x3, x4, x5 ) \ argument
542 x1, x2, x3, x4, x5 ); \
[all …]
/trunk/main/canvas/source/tools/
H A Dsurfacerect.hxx63 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()
110 if(r.hLineIntersect(x1,x2,y2)) return true; in intersection()
111 if(r.vLineIntersect(x1,y1,y2)) return true; in intersection()
[all …]
H A Dsurface.cxx362 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()
/trunk/main/svtools/source/filter/
H A Dsgvmain.cxx120 double x1,y1; in RotatePoint() local
123 x1=dx*cs-dy*sn; in RotatePoint()
125 P.x=cx+sal_Int16(x1); in RotatePoint()
132 double x1,y1; in RotatePoint() local
135 x1=dx*cs-dy*sn; in RotatePoint()
137 P=Point(cx+sal_Int16(x1),cy+sal_Int16(y1)); in RotatePoint()
467 void DrawSlideRect(sal_Int16 x1, sal_Int16 y1, sal_Int16 x2, sal_Int16 y2, ObjAreaType& F, OutputDe… in DrawSlideRect() argument
478 if (x1>x2) { i=x1; x1=x2; x2=i; } in DrawSlideRect()
484 rOut.DrawRect(Rectangle(x1,y1,x2,y2)); in DrawSlideRect()
495 rOut.DrawRect(Rectangle(x1,i0,x2,i-1)); in DrawSlideRect()
[all …]
/trunk/main/stoc/source/security/
H A Daccess_controller.cxx94 Reference< security::XAccessControlContext > const & x1,
103 Reference< security::XAccessControlContext > const & x1,
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()
157 Reference< security::XAccessControlContext > const & x1,
166 Reference< security::XAccessControlContext > const & x1,
[all …]
/trunk/main/filter/source/graphicfilter/ios2met/
H A Dios2met.cxx1022 double x1,y1,x2,y2,x3,y3,p,q,cx,cy,ncx,ncy,r,rx,ry,w1,w3; in ReadArc() local
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()
1052 w1=fmod((atan2(x1-cx,y1-cy)-atan2(x2-cx,y2-cy)),6.28318530718); if (w1<0) w1+=6.28318530718; in ReadArc()
2090 long x1,y1,x2,y2,nt,xr,yr; in ReadDsc() local
[all …]
/trunk/main/cppuhelper/test/
H A Dtestpropshlp.cxx815 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 …]
/trunk/main/toolkit/source/awt/
H A Dvclxgraphics.cxx389 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()
/trunk/main/svx/source/svdraw/
H A Dsvdpagv.cxx580 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()
/trunk/main/basebmp/inc/basebmp/
H A Dclippedlinerenderer.hxx226 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 Dlinerenderer.hxx79 const sal_Int32 x1 = rPt1.getX(); in renderLine() local
85 sal_Int32 adx = x2 - x1; in renderLine()
103 sal_Int32 xs = x1; in renderLine()
/trunk/main/vcl/source/fontsubset/
H A Dsft.cxx89 int x1, y1; member
94 x1( 0 ), y1( 0 ), in PSPathElement()
887 int x0 = 0, y0 = 0, x1 = 0, y1 = 0, x2, y2, curx, cury; in BSplineToPSPath() local
914 p.x1 = x0 = (srcA[cp].x + srcA[EndContour].x + 1) / 2; in BSplineToPSPath()
917 p.x1 = x0 = srcA[EndContour].x; in BSplineToPSPath()
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()
[all …]
/trunk/main/filter/source/graphicfilter/ipict/
H A Dipict.cxx1079 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()
/trunk/main/svl/source/numbers/
H A Dzformat.cxx2251 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()
2290 double fOg = (double) x1 / (double) y1; in GetOutputString()
2304 double fTest = (double)x1/(double)y1; in GetOutputString()
2309 x1--; in GetOutputString()
2310 fTest = (double)x1/(double)y1; in GetOutputString()
2315 fTest = (double)x1/(double)y1; in GetOutputString()
[all …]
/trunk/main/cppu/inc/com/sun/star/uno/
H A DReference.hxx376 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 <()
/trunk/main/sc/source/core/tool/
H A Dinterpr2.cxx1820 ScToken* x1 = static_cast<ScToken*>(p1st.get()); in ScIntersect() local
1827 ScToken* xt[2] = { x1, x2 }; in ScIntersect()
1845 x1 = xt[0], x2 = xt[1]; in ScIntersect()
1847 x1->CalcAbsIfRel( aPos); in ScIntersect()
1851 ScRefList::const_iterator end1( x1->GetRefList()->end()); in ScIntersect()
1853 for (ScRefList::const_iterator it1( x1->GetRefList()->begin()); in ScIntersect()
1895 ScToken* pt[2] = { x1, x2 }; in ScIntersect()
1951 formula::FormulaTokenRef x1 = PopToken(); in ScRangeFunc() local
1953 if (nGlobalError || !x2 || !x1) in ScRangeFunc()
1958 FormulaTokenRef xRes = ScToken::ExtendRangeReference( *x1, *x2, aPos, false); in ScRangeFunc()
[all …]
/trunk/main/soltools/mkdepend/
H A Dcppsetup.c98 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);
/trunk/main/editeng/source/uno/
H A Dunonrule.cxx568 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()
/trunk/main/x11_extensions/prj/
H A Dbuild.lst1 x1 x11_extensions : solenv NULL
2 x1 x11_extensions\prj nmake - all x11_prj NULL
/trunk/main/autodoc/source/cosv/unittest/
H A Dstring_ut.cxx49 String x1; in classtest_String() local
50 UT_CHECK( String(), check_value(x1,"") ) in classtest_String()
/trunk/main/idlc/test/parser/
H A Dconstant.tests181 module m { const unsigned short C = -0x1; };
229 module m { const unsigned long C = -0x1; };
277 module m { const unsigned hyper C = -0x1; };
/trunk/main/basegfx/inc/basegfx/range/
H A Db2ibox.hxx54 B2IBox(sal_Int32 x1, in B2IBox() argument
58 maRangeX(x1), in B2IBox()
H A Db2irange.hxx54 B2IRange(sal_Int32 x1, in B2IRange() argument
58 : maRangeX(x1), in B2IRange()
H A Db2drange.hxx57 B2DRange(double x1, in B2DRange() argument
61 : maRangeX(x1), in B2DRange()
/trunk/main/reportdesign/source/filter/xml/
H A DxmlExport.cxx605 sal_Int32 x1 = 0; in exportSectionAutoStyle() local
620 x1 = (::std::find(aColumnPos.begin(),aColumnPos.end(),nPos) - aColumnPos.begin()); in exportSectionAutoStyle()
637 xi = x1; in exportSectionAutoStyle()
654 xi = x1; in exportSectionAutoStyle()
664 if (x2 - x1 != 0 && y2 - y1 != 0) in exportSectionAutoStyle()
670 sal_Int32 nColSpan = x2 - x1; in exportSectionAutoStyle()
672 aInsert->second[y1].second[x1] = in exportSectionAutoStyle()

123456