Lines Matching refs:p2
57 SbxVariable* p2 = GetTOS(); in StepArith() local
69 && ( p2->GetType() == SbxOBJECT || p2->GetType() == SbxVARIANT ) in StepArith()
72 SbxVariable* pDflt = getDefaultProp( p2 ); in StepArith()
81 p2 = new SbxVariable( *pDflt ); in StepArith()
82 p2->SetFlag( SBX_READWRITE ); in StepArith()
83 refExprStk->Put( p2, nExprLvl - 1 ); in StepArith()
87 p2->ResetFlag( SBX_FIXED ); in StepArith()
88 p2->Compute( eOp, *p1 ); in StepArith()
90 checkArithmeticOverflow( p2 ); in StepArith()
103 SbxVariableRef p2 = PopVar(); in StepCompare() local
108 SbxDataType p2Type = p2->GetType(); in StepCompare()
114 p2->Broadcast( SBX_HINT_DATAWANTED ); in StepCompare()
129 pDflt = getDefaultProp( p2 ); in StepCompare()
132 p2 = pDflt; in StepCompare()
133 p2->Broadcast( SBX_HINT_DATAWANTED ); in StepCompare()
141 if( p2->Compare( eOp, *p1 ) ) in StepCompare()