Home
last modified time | relevance | path

Searched refs:dx (Results 1 – 25 of 110) sorted by relevance

12345

/trunk/main/sdext/prj/
H A Dbuild.lst2 dx sdext usr1 - all sdext_mkout NULL
3 dx sdext\prj get - all sdext_prj NULL
4 dx sdext\source\minimizer nmake - all sdext_minimizer sdext_inc NULL
5 dx sdext\source\presenter nmake - all sdext_presenter sdext_inc NULL
6 dx sdext\inc nmake - all sdext_inc NULL
9 dx sdext\source\pdfimport\wrapper nmake - all sdext_pdfwrap sdext_inc NULL
10 dx sdext\source\pdfimport\misc nmake - all sdext_misc sdext_inc NULL
11 dx sdext\source\pdfimport\odf nmake - all sdext_odf sdext_inc NULL
12 dx sdext\source\pdfimport\pdfparse nmake - all sdext_pdfparse sdext_inc NULL
13 dx sdext\source\pdfimport\sax nmake - all sdext_sax sdext_inc NULL
[all …]
/trunk/main/svx/source/svdraw/
H A Dsvdsnpv.cxx328 long dx=NOT_SNAPPED; in SnapPos() local
344 if (Abs(a)<=mx) { dx1=-a; if (Abs(dx1)<Abs(dx)) dx=dx1; } in SnapPos()
355 if (Abs(dx1)<Abs(dx) && Abs(dy1)<Abs(dy)) { dx=dx1; dy=dy1; } in SnapPos()
370 a=x- lft ; if (Abs(a)<=mx) { dx1=-a; if (Abs(dx1)<Abs(dx)) dx=dx1; } // linker Rand in SnapPos()
371 a=x-(xs-rgt); if (Abs(a)<=mx) { dx1=-a; if (Abs(dx1)<Abs(dx)) dx=dx1; } // rechter Rand in SnapPos()
403 dx=-dx1; in SnapPos()
417 if (Abs(x-aLog.Left ())<=mx) { dx1=-(x-aLog.Left ()); if (Abs(dx1)<Abs(dx)) dx=dx1; } in SnapPos()
418 if (Abs(x-aLog.Right ())<=mx) { dx1=-(x-aLog.Right ()); if (Abs(dx1)<Abs(dx)) dx=dx1; } in SnapPos()
442 dx = 0; in SnapPos()
461 if (dx==NOT_SNAPPED) dx=0; else bRet|=SDRSNAP_XSNAPPED; in SnapPos()
[all …]
H A Dsvddrag.cxx110 long dx=rPnt.X()-GetPrev().X(); if (dx<0) dx=-dx; in CheckMinMoved() local
112 if (dx>=long(nMinMov) || dy>=long(nMinMov)) in CheckMinMoved()
H A Dsvdtrans.cxx169 long dx=rRef1.X()-rPnt.X(); in MirrorPoint() local
170 rPnt.X()+=2*dx; in MirrorPoint()
667 long dx=rPt.X()-rPt0.X(); in OrthoDistance8() local
669 long dxa=Abs(dx); in OrthoDistance8()
671 if (dx==0 || dy==0 || dxa==dya) return; in OrthoDistance8()
677 rPt.X()=rPt0.X()+(dya* (dx>=0 ? 1 : -1) ); in OrthoDistance8()
683 long dx=rPt.X()-rPt0.X(); in OrthoDistance4() local
685 long dxa=Abs(dx); in OrthoDistance4()
690 rPt.X()=rPt0.X()+(dya* (dx>=0 ? 1 : -1) ); in OrthoDistance4()
H A Dsvdpntv.cxx1373 long dx=0,dy=0; in MakeVisible() local
1378 if (l>rRect.Left()) dx=rRect.Left()-l; in MakeVisible()
1379 else if (r<rRect.Right()) dx=rRect.Right()-r; in MakeVisible()
1382 aMap.SetOrigin(Point(aOrg.X()-dx,aOrg.Y()-dy)); in MakeVisible()
1384 if (dx!=0 || dy!=0) { in MakeVisible()
1385 rWin.Scroll(-dx,-dy); in MakeVisible()
H A Dsvdomeas.cxx487 long dx= Round(nLineDist*nHlpCos); in ImpCalcGeometrics() local
505 Point aMainlinePt1(aP1.X()+dx,aP1.Y()+dy); in ImpCalcGeometrics()
506 Point aMainlinePt2(aP2.X()+dx,aP2.Y()+dy); in ImpCalcGeometrics()
1050 long dx=aPt2.X()-aPt1.X(); in NbcRotate() local
1052 dx=BigMulDiv(dx,nLen0,nLen1); in NbcRotate()
1055 aPt1.X()=aPt2.X()-dx; in NbcRotate()
1058 aPt2.X()=aPt1.X()+dx; in NbcRotate()
/trunk/main/sc/source/ui/drawfunc/
H A Dfupoor.cxx123 SCsCOL dx = 0; in ForceScroll() local
126 if ( aPixPos.X() <= 0 ) dx = -1; in ForceScroll()
127 if ( aPixPos.X() >= aSize.Width() ) dx = 1; in ForceScroll()
133 dx = -dx; in ForceScroll()
136 if ( dx > 0 && pViewData->GetHSplitMode() == SC_SPLIT_FIX && WhichH(eWhich) == SC_SPLIT_LEFT ) in ForceScroll()
140 dx = 0; in ForceScroll()
149 if ( dx != 0 || dy != 0 ) in ForceScroll()
152 pViewShell->ScrollLines(2*dx, 4*dy); in ForceScroll()
/trunk/main/scripting/java/com/sun/star/script/framework/provider/beanshell/
H A DPlainSourceView.java224 int dx = x; in drawArrow() local
227 arrow.addPoint(dx, dy + 3); in drawArrow()
228 arrow.addPoint(dx + 5, dy + 3); in drawArrow()
229 for (x = dx + 5; x <= dx + 10; x++, y++) { in drawArrow()
232 for (x = dx + 9; x >= dx + 5; x--, y++) { in drawArrow()
235 arrow.addPoint(dx + 5, dy + 7); in drawArrow()
236 arrow.addPoint(dx, dy + 7); in drawArrow()
/trunk/main/scripting/examples/java/debugger/
H A DOOBeanShellDebugger.java375 int dx = x; in drawArrow() local
378 arrow.addPoint(dx, dy + 3); in drawArrow()
379 arrow.addPoint(dx + 5, dy + 3); in drawArrow()
380 for (x = dx + 5; x <= dx + 10; x++, y++) { in drawArrow()
383 for (x = dx + 9; x >= dx + 5; x--, y++) { in drawArrow()
386 arrow.addPoint(dx + 5, dy + 7); in drawArrow()
387 arrow.addPoint(dx, dy + 7); in drawArrow()
/trunk/main/svtools/source/filter/
H A Dsgvspln.cxx640 double* bx, double* cx, double* dx, in ParaSpline() argument
690 Error=PeriodicSpline(n,T,x,bx,cx,dx); in ParaSpline()
695 Error=NaturalSpline(n,T,x,alphX,betX,MargCond,bx,cx,dx); in ParaSpline()
726 double*& cx, double*& cy, double*& dx, double*& dy, double*& T) in CalcSpline() argument
763 dx=new double[n+1]; in CalcSpline()
776 bRet = ParaSpline(n,ax,ay,Marg,Marg01,Marg01,MargN1,MargN2,sal_False,T,bx,cx,dx,by,cy,dy) == 0; in CalcSpline()
786 delete[] dx; in CalcSpline()
823 double* dx; in Spline2Poly() local
837 bOk=CalcSpline(rSpln,Periodic,n,ax,ay,bx,by,cx,cy,dx,dy,tv); in Spline2Poly()
851 x=long(ax[i]+bx[i]*dt1+cx[i]*dt2+dx[i]*dt3); in Spline2Poly()
[all …]
H A Dsgvmain.cxx119 sal_Int16 dx,dy; in RotatePoint() local
121 dx=P.x-cx; in RotatePoint()
123 x1=dx*cs-dy*sn; in RotatePoint()
124 y1=dy*cs+dx*sn; in RotatePoint()
131 sal_Int16 dx,dy; in RotatePoint() local
133 dx=(sal_Int16)(P.X()-cx); in RotatePoint()
135 x1=dx*cs-dy*sn; in RotatePoint()
136 y1=dy*cs+dx*sn; in RotatePoint()
475 sal_Int32 dx,dy; in DrawSlideRect() local
526 dx=x2-x1+1; in DrawSlideRect()
[all …]
/trunk/main/chart2/source/view/charttypes/
H A DSplines.cxx433 double dx = 0.0; in createParameterT() local
439 dx = aUniquePoints[i].first - aUniquePoints[i-1].first; in createParameterT()
442 fDiffMax = (fabs(dx)>fabs(dy)) ? fabs(dx) : fabs(dy); in createParameterT()
450 dx /= fDiffMax; in createParameterT()
452 fDenominator += sqrt(sqrt(dx * dx + dy * dy)) * sqrt(fDiffMax); in createParameterT()
466 dx = aUniquePoints[i].first - aUniquePoints[i-1].first; in createParameterT()
468 fDiffMax = (abs(dx)>abs(dy)) ? abs(dx) : abs(dy); in createParameterT()
470 dx /= fDiffMax; in createParameterT()
472 fNumerator += sqrt(sqrt(dx * dx + dy * dy)) * sqrt(fDiffMax); in createParameterT()
/trunk/main/basegfx/source/workbench/
H A Dconvexhull.cxx38 typename PointType::value_type dx, dy, ax, ay; in theta() local
41 dx = p2.x - p1.x; ax = absval( dx ); in theta()
44 if( dx < 0 ) in theta()
/trunk/main/vcl/source/glyphs/
H A Dgcach_rbmp.cxx49 int xmax, int ymax, int dx, int dy, int nPad ) in ImplRotate8_90() argument
53 for( int x = xmax; --x >= 0; p2 += dx ) in ImplRotate8_90()
92 int xmax, int ymax, int dx, int nShift, int nDeltaShift, int nPad ) in ImplRotate1_90() argument
98 for( int x = xmax; --x >= 0; p2 += dx ) in ImplRotate1_90()
H A Dgraphite_layout.cxx1503 const long dx = nNewPos - mvGlyphs[nGlyphIndex].maLinearPos.X(); in MoveGlyph() local
1505 if (dx == 0) return; in MoveGlyph()
1508 …ld\n", nGlyphIndex, mvGlyphs[nGlyphIndex].maLinearPos.X(), nNewPos, mvGlyph2Char[nGlyphIndex], dx); in MoveGlyph()
1512 mvGlyphs[gi].maLinearPos.X() += dx; in MoveGlyph()
1515 mnWidth += dx; in MoveGlyph()
/trunk/main/basebmp/inc/basebmp/
H A Dpixeliterator.hxx231 pointer current(int dx, int dy) const in current() argument
233 return y(dy) + x+dx; in current()
338 reference operator()(int dx, int dy) const in operator ()() argument
340 return *current(dx,dy); in operator ()()
/trunk/main/sc/source/core/tool/
H A Daddress.cxx1886 bool ScAddress::Move( SCsCOL dx, SCsROW dy, SCsTAB dz, ScDocument* pDoc ) in Move() argument
1889 dx = Col() + dx; in Move()
1893 if( dx < 0 ) in Move()
1894 dx = 0, bValid = sal_False; in Move()
1895 else if( dx > MAXCOL ) in Move()
1896 dx = MAXCOL, bValid =sal_False; in Move()
1905 Set( dx, dy, dz ); in Move()
1910 bool ScRange::Move( SCsCOL dx, SCsROW dy, SCsTAB dz, ScDocument* pDoc ) in Move() argument
1913 return aStart.Move( dx, dy, dz, pDoc ) & aEnd.Move( dx, dy, dz, pDoc ); in Move()
H A Dinterpr3.cxx2703 double dx = 0.0; in ScKurt() local
2714 dx = (values[i] - fMean) / fStdDev; in ScKurt()
2715 xpower4 = xpower4 + (dx * dx * dx * dx); in ScKurt()
3101 double dx = 0.0; in ScSkew() local
3112 dx = (values[i] - fMean) / fStdDev; in ScSkew()
3113 xcube = xcube + (dx * dx * dx); in ScSkew()
/trunk/main/svx/inc/svx/
H A Dsvdtrans.hxx134 long dx=rPnt.X()-rRef.X(); in RotatePoint() local
136 rPnt.X()=Round(rRef.X()+dx*cs+dy*sn); in RotatePoint()
137 rPnt.Y()=Round(rRef.Y()+dy*cs-dx*sn); in RotatePoint()
161 long dx=rCenter.X()-rPnt.X(); in GetCrookAngle() local
162 nWink=(double)dx/(double)rRad.X(); in GetCrookAngle()
/trunk/main/filter/source/flash/
H A Dswfwriter1.cxx192 void Writer::Impl_addShapeRecordChange( BitStream& rBits, sal_Int16 dx, sal_Int16 dy, sal_Bool bFil… in Impl_addShapeRecordChange() argument
201 sal_uInt16 nMoveBits = max( getMaxBitsSigned( dx ), getMaxBitsSigned( dy ) ); in Impl_addShapeRecordChange()
205 rBits.writeSB( dx, nMoveBits ); // DeltaX in Impl_addShapeRecordChange()
215 void Writer::Impl_addStraightEdgeRecord( BitStream& rBits, sal_Int16 dx, sal_Int16 dy ) in Impl_addStraightEdgeRecord() argument
220 sal_uInt16 nBits = max( getMaxBitsSigned( dx ), getMaxBitsSigned( dy ) ); in Impl_addStraightEdgeRecord()
224 if( (dx != 0) && (dy != 0) ) in Impl_addStraightEdgeRecord()
227 rBits.writeSB( dx, nBits ); // DeltaX in Impl_addStraightEdgeRecord()
233 rBits.writeUB( ( dx == 0 ), 1 ); in Impl_addStraightEdgeRecord()
234 if( dx == 0 ) in Impl_addStraightEdgeRecord()
240 rBits.writeSB( dx, nBits ); // DeltaX in Impl_addStraightEdgeRecord()
/trunk/main/sd/source/ui/func/
H A Dfupoor.cxx203 short dx = 0, dy = 0; in ForceScroll() local
205 if ( aPos.X() <= rRect.Left() ) dx = -1; in ForceScroll()
206 if ( aPos.X() >= rRect.Right() ) dx = 1; in ForceScroll()
210 if ( dx != 0 || dy != 0 ) in ForceScroll()
216 mpViewShell->ScrollLines(dx, dy); in ForceScroll()
/trunk/main/vcl/source/window/
H A Dsplitwin.cxx2031 int dx = 1; in ImplDrawFadeArrow() local
2035 dx = -1; in ImplDrawFadeArrow()
2042 DrawPixel( Point(x+dx, y+1), aCol ); in ImplDrawFadeArrow()
2043 DrawPixel( Point(x+dx, y+5), aCol ); in ImplDrawFadeArrow()
2044 DrawPixel( Point(x+dx+dx, y+2), aCol ); in ImplDrawFadeArrow()
2045 DrawPixel( Point(x+dx+dx, y+4), aCol ); in ImplDrawFadeArrow()
2046 DrawPixel( Point(x+dx+dx+dx, y+3), aCol ); in ImplDrawFadeArrow()
2051 DrawPixel( Point(x+dx, y+2), aCol ); in ImplDrawFadeArrow()
2052 DrawPixel( Point(x+dx, y+4), aCol ); in ImplDrawFadeArrow()
2053 DrawPixel( Point(x+dx+dx, y+3), aCol ); in ImplDrawFadeArrow()
/trunk/main/filter/source/graphicfilter/icgm/
H A Dclass4.cxx211 double dx, dy; in ImplDoClass4() local
220 dx = ImplGetFloat( pElement->eVDCRealPrecision, pElement->nVDCRealSize ); in ImplDoClass4()
225 dx = (double)ImplGetI( pElement->nVDCIntegerPrecision ); in ImplDoClass4()
228 ImplMapDouble( dx ); in ImplDoClass4()
240 awt::Size aSize((long)dx, (long)dy); in ImplDoClass4()
/trunk/test/testcommon/source/org/openoffice/test/vcl/
H A DTester.java106 int dx = toX > fromX ? 1 : -1; in drag() local
112 if( sx == 0) sx = dx; in drag()
118 if( ((x - toX) * dx) > 0) in drag()
/trunk/main/canvas/source/directx/
H A Ddx_textlayout.cxx223 inline Gdiplus::PointF gdiPlusPointFromDx( const double& dx ) in gdiPlusPointFromDx() argument
225 return Gdiplus::PointF( static_cast<Gdiplus::REAL>(dx), in gdiPlusPointFromDx()

Completed in 329 milliseconds

12345