Lines Matching refs:pRes
497 SbiExprNode *pRes; in Operand() local
504 pRes = Term(); in Operand()
509 pRes = new SbiExprNode( pParser, pRes, eTok, Like() ); in Operand()
513 pRes = Term(); break; in Operand()
516 pRes = new SbiExprNode( pParser, pParser->GetDbl(), pParser->GetType() ); in Operand()
520 pRes = new SbiExprNode( pParser, pParser->GetSym() ); break; in Operand()
526 pRes = new SbiExprNode(); // Dummy node in Operand()
531 pRes = Boolean(); in Operand()
553 pRes->bComposite = sal_True; in Operand()
558 pRes = Term(); in Operand()
562 pRes = new SbiExprNode( pParser, 1.0, SbxDOUBLE ); // bei Fehlern in Operand()
566 return pRes; in Operand()