Home
last modified time | relevance | path

Searched refs:rSecondArg (Results 1 – 3 of 3) sorted by relevance

/AOO42X/main/slideshow/source/engine/
H A Dexpressionnodefactory.cxx98 const ExpressionNodeSharedPtr& rSecondArg ) : in BinaryExpressionBase() argument
100 mpSecondArg( rSecondArg ) in BinaryExpressionBase()
120 const ExpressionNodeSharedPtr& rSecondArg ) : in PlusExpression() argument
121 BinaryExpressionBase( rFirstArg, rSecondArg ) in PlusExpression()
135 const ExpressionNodeSharedPtr& rSecondArg ) : in MinusExpression() argument
136 BinaryExpressionBase( rFirstArg, rSecondArg ) in MinusExpression()
150 const ExpressionNodeSharedPtr& rSecondArg ) : in MultipliesExpression() argument
151 BinaryExpressionBase( rFirstArg, rSecondArg ) in MultipliesExpression()
165 const ExpressionNodeSharedPtr& rSecondArg ) : in DividesExpression() argument
166 BinaryExpressionBase( rFirstArg, rSecondArg ) in DividesExpression()
[all …]
/AOO42X/main/svx/source/customshapes/
H A DEnhancedCustomShapeFunctionParser.cxx477 …nct eFunct, const ExpressionNodeSharedPtr& rFirstArg, const ExpressionNodeSharedPtr& rSecondArg ) : in BinaryFunctionExpression() argument
480 mpSecondArg( rSecondArg ) in BinaryFunctionExpression()
483 …Funct eFunct, const ExpressionNodeSharedPtr& rFirstArg, const ExpressionNodeSharedPtr& rSecondArg ) in getValue() argument
488 case BINARY_FUNC_PLUS : fRet = (*rFirstArg)() + (*rSecondArg)(); break; in getValue()
489 case BINARY_FUNC_MINUS: fRet = (*rFirstArg)() - (*rSecondArg)(); break; in getValue()
490 case BINARY_FUNC_MUL : fRet = (*rFirstArg)() * (*rSecondArg)(); break; in getValue()
491 case BINARY_FUNC_DIV : fRet = (*rFirstArg)() / (*rSecondArg)(); break; in getValue()
492 case BINARY_FUNC_MIN : fRet = ::std::min( (*rFirstArg)(), (*rSecondArg)() ); break; in getValue()
493 case BINARY_FUNC_MAX : fRet = ::std::max( (*rFirstArg)(), (*rSecondArg)() ); break; in getValue()
494 case BINARY_FUNC_ATAN2: fRet = atan2( (*rFirstArg)(), (*rSecondArg)() ); break; in getValue()
[all …]
/AOO42X/main/connectivity/source/commontools/
H A DRowFunctionParser.cxx101 …nct eFunct, const ExpressionNodeSharedPtr& rFirstArg, const ExpressionNodeSharedPtr& rSecondArg ) : in BinaryFunctionExpression() argument
104 mpSecondArg( rSecondArg ) in BinaryFunctionExpression()