Home
last modified time | relevance | path

Searched refs:fEnd (Results 1 – 23 of 23) sorted by path

/trunk/main/basegfx/inc/basegfx/curve/
H A Db2dcubicbezier.hxx171 B2DCubicBezier snippet(double fStart, double fEnd) const;
/trunk/main/basegfx/inc/basegfx/polygon/
H A Db2dpolygontools.hxx325 …seSegment( const B2DPoint& rCenter, double fRadiusX, double fRadiusY, double fStart, double fEnd );
327 … BASEGFX_DLLPUBLIC B2DPolygon createPolygonFromUnitEllipseSegment( double fStart, double fEnd );
473 …fGivenLength(const B2DPolygon& rCandidate, double fLength, double fStart = 0.0, double fEnd = 0.0);
/trunk/main/basegfx/source/curve/
H A Db2dcubicbezier.cxx846 B2DCubicBezier B2DCubicBezier::snippet(double fStart, double fEnd) const in snippet()
859 if(fTools::more(fEnd, 1.0)) in snippet()
861 fEnd = 1.0; in snippet()
863 else if(fTools::less(fEnd, 0.0)) in snippet()
865 fEnd = 0.0; in snippet()
868 if(fEnd <= fStart) in snippet()
871 const double fSplit((fEnd + fStart) * 0.5); in snippet()
884 const bool bEndIsOne(fTools::equal(fEnd, 1.0)); in snippet()
890 aRetval.split(fEnd, &aRetval, 0); in snippet()
894 fStart /= fEnd; in snippet()
[all …]
/trunk/main/basegfx/source/polygon/
H A Db2dpolygontools.cxx1998 if(fTools::less(fEnd, 0.0)) in createPolygonFromUnitEllipseSegment()
2000 fEnd = 0.0; in createPolygonFromUnitEllipseSegment()
2003 if(fTools::moreOrEqual(fEnd, F_2PI)) in createPolygonFromUnitEllipseSegment()
2005 fEnd = 0.0; in createPolygonFromUnitEllipseSegment()
2008 if(fTools::equal(fStart, fEnd)) in createPolygonFromUnitEllipseSegment()
2028 const B2DPoint aSegEnd(cos(fEnd), sin(fEnd)); in createPolygonFromUnitEllipseSegment()
2068 aSegEnd = B2DPoint(cos(fEnd), sin(fEnd)); in createPolygonFromUnitEllipseSegment()
3374 if(fEnd < 0.0) in createEdgesOfGivenLength()
3376 fEnd = 0.0; in createEdgesOfGivenLength()
3379 if(fEnd < fStart) in createEdgesOfGivenLength()
[all …]
/trunk/main/bridges/test/
H A Dtestclient.cxx111 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testLatency() local
113 printf( "System latency per call : %g\n" , (( fEnd-fStart )/2.) / ((double)(nLoop)) ); in testLatency()
H A Dtestcomp.cxx501 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in getCallsPerSec() local
502 return fEnd-fStart; in getCallsPerSec()
524 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in getCallsPerSecOneway() local
527 return fEnd-fStart; in getCallsPerSecOneway()
544 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testOnewayPerformanceOnTwoInterfaces() local
546 printf( "Overhead per Call [ms] %g\n" , ((fEnd-fStart)/((double)nLoops/1000 ))/2. ); in testOnewayPerformanceOnTwoInterfaces()
/trunk/main/drawinglayer/source/primitive2d/
H A Dpolygonprimitive2d.cxx538 double fEnd(0.0); in create2DDecomposition() local
559 fPolyLength, getEnd().isCentered() ? 0.5 : 0.0, &fEnd); in create2DDecomposition()
565 if(0.0 != fStart || 0.0 != fEnd) in create2DDecomposition()
568 …ls::getSnippetAbsolute(aLocalPolygon, fStart-fStartOverlap, fPolyLength - fEnd + fEndOverlap, fPol… in create2DDecomposition()
/trunk/main/drawinglayer/source/processor2d/
H A Dvclmetafileprocessor2d.cxx395 double fEnd(0.0); in impTryToCreateSvtGraphicStroke() local
415 fPolyLength, pEnd->isCentered() ? 0.5 : 0.0, &fEnd); in impTryToCreateSvtGraphicStroke()
418 if(0.0 != fStart || 0.0 != fEnd) in impTryToCreateSvtGraphicStroke()
421 …lygon = basegfx::tools::getSnippetAbsolute(aLocalPolygon, fStart, fPolyLength - fEnd, fPolyLength); in impTryToCreateSvtGraphicStroke()
/trunk/main/extensions/test/sax/
H A Dtestsax.cxx814 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local
816 printf( "Performance reading : %g s\n" , fEnd - fStart ); in testPerformance()
H A Dtestwriter.cxx765 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local
767 printf( "Performance writing : %g s\n" , fEnd - fStart ); in testPerformance()
/trunk/main/filter/source/graphicfilter/idxf/
H A Ddxf2mtf.cxx350 fdA=rE.fEnd-fA1; in DrawArcEntity()
H A Ddxfentrd.cxx131 fEnd=360.0; in DXFArcEntity()
142 case 51: fEnd=rDGR.GetF(); break; in EvaluateGroup()
H A Ddxfentrd.hxx164 double fEnd; // 51 member in DXFArcEntity
/trunk/main/filter/source/graphicfilter/ios2met/
H A Dios2met.cxx1118 double fStart, fEnd; in ReadPartialArc() local
1143 fEnd=fStart+((double)nSweep)/65536.0/180.0*3.14159265359; in ReadPartialArc()
1146 aPEnd= Point(aCenter.X()+(long)( cos(fEnd)*nP), in ReadPartialArc()
1147 aCenter.Y()+(long)(-sin(fEnd)*nQ)); in ReadPartialArc()
/trunk/main/oox/inc/oox/helper/
H A Dhelper.hxx130 inline ReturnType getDoubleIntervalValue( double fValue, double fBegin, double fEnd ) in getDoubleIntervalValue() argument
132 double fInterval = fEnd - fBegin; in getDoubleIntervalValue()
/trunk/main/sax/test/sax/
H A Dtestsax.cxx746 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local
748 printf( "Performance reading : %g s\n" , fEnd - fStart ); in testPerformance()
H A Dtestwriter.cxx690 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local
692 printf( "Performance writing : %g s\n" , fEnd - fStart ); in testPerformance()
/trunk/main/sc/source/filter/xml/
H A Dxmldpimp.cxx889 fEnd(0.0), in ScXMLDataPilotFieldContext()
1039 aInfo.End = fEnd; in EndElement()
1617 double fEnd(0.0); in ScXMLDataPilotGroupsContext() local
1655 GetScImport().GetMM100UnitConverter().convertDateTime(fEnd, sValue); in ScXMLDataPilotGroupsContext()
1675 GetScImport().GetMM100UnitConverter().convertDouble(fEnd, sValue); in ScXMLDataPilotGroupsContext()
1699 …pDataPilotField->SetGrouping(sGroupSource, fStart, fEnd, fStep, nGroupPart, bDateValue, bAutoStart… in ScXMLDataPilotGroupsContext()
H A Dxmldpimp.hxx336 double fEnd; member in ScXMLDataPilotFieldContext
384 fEnd = rEnd; in SetGrouping()
/trunk/main/svx/source/sdr/contact/
H A Dviewcontactofsdrcircobj.cxx94 const double fEnd(((36000 - nNewStart) % 36000) * F_PI18000); in createViewIndependentPrimitive2DSequence() local
103 fEnd, in createViewIndependentPrimitive2DSequence()
/trunk/main/svx/source/svdraw/
H A Dsvdocirc.cxx238 const double fEnd((((36000 - nStart) % 36000) / 18000.0) * F_PI); in ImpCalcXPolyCirc() local
243 fStart, fEnd); in ImpCalcXPolyCirc()
H A Dsvdotextdecomposition.cxx403 double fEnd(0.0); in impCreateTextPortionPrimitive() local
412 fEnd = aDXArray[nEnd - 1]; in impCreateTextPortionPrimitive()
415 if(!basegfx::fTools::equal(fStart, fEnd)) in impCreateTextPortionPrimitive()
425 fEnd = fTextWidth - fEnd; in impCreateTextPortionPrimitive()
436 fEnd /= fFontScaleX; in impCreateTextPortionPrimitive()
442 fEnd, in impCreateTextPortionPrimitive()
/trunk/main/tools/source/generic/
H A Dpoly.cxx575 double fEnd = ImplGetAngle( aCenter, rEnd ); in Polygon() local
576 double fDiff = fEnd - fStart; in Polygon()

Completed in 142 milliseconds