Lines Matching refs:p

43 	SbxVariable* p = new SbxVariable( SbxDOUBLE );  in StepLOADNC()  local
59 p->PutDouble( n ); in StepLOADNC()
60 PushVar( p ); in StepLOADNC()
67 SbxVariable* p = new SbxVariable; in StepLOADSC() local
68 p->PutString( pImg->GetString( static_cast<short>( nOp1 ) ) ); in StepLOADSC()
69 PushVar( p ); in StepLOADSC()
76 SbxVariable* p = new SbxVariable; in StepLOADI() local
77 p->PutInteger( static_cast<sal_Int16>( nOp1 ) ); in StepLOADI()
78 PushVar( p ); in StepLOADI()
145 SbxVariable* p = GetTOS(); in StepPAD() local
146 String& s = (String&)(const String&) *p; in StepPAD()
170 SbxVariableRef p = PopVar(); in StepJUMPT() local
171 if( p->GetBool() ) in StepJUMPT()
179 SbxVariableRef p = PopVar(); in StepJUMPF() local
180 if( !p->GetBool() ) in StepJUMPF()
194 SbxVariableRef p = PopVar(); in StepONJUMP() local
195 sal_Int16 n = p->GetInteger(); in StepONJUMP()
250 SbiForStack* p = pForStk; in StepTESTFOR() local
251 if( p->pArrayCurIndices == NULL ) in StepTESTFOR()
257 SbxDimArray* pArray = (SbxDimArray*)(SbxVariable*)p->refEnd; in StepTESTFOR()
261 if( nDims == 1 && p->pArrayLowerBounds[0] > p->pArrayUpperBounds[0] ) in StepTESTFOR()
266 SbxVariable* pVal = pArray->Get32( p->pArrayCurIndices ); in StepTESTFOR()
267 *(p->refVar) = *pVal; in StepTESTFOR()
272 if( p->pArrayCurIndices[i] < p->pArrayUpperBounds[i] ) in StepTESTFOR()
275 p->pArrayCurIndices[i]++; in StepTESTFOR()
277 p->pArrayCurIndices[j] = p->pArrayLowerBounds[j]; in StepTESTFOR()
283 delete[] p->pArrayCurIndices; in StepTESTFOR()
284 p->pArrayCurIndices = NULL; in StepTESTFOR()
308 SbiForStack* p = pForStk; in StepTESTFOR() local
309 if( p->xEnumeration->hasMoreElements() ) in StepTESTFOR()
311 Any aElem = p->xEnumeration->nextElement(); in StepTESTFOR()
350 const sal_uInt8* p = pCode; in StepERRHDL() local
353 pCode = p; in StepERRHDL()