Lines Matching refs:pRight
228 OOperand *pRight = rCodeStack.top(); in Exec() local
233 rCodeStack.push(new OOperandResultBOOL(operate(pLeft, pRight))); in Exec()
236 if (IS_TYPE(OOperandResult,pRight)) in Exec()
237 delete pRight; in Exec()
264 sal_Bool OOp_AND::operate(const OOperand* pLeft, const OOperand* pRight) const in operate()
267 return pLeft->isValid() && pRight->isValid(); in operate()
271 sal_Bool OOp_OR::operate(const OOperand* pLeft, const OOperand* pRight) const in operate()
274 return pLeft->isValid() || pRight->isValid(); in operate()
310 sal_Bool OOp_LIKE::operate(const OOperand* pLeft, const OOperand* pRight) const in operate()
315 ORowSetValue aRH(pRight->getValue()); in operate()
327 sal_Bool OOp_NOTLIKE::operate(const OOperand* pLeft, const OOperand* pRight) const in operate()
330 return !OOp_LIKE::operate(pLeft, pRight); in operate()
334 sal_Bool OOp_COMPARE::operate(const OOperand* pLeft, const OOperand* pRight) const in operate()
338 ORowSetValue aRH(pRight->getValue()); in operate()
409 OOperand *pRight = rCodeStack.top(); in Exec() local
414 rCodeStack.push(new OOperandResultNUM(operate(pLeft->getValue(), pRight->getValue()))); in Exec()
417 if (IS_TYPE(OOperandResult,pRight)) in Exec()
418 delete pRight; in Exec()
485 OOperand *pRight = rCodeStack.top(); in Exec() local
493 rCodeStack.push(new OOperandResult(operate(pLeft->getValue(),pRight->getValue()))); in Exec()
494 if (IS_TYPE(OOperandResult,pRight)) in Exec()
495 delete pRight; in Exec()