Home
last modified time | relevance | path

Searched refs:solve (Results 1 – 25 of 71) sorted by relevance

123

/trunk/main/svgio/source/svgreader/
H A Dsvgcharacternode.cxx286 double fFontWidth(rSvgStyleAttributes.getFontSize().solve(*this, length)); in createSimpleTextPrimitive()
431 const double mfBaselineShift(aNumber.solve(*this, length)); in createSimpleTextPrimitive()
618 mfTextLength = rSvgTextPositions.getTextLength().solve(rInfoProvider, length); in SvgTextPosition()
639 maPosition.setX(rSvgTextPositions.getX()[0].solve(rInfoProvider, xcoordinate)); in SvgTextPosition()
649 … maX.push_back(rSvgTextPositions.getX()[a].solve(rInfoProvider, xcoordinate) - maPosition.getX()); in SvgTextPosition()
666 …maPosition.setX(maPosition.getX() + rSvgTextPositions.getDx()[0].solve(rInfoProvider, xcoordinate)… in SvgTextPosition()
675 … maX.push_back(rSvgTextPositions.getDx()[a].solve(rInfoProvider, xcoordinate)); in SvgTextPosition()
687 maPosition.setY(rSvgTextPositions.getY()[0].solve(rInfoProvider, ycoordinate)); in SvgTextPosition()
697 … maY.push_back(rSvgTextPositions.getY()[a].solve(rInfoProvider, ycoordinate) - maPosition.getY()); in SvgTextPosition()
714 …maPosition.setY(maPosition.getY() + rSvgTextPositions.getDy()[0].solve(rInfoProvider, ycoordinate)… in SvgTextPosition()
[all …]
H A Dsvgrectnode.cxx174 const double fWidth(getWidth().solve(*this, xcoordinate)); in decomposeSvgNode()
175 const double fHeight(getHeight().solve(*this, ycoordinate)); in decomposeSvgNode()
179 const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0); in decomposeSvgNode()
180 const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0); in decomposeSvgNode()
186 double frX(getRx().isSet() ? getRx().solve(*this, xcoordinate) : 0.0); in decomposeSvgNode()
187 double frY(getRy().isSet() ? getRy().solve(*this, ycoordinate) : 0.0); in decomposeSvgNode()
H A Dsvgtools.cxx215 double SvgNumber::solve(const InfoProvider& rInfoProvider, NumberType aNumberType) const in solve() function in svgio::svgreader::SvgNumber
977 double fX(aMinX.solve(rInfoProvider, xcoordinate)); in readViewBox()
978 double fY(aMinY.solve(rInfoProvider, ycoordinate)); in readViewBox()
979 double fW(aWidth.solve(rInfoProvider,xcoordinate)); in readViewBox()
980 double fH(aHeight.solve(rInfoProvider,ycoordinate)); in readViewBox()
1026 aNew.set(0, 0, aVal.solve(rInfoProvider)); // Element A in readTransform()
1086 aTransX.solve(rInfoProvider, xcoordinate), in readTransform()
1087 aTransY.solve(rInfoProvider, ycoordinate)); in readTransform()
1110 aScaleX.solve(rInfoProvider), in readTransform()
1111 aScaleY.solve(rInfoProvider)); in readTransform()
[all …]
H A Dsvgstyleattributes.cxx377 aStart.setX(rFillGradient.getX1().solve(mrOwner, xcoordinate)); in add_fillGradient()
378 aStart.setY(rFillGradient.getY1().solve(mrOwner, ycoordinate)); in add_fillGradient()
379 aEnd.setX(rFillGradient.getX2().solve(mrOwner, xcoordinate)); in add_fillGradient()
380 aEnd.setY(rFillGradient.getY2().solve(mrOwner, ycoordinate)); in add_fillGradient()
425 aStart.setX(rFillGradient.getCx().solve(mrOwner, xcoordinate)); in add_fillGradient()
426 aStart.setY(rFillGradient.getCy().solve(mrOwner, ycoordinate)); in add_fillGradient()
427 fRadius = rFillGradient.getR().solve(mrOwner, length); in add_fillGradient()
431 aFocal.setX(pFx ? pFx->solve(mrOwner, xcoordinate) : aStart.getX()); in add_fillGradient()
432 aFocal.setY(pFy ? pFy->solve(mrOwner, ycoordinate) : aStart.getY()); in add_fillGradient()
616 const double fFillOpacity(getFillOpacity().solve(mrOwner, length)); in add_fill()
[all …]
H A Dsvgellipsenode.cxx145 const double fRx(getRx().solve(*this, xcoordinate)); in decomposeSvgNode()
146 const double fRy(getRy().solve(*this, ycoordinate)); in decomposeSvgNode()
153 getCx().isSet() ? getCx().solve(*this, xcoordinate) : 0.0, in decomposeSvgNode()
154 getCy().isSet() ? getCy().solve(*this, ycoordinate) : 0.0), in decomposeSvgNode()
H A Dsvglinenode.cxx140 getX1().isSet() ? getX1().solve(*this, xcoordinate) : 0.0, in decomposeSvgNode()
141 getY1().isSet() ? getY1().solve(*this, ycoordinate) : 0.0); in decomposeSvgNode()
143 getX2().isSet() ? getX2().solve(*this, xcoordinate) : 0.0, in decomposeSvgNode()
144 getY2().isSet() ? getY2().solve(*this, ycoordinate) : 0.0); in decomposeSvgNode()
H A Dsvgmasknode.cxx242 … const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0); in apply()
243 … const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0); in apply()
248 … fX + (getWidth().isSet() ? getWidth().solve(*this, xcoordinate) : 0.0), in apply()
249 … fY + (getHeight().isSet() ? getHeight().solve(*this, ycoordinate) : 0.0)); in apply()
H A Dsvgimagenode.cxx207 const double fWidth(getWidth().solve(*this, xcoordinate)); in decomposeSvgNode()
208 const double fHeight(getHeight().solve(*this, ycoordinate)); in decomposeSvgNode()
216 const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0); in decomposeSvgNode()
217 const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0); in decomposeSvgNode()
H A Dsvgpatternnode.cxx238 rfW = (getWidth().isSet()) ? getWidth().solve(rUser, xcoordinate) : 0.0; in getValuesRelative()
239 rfH = (getHeight().isSet()) ? getHeight().solve(rUser, ycoordinate) : 0.0; in getValuesRelative()
265 rfX = (getX().isSet()) ? getX().solve(rUser, xcoordinate) : 0.0; in getValuesRelative()
266 rfY = (getY().isSet()) ? getY().solve(rUser, ycoordinate) : 0.0; in getValuesRelative()
H A Dsvgcirclenode.cxx131 const double fR(getR().solve(*this, length)); in decomposeSvgNode()
138 getCx().isSet() ? getCx().solve(*this, xcoordinate) : 0.0, in decomposeSvgNode()
139 getCy().isSet() ? getCy().solve(*this, ycoordinate) : 0.0), in decomposeSvgNode()
H A Dsvgusenode.cxx173 getX().solve(*this, xcoordinate), in decomposeSvgNode()
174 getY().solve(*this, ycoordinate)); in decomposeSvgNode()
H A Dsvggradientnode.cxx293 fOffset = aOffset.solve(*this); in collectGradientEntries()
311 pStyle->getStopOpacity().solve(*this))); in collectGradientEntries()
H A Dsvgtextpathnode.cxx441 … const double fUserLength(pSvgPathNode->getPathLength().solve(*this, length)); in decomposePathNode()
460 … fPosition = getStartOffset().solve(*this, length) * fUserToBasegfx; in decomposePathNode()
H A Dsvgnode.cxx643 return getSvgStyleAttributes()->getFontSize().solve(*this, xcoordinate); in getCurrentFontSize()
660 return getSvgStyleAttributes()->getFontSize().solve(*this, ycoordinate); in getCurrentXHeight()
/trunk/main/offapi/com/sun/star/ucb/
H A DNameClash.idl48 /** Means to rename the object to transfer to solve the clash.
62 /** Means to use a <type>NameClashResolveRequest</type> in order to solve
/trunk/main/basegfx/source/workbench/
H A Dgauss.hxx158 bool solve( Matrix& matrix, in solve() function
H A Dbezierclip.cxx712 if( !solve(fMatrix, 2, 3, fRes, minPivotValue) ) in Impl_calcFocus()
/trunk/main/offapi/com/sun/star/sheet/
H A DXSolverDescription.idl50 /** After calling solve, a message describing the status
H A DXSolver.idl61 void solve();
H A DXAddIn.idl156 <dd>for functions that solve financial problems.</dd>
/trunk/main/sccomp/source/solver/
H A Dsolver.hxx106 virtual void SAL_CALL solve() throw(::com::sun::star::uno::RuntimeException);
H A Dsolver.cxx305 void SAL_CALL SolverComponent::solve() throw(uno::RuntimeException) in solve() function in SolverComponent
/trunk/main/svgio/inc/svgio/svgreader/
H A Dsvgtools.hxx135 double solve(const InfoProvider& rInfoProvider, NumberType aNumberType = length) const;
/trunk/main/sc/source/ui/miscdlgs/
H A Doptsolver.cxx1015 xSolver->solve(); in CallSolver()
/trunk/extras/l10n/source/ug/
H A Dlocalize.sdf37561 …o appear at the end of a line and Z at the beginning of the next line. To solve this problem, pres…
48075 …\</emph\> is too close to the character. In this case, an empty group can solve the problem: \<emp…
55096 …86 0 ug \<ahelp hid=\".\"\>Opens the Solver dialog. A solver allows to solve equations with mul…
55098 …elp par_id7564012 0 ug \<ahelp hid=\".\" visibility=\"hidden\"\>Try to solve the equation for a…
55099 …elp par_id1186254 0 ug \<ahelp hid=\".\" visibility=\"hidden\"\>Try to solve the equation for a…
55100 …elp par_id7432477 0 ug \<ahelp hid=\".\" visibility=\"hidden\"\>Try to solve the equation to ap…
55109 …p par_id2569658 0 ug \<ahelp hid=\".\" visibility=\"hidden\"\>Click to solve the equation with …
55110 helpcontent2 source\text\scalc\01\solver.xhp 0 help par_id5474410 0 ug To solve equations with t…
56185 …text\"\>\<ahelp hid=\".uno:GoalSeekDialog\"\>Opens a dialog where you can solve an equation with a…

Completed in 1074 milliseconds

123