/aoo42x/main/basegfx/source/curve/ |
H A D | b2dcubicbezier.cxx | 846 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 …]
|
/aoo42x/main/basegfx/source/polygon/ |
H A D | b2dpolygontools.cxx | 1998 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 …]
|
/aoo42x/main/bridges/test/ |
H A D | testcomp.cxx | 501 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()
|
H A D | testclient.cxx | 111 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()
|
/aoo42x/main/svx/source/svdraw/ |
H A D | svdotextdecomposition.cxx | 403 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()
|
H A D | svdocirc.cxx | 238 const double fEnd((((36000 - nStart) % 36000) / 18000.0) * F_PI); in ImpCalcXPolyCirc() local 243 fStart, fEnd); in ImpCalcXPolyCirc()
|
/aoo42x/main/drawinglayer/source/primitive2d/ |
H A D | polygonprimitive2d.cxx | 538 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()
|
/aoo42x/main/basegfx/inc/basegfx/polygon/ |
H A D | b2dpolygontools.hxx | 325 …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);
|
/aoo42x/main/svx/source/sdr/contact/ |
H A D | viewcontactofsdrcircobj.cxx | 94 const double fEnd(((36000 - nNewStart) % 36000) * F_PI18000); in createViewIndependentPrimitive2DSequence() local 103 fEnd, in createViewIndependentPrimitive2DSequence()
|
/aoo42x/main/sc/source/filter/xml/ |
H A D | xmldpimp.cxx | 889 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 D | xmldpimp.hxx | 336 double fEnd; member in ScXMLDataPilotFieldContext 384 fEnd = rEnd; in SetGrouping()
|
/aoo42x/main/oox/inc/oox/helper/ |
H A D | helper.hxx | 130 inline ReturnType getDoubleIntervalValue( double fValue, double fBegin, double fEnd ) in getDoubleIntervalValue() argument 132 double fInterval = fEnd - fBegin; in getDoubleIntervalValue()
|
/aoo42x/main/drawinglayer/source/processor2d/ |
H A D | vclmetafileprocessor2d.cxx | 395 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()
|
/aoo42x/main/sax/test/sax/ |
H A D | testwriter.cxx | 690 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local 692 printf( "Performance writing : %g s\n" , fEnd - fStart ); in testPerformance()
|
H A D | testsax.cxx | 746 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local 748 printf( "Performance reading : %g s\n" , fEnd - fStart ); in testPerformance()
|
/aoo42x/main/extensions/test/sax/ |
H A D | testwriter.cxx | 765 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local 767 printf( "Performance writing : %g s\n" , fEnd - fStart ); in testPerformance()
|
H A D | testsax.cxx | 814 double fEnd = (double)aEndTime.Seconds + ((double)aEndTime.Nanosec / 1000000000.0); in testPerformance() local 816 printf( "Performance reading : %g s\n" , fEnd - fStart ); in testPerformance()
|
/aoo42x/main/basegfx/inc/basegfx/curve/ |
H A D | b2dcubicbezier.hxx | 171 B2DCubicBezier snippet(double fStart, double fEnd) const;
|
/aoo42x/main/filter/source/graphicfilter/idxf/ |
H A D | dxfentrd.cxx | 131 fEnd=360.0; in DXFArcEntity() 142 case 51: fEnd=rDGR.GetF(); break; in EvaluateGroup()
|
H A D | dxfentrd.hxx | 164 double fEnd; // 51 member in DXFArcEntity
|
H A D | dxf2mtf.cxx | 350 fdA=rE.fEnd-fA1; in DrawArcEntity()
|
/aoo42x/main/filter/source/graphicfilter/ios2met/ |
H A D | ios2met.cxx | 1118 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()
|
/aoo42x/main/tools/source/generic/ |
H A D | poly.cxx | 575 double fEnd = ImplGetAngle( aCenter, rEnd ); in Polygon() local 576 double fDiff = fEnd - fStart; in Polygon()
|