Lines Matching refs:pOperand
249 OOperand* pOperand = rCodeStack.top(); in Exec() local
252 rCodeStack.push(new OOperandResultBOOL(operate(pOperand))); in Exec()
253 if (IS_TYPE(OOperandResult,pOperand)) in Exec()
254 delete pOperand; in Exec()
288 OOperand* pOperand = rCodeStack.top(); in Exec() local
291 rCodeStack.push(new OOperandResultBOOL(operate(pOperand))); in Exec()
292 if (IS_TYPE(OOperandResult,pOperand)) in Exec()
293 delete pOperand; in Exec()
297 sal_Bool OOp_ISNULL::operate(const OOperand* pOperand, const OOperand*) const in operate() argument
300 return pOperand->getValue().isNull(); in operate()
304 sal_Bool OOp_ISNOTNULL::operate(const OOperand* pOperand, const OOperand*) const in operate() argument
306 return !OOp_ISNULL::operate(pOperand); in operate()
459 OOperand* pOperand; in Exec() local
463 pOperand = rCodeStack.top(); in Exec()
465 if ( !IS_TYPE(OStopOperand,pOperand) ) in Exec()
466 aValues.push_back( pOperand->getValue() ); in Exec()
467 aOperands.push_back( pOperand ); in Exec()
469 while ( !IS_TYPE(OStopOperand,pOperand) ); in Exec()
504 OOperand* pOperand = rCodeStack.top(); in Exec() local
507 rCodeStack.push(new OOperandResult(operate(pOperand->getValue()))); in Exec()
508 if (IS_TYPE(OOperandResult,pOperand)) in Exec()
509 delete pOperand; in Exec()