/aoo42x/main/svgio/source/svgreader/ |
H A D | svggradientnode.cxx | 284 double fOffset(0.0); in collectGradientEntries() local 289 fOffset = aOffset.getNumber() * 0.01; in collectGradientEntries() 293 fOffset = aOffset.solve(*this); in collectGradientEntries() 296 if(fOffset < 0.0) in collectGradientEntries() 299 fOffset = 0.0; in collectGradientEntries() 301 else if(fOffset > 1.0) in collectGradientEntries() 304 fOffset = 1.0; in collectGradientEntries() 309 fOffset, in collectGradientEntries()
|
/aoo42x/main/drawinglayer/source/primitive2d/ |
H A D | animatedprimitive2d.cxx | 177 const double fOffset(fIndex - (double)nIndA); in get2DDecomposition() local 181 if(basegfx::fTools::equalZero(fOffset)) in get2DDecomposition() 193 …nst basegfx::B2DVector aScale(basegfx::interpolate(aMatA->getScale(), aMatB->getScale(), fOffset)); in get2DDecomposition() 194 …:B2DVector aTranslate(basegfx::interpolate(aMatA->getTranslate(), aMatB->getTranslate(), fOffset)); in get2DDecomposition() 195 … const double fRotate(((aMatB->getRotate() - aMatA->getRotate()) * fOffset) + aMatA->getRotate()); in get2DDecomposition() 196 … const double fShearX(((aMatB->getShearX() - aMatA->getShearX()) * fOffset) + aMatA->getShearX()); in get2DDecomposition()
|
H A D | textlineprimitive2d.cxx | 52 double fOffset(getOffset()); in create2DDecomposition() local 168 fOffset -= 0.50 * fHeight; in create2DDecomposition() 198 aLine.append(basegfx::B2DPoint(0.0, fOffset)); in create2DDecomposition() 199 aLine.append(basegfx::B2DPoint(getWidth(), fOffset)); in create2DDecomposition() 267 double fOffset, in TextLinePrimitive2D() argument 274 mfOffset(fOffset), in TextLinePrimitive2D()
|
H A D | textbreakuphelper.cxx | 85 double fOffset(0.0); in breakupPortion() local 90 … fOffset = maTextLayouter.getTextWidth(mrSource.getText(), mrSource.getTextPosition(), nIndex); in breakupPortion() 96 fOffset = mrSource.getDXArray()[nIndex2 - 1]; in breakupPortion() 102 double fOffsetNoScale(fOffset); in breakupPortion() 122 aNewDXArray[a] -= fOffset; in breakupPortion()
|
H A D | textstrikeoutprimitive2d.cxx | 252 double fOffset, in TextGeometryStrikeoutPrimitive2D() argument 256 mfOffset(fOffset), in TextGeometryStrikeoutPrimitive2D()
|
/aoo42x/main/chart2/source/model/template/ |
H A D | PieChartTypeTemplate.cxx | 343 double fOffset=0.0; in matchesTemplate() local 355 xProp->getPropertyValue( C2U( "Offset" )) >>= fOffset; in matchesTemplate() 369 if( ! ::rtl::math::approxEqual( fPointOffset, fOffset ) ) in matchesTemplate() 381 if( bAllOffsetsEqual && fOffset > 0.0 ) in matchesTemplate() 385 … setFastPropertyValue_NoBroadcast( PROP_PIE_TEMPLATE_DEFAULT_OFFSET, uno::makeAny( fOffset )); in matchesTemplate() 505 double fOffset = 0.0; in applyStyle() local 506 if( (xProp->getPropertyValue( aOffsetPropName ) >>= fOffset) && in applyStyle() 507 ::rtl::math::approxEqual( fOffset, fDefaultOffset )) in applyStyle()
|
/aoo42x/main/drawinglayer/source/primitive3d/ |
H A D | sdrextrudelathetools3d.cxx | 74 double fOffset, in impGetOuterPolyPolygon() argument 79 if(basegfx::fTools::more(fOffset, 0.0)) in impGetOuterPolyPolygon() 87 rPolygon = basegfx::tools::growInNormalDirection(rPolygon, fOffset); in impGetOuterPolyPolygon() 103 rOuterPolyPolygon = basegfx::tools::growInNormalDirection(rPolygon, -fOffset); in impGetOuterPolyPolygon() 491 const double fOffset(fDepth * fDiagonal * 0.5); in createExtrudeSlices() local 492 fZFront = fDepth - fOffset; in createExtrudeSlices() 494 impGetOuterPolyPolygon(aFront, aOuterFront, fOffset, bCharacterMode); in createExtrudeSlices() 502 const double fOffset(fDepth * fDiagonal * 0.5); in createExtrudeSlices() local 503 fZBack = fOffset; in createExtrudeSlices() 504 impGetOuterPolyPolygon(aBack, aOuterBack, fOffset, bCharacterMode); in createExtrudeSlices()
|
/aoo42x/main/canvas/source/tools/ |
H A D | elapsedtime.cxx | 154 void ElapsedTime::adjustTimer( double fOffset, bool /*bLimitToLastQueriedTime*/ ) in adjustTimer() argument 158 m_fStartTime -= fOffset; in adjustTimer() 163 m_fFrozenTime += fOffset; in adjustTimer()
|
/aoo42x/main/chart2/source/controller/main/ |
H A D | ChartController_Window.cxx | 1875 double fOffset = 0.0; in impl_DragDataPoint() local 1877 (xPointProp->getPropertyValue( C2U("Offset" )) >>= fOffset ) && in impl_DragDataPoint() 1878 (( fAdditionalOffset > 0.0 && fOffset < 1.0 ) || (fOffset > 0.0)) ) in impl_DragDataPoint() 1880 fOffset += fAdditionalOffset; in impl_DragDataPoint() 1881 if( fOffset > 1.0 ) in impl_DragDataPoint() 1882 fOffset = 1.0; in impl_DragDataPoint() 1883 else if( fOffset < 0.0 ) in impl_DragDataPoint() 1884 fOffset = 0.0; in impl_DragDataPoint() 1885 xPointProp->setPropertyValue( C2U("Offset"), uno::makeAny( fOffset )); in impl_DragDataPoint()
|
H A D | ChartController.hxx | 705 bool impl_DragDataPoint( const ::rtl::OUString & rCID, double fOffset );
|
/aoo42x/main/chart2/source/view/main/ |
H A D | ShapeFactory.cxx | 189 const double fOffset = (fWidthH * fRoundedEdge) * 1.05; // increase by 5% for safety in createPolyPolygon_Cube() local 190 … const bool bRoundEdges = fRoundedEdge && fOffset < fWidthH && 2.0 * fOffset < fHeightSign*fHeight; in createPolyPolygon_Cube() 235 *pInnerSequenceY++ = fHeightSign*fOffset; in createPolyPolygon_Cube() 236 *pInnerSequenceY++ = fHeight - fHeightSign*fOffset; in createPolyPolygon_Cube() 241 *pInnerSequenceY++ = fHeight - fHeightSign*fOffset; in createPolyPolygon_Cube() 242 *pInnerSequenceY++ = fHeightSign*fOffset; in createPolyPolygon_Cube() 246 *pInnerSequenceX++ = -fWidthH + fOffset; in createPolyPolygon_Cube() 247 *pInnerSequenceX++ = fWidthH - fOffset; in createPolyPolygon_Cube() 252 *pInnerSequenceX++ = fWidthH - fOffset; in createPolyPolygon_Cube() 253 *pInnerSequenceX++ = -fWidthH + fOffset; in createPolyPolygon_Cube() [all …]
|
/aoo42x/main/chart2/source/tools/ |
H A D | Scaling.cxx | 169 LinearScaling::LinearScaling( double fSlope, double fOffset ) : in LinearScaling() argument 171 m_fOffset( fOffset ) in LinearScaling()
|
/aoo42x/main/drawinglayer/inc/drawinglayer/primitive2d/ |
H A D | svggradientprimitive2d.hxx | 49 …SvgGradientEntry(double fOffset, const basegfx::BColor& rColor = basegfx::BColor(0.0, 0.0, 0.0), d… in SvgGradientEntry() argument 50 : mfOffset(fOffset), in SvgGradientEntry()
|
H A D | textlineprimitive2d.hxx | 61 double fOffset,
|
H A D | textstrikeoutprimitive2d.hxx | 134 double fOffset,
|
/aoo42x/main/chart2/source/controller/chartapiwrapper/ |
H A D | DataSeriesPointWrapper.cxx | 322 double fOffset = 0; in convertInnerToOuterValue() local 325 if( rInnerValue >>= fOffset ) in convertInnerToOuterValue() 326 aResult <<= static_cast< sal_Int32 >( ::rtl::math::round( fOffset * 100.0 )); in convertInnerToOuterValue()
|
/aoo42x/main/oox/source/drawingml/chart/ |
H A D | typegroupconverter.cxx | 519 double fOffset = getLimitedValue< double >( nOoxExplosion / 100.0, 0.0, 1.0 ); in convertPieExplosion() local 520 rPropSet.setProperty( PROP_Offset, fOffset ); in convertPieExplosion()
|
/aoo42x/main/canvas/inc/canvas/ |
H A D | elapsedtime.hxx | 130 void adjustTimer( double fOffset,
|
/aoo42x/main/drawinglayer/source/texture/ |
H A D | texture.cxx | 642 const double fOffset(mfDistance * (double)a); in appendTransformations() local 644 aNew.set(1, 2, fOffset); in appendTransformations()
|
/aoo42x/main/chart2/source/view/charttypes/ |
H A D | PieChart.cxx | 414 double fOffset = getMaxOffset(); in createShapes() local 415 …->getInnerAndOuterRadius( fSlotX+1.0, fLogicInnerRadius, fLogicOuterRadius, m_bUseRings, fOffset ); in createShapes()
|
/aoo42x/main/chart2/source/inc/ |
H A D | Scaling.hxx | 135 LinearScaling( double fSlope = 1.0, double fOffset = 0.0 );
|
/aoo42x/main/sd/source/filter/ppt/ |
H A D | pptinanimations.cxx | 3505 double fOffset; in dump() local 3506 if( aEvent.Offset >>= fOffset ) in dump() 3507 fprintf( mpFile, "%g", fOffset ); in dump()
|