/aoo42x/main/oox/source/helper/ |
H A D | progressbar.cxx | 99 virtual ISegmentProgressBarRef createSegment( double fLength ); 114 mfLength( fLength ), in SubSegment() 137 ISegmentProgressBarRef SubSegment::createSegment( double fLength ) in createSegment() argument 139 …OSL_ENSURE( (0.0 < fLength) && (fLength <= getFreeLength()), "SubSegment::createSegment - invalid … in createSegment() 140 fLength = getLimitedValue< double >( fLength, 0.0, getFreeLength() ); in createSegment() 141 ISegmentProgressBarRef xSegment( new prv::SubSegment( *this, mfFreeStart, fLength ) ); in createSegment() 142 mfFreeStart += fLength; in createSegment() 171 ISegmentProgressBarRef SegmentProgressBar::createSegment( double fLength ) in createSegment() argument 173 …OSL_ENSURE( (0.0 < fLength) && (fLength <= getFreeLength()), "SegmentProgressBar::createSegment - … in createSegment() 174 fLength = getLimitedValue< double >( fLength, 0.0, getFreeLength() ); in createSegment() [all …]
|
/aoo42x/main/basegfx/source/curve/ |
H A D | b2dbeziertools.cxx | 59 double fLength(0.0); in B2DCubicBezierHelper() local 66 fLength += aEdge.getLength(); in B2DCubicBezierHelper() 67 maLengthArray.push_back(fLength); in B2DCubicBezierHelper() 78 fLength += aLastEdge.getLength(); in B2DCubicBezierHelper() 79 maLengthArray.push_back(fLength); in B2DCubicBezierHelper() 99 const double fLength(getLength()); in distanceToRelative() local 101 if(fTools::moreOrEqual(fDistance, fLength)) in distanceToRelative() 111 return fDistance / fLength; in distanceToRelative() 131 const double fLength(getLength()); in relativeToDistance() local 135 return fLength; in relativeToDistance() [all …]
|
/aoo42x/main/basegfx/source/polygon/ |
H A D | b3dpolygontools.cxx | 267 B3DPoint getPositionAbsolute(const B3DPolygon& rCandidate, double fDistance, double fLength) in getPositionAbsolute() argument 280 if(fTools::equalZero(fLength)) in getPositionAbsolute() 282 fLength = getLength(rCandidate); in getPositionAbsolute() 291 sal_uInt32 nCount(sal_uInt32(-fDistance / fLength)); in getPositionAbsolute() 292 fDistance += double(nCount + 1L) * fLength; in getPositionAbsolute() 303 if(fTools::moreOrEqual(fDistance, fLength)) in getPositionAbsolute() 308 sal_uInt32 nCount(sal_uInt32(fDistance / fLength)); in getPositionAbsolute() 309 fDistance -= (double)(nCount) * fLength; in getPositionAbsolute() 369 if(fTools::equalZero(fLength)) in getPositionRelative() 371 fLength = getLength(rCandidate); in getPositionRelative() [all …]
|
H A D | b2dpolygontools.cxx | 645 if(fTools::equalZero(fLength)) in getPositionAbsolute() 769 if(fTools::equalZero(fLength)) in getPositionRelative() 771 fLength = getLength(rCandidate); in getPositionRelative() 776 return getPositionAbsolute(rCandidate, fDistance * fLength, fLength); in getPositionRelative() 800 fTo = fLength; in getSnippetAbsolute() 978 if(fTools::equalZero(fLength)) in getSnippetRelative() 980 fLength = getLength(rCandidate); in getSnippetRelative() 985 return getSnippetAbsolute(rCandidate, fFrom * fLength, fTo * fLength, fLength); in getSnippetRelative() 3362 if(fLength < 0.0) in createEdgesOfGivenLength() 3364 fLength = 0.0; in createEdgesOfGivenLength() [all …]
|
H A D | b2dlinegeometry.cxx | 444 const double fLength(aEdge.getLength()); in createAreaGeometryForEdge() local 445 const double fScale(bIsEdgeLengthZero ? 1.0 : fLength / fEdgeLength); in createAreaGeometryForEdge() 507 const double fLength(aEdge.getLength()); in createAreaGeometryForEdge() local 508 const double fScale(bIsEdgeLengthZero ? 1.0 : fLength / fEdgeLength); in createAreaGeometryForEdge()
|
/aoo42x/main/basegfx/inc/basegfx/polygon/ |
H A D | b2dpolygontools.hxx | 117 …B2DPoint getPositionAbsolute(const B2DPolygon& rCandidate, double fDistance, double fLength = 0.0); 122 …B2DPoint getPositionRelative(const B2DPolygon& rCandidate, double fDistance, double fLength = 0.0); 128 …n getSnippetAbsolute(const B2DPolygon& rCandidate, double fFrom, double fTo, double fLength = 0.0); 134 …Relative(const B2DPolygon& rCandidate, double fFrom = 0.0, double fTo = 1.0, double fLength = 0.0); 473 …B2DPolygon createEdgesOfGivenLength(const B2DPolygon& rCandidate, double fLength, double fStart = …
|
H A D | b3dpolygontools.hxx | 93 …B3DPoint getPositionAbsolute(const B3DPolygon& rCandidate, double fDistance, double fLength = 0.0); 98 …B3DPoint getPositionRelative(const B3DPolygon& rCandidate, double fDistance, double fLength = 0.0);
|
/aoo42x/main/avmedia/source/win/ |
H A D | framegrabber.cxx | 128 double fLength; in grabFrame() local 148 ( S_OK == pDet->get_StreamLength( &fLength ) ) && in grabFrame() 149 ( fLength > 0.0 ) && ( fMediaTime >= 0.0 ) && ( fMediaTime <= fLength ) ) in grabFrame()
|
/aoo42x/main/svx/source/customshapes/ |
H A D | EnhancedCustomShapeFontWork.cxx | 147 double fLength = 0; in GetLength() local 152 fLength += ((Polygon&)rPolygon).CalcDistance( nCount, nCount - 1 ); in GetLength() 154 return fLength; in GetLength() 577 double fLength = rDistances[ rDistances.size() - 1 ]; in CalcDistances() local 578 if ( fLength > 0.0 ) in CalcDistances() 583 *aIter++ /= fLength; in CalcDistances()
|
/aoo42x/main/oox/inc/oox/helper/ |
H A D | progressbar.hxx | 82 virtual ISegmentProgressBarRef createSegment( double fLength ) = 0; 129 virtual ISegmentProgressBarRef createSegment( double fLength );
|
/aoo42x/main/chart2/source/view/charttypes/ |
H A D | VSeriesPlotter.cxx | 846 …double fLength = lcl_getErrorBarLogicLength( aData, xErrorBarProperties, nErrorBarStyle, nIndex, t… in createErrorBar() local 847 if( ::rtl::math::isFinite( fLength ) ) in createErrorBar() 853 fLocalY+=fLength; in createErrorBar() 858 fLocalX+=fLength; in createErrorBar() 869 …double fLength = lcl_getErrorBarLogicLength( aData, xErrorBarProperties, nErrorBarStyle, nIndex, f… in createErrorBar() local 870 if( ::rtl::math::isFinite( fLength ) ) in createErrorBar() 876 fLocalY-=fLength; in createErrorBar() 881 fLocalX-=fLength; in createErrorBar()
|
/aoo42x/main/filter/source/graphicfilter/idxf/ |
H A D | dxfentrd.cxx | 530 fLength( 0.0 ), in DXFEdgeTypeEllipticalArc() 549 case 40 : fLength = rDGR.GetF(); break; in EvaluateGroup()
|
H A D | dxfentrd.hxx | 418 double fLength; // 40 member
|
/aoo42x/main/drawinglayer/source/primitive3d/ |
H A D | sdrextrudelathetools3d.cxx | 631 const double fLength(basegfx::B3DVector(aNextCenter - aCenter).getLength()); in extractPlanesFromSlice() local 632 aTexHeightArray.push_back(fLength); in extractPlanesFromSlice()
|
/aoo42x/main/vcl/source/gdi/ |
H A D | pdfwriter_impl.hxx | 168 …void appendMappedLength( double fLength, rtl::OStringBuffer& rBuffer, bool bVertical = true, sal_I…
|
H A D | pdfwriter_impl.cxx | 1613 void PDFWriterImpl::PDFPage::appendMappedLength( double fLength, OStringBuffer& rBuffer, bool bVert… in appendMappedLength() argument 1620 … *pOutLength = (sal_Int32)(fLength*(double)(bVertical ? aSize.Height() : aSize.Width())/1000.0); in appendMappedLength() 1621 fLength *= pixelToPoint((double)(bVertical ? aSize.Height() : aSize.Width()) / 1000.0); in appendMappedLength() 1622 appendDouble( fLength, rBuffer, nPrecision ); in appendMappedLength()
|