Home
last modified time | relevance | path

Searched refs:fLength (Results 1 – 16 of 16) sorted by relevance

/trunk/main/oox/source/helper/
H A Dprogressbar.cxx99 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 …]
/trunk/main/basegfx/source/curve/
H A Db2dbeziertools.cxx59 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 …]
/trunk/main/basegfx/source/polygon/
H A Db3dpolygontools.cxx267 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 Db2dpolygontools.cxx645 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 Db2dlinegeometry.cxx444 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()
/trunk/main/basegfx/inc/basegfx/polygon/
H A Db2dpolygontools.hxx117 …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 Db3dpolygontools.hxx93 …B3DPoint getPositionAbsolute(const B3DPolygon& rCandidate, double fDistance, double fLength = 0.0);
98 …B3DPoint getPositionRelative(const B3DPolygon& rCandidate, double fDistance, double fLength = 0.0);
/trunk/main/avmedia/source/win/
H A Dframegrabber.cxx128 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()
/trunk/main/svx/source/customshapes/
H A DEnhancedCustomShapeFontWork.cxx147 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()
/trunk/main/oox/inc/oox/helper/
H A Dprogressbar.hxx82 virtual ISegmentProgressBarRef createSegment( double fLength ) = 0;
129 virtual ISegmentProgressBarRef createSegment( double fLength );
/trunk/main/chart2/source/view/charttypes/
H A DVSeriesPlotter.cxx846 …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()
/trunk/main/filter/source/graphicfilter/idxf/
H A Ddxfentrd.cxx530 fLength( 0.0 ), in DXFEdgeTypeEllipticalArc()
549 case 40 : fLength = rDGR.GetF(); break; in EvaluateGroup()
H A Ddxfentrd.hxx418 double fLength; // 40 member
/trunk/main/drawinglayer/source/primitive3d/
H A Dsdrextrudelathetools3d.cxx631 const double fLength(basegfx::B3DVector(aNextCenter - aCenter).getLength()); in extractPlanesFromSlice() local
632 aTexHeightArray.push_back(fLength); in extractPlanesFromSlice()
/trunk/main/vcl/source/gdi/
H A Dpdfwriter_impl.hxx168 …void appendMappedLength( double fLength, rtl::OStringBuffer& rBuffer, bool bVertical = true, sal_I…
H A Dpdfwriter_impl.cxx1613 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()

Completed in 148 milliseconds