Lines Matching refs:nOp1
41 void SbiRuntime::StepLOADNC( sal_uInt32 nOp1 ) in StepLOADNC() argument
46 String aStr = pImg->GetString( static_cast<short>( nOp1 ) ); in StepLOADNC()
65 void SbiRuntime::StepLOADSC( sal_uInt32 nOp1 ) in StepLOADSC() argument
68 p->PutString( pImg->GetString( static_cast<short>( nOp1 ) ) ); in StepLOADSC()
74 void SbiRuntime::StepLOADI( sal_uInt32 nOp1 ) in StepLOADI() argument
77 p->PutInteger( static_cast<sal_Int16>( nOp1 ) ); in StepLOADI()
83 void SbiRuntime::StepARGN( sal_uInt32 nOp1 ) in StepARGN() argument
89 String aAlias( pImg->GetString( static_cast<short>( nOp1 ) ) ); in StepARGN()
98 void SbiRuntime::StepARGTYP( sal_uInt32 nOp1 ) in StepARGTYP() argument
104 sal_Bool bByVal = (nOp1 & 0x8000) != 0; // Ist BYVAL verlangt? in StepARGTYP()
105 SbxDataType t = (SbxDataType) (nOp1 & 0x7FFF); in StepARGTYP()
143 void SbiRuntime::StepPAD( sal_uInt32 nOp1 ) in StepPAD() argument
147 if( s.Len() > nOp1 ) in StepPAD()
148 s.Erase( static_cast<xub_StrLen>( nOp1 ) ); in StepPAD()
150 s.Expand( static_cast<xub_StrLen>( nOp1 ), ' ' ); in StepPAD()
155 void SbiRuntime::StepJUMP( sal_uInt32 nOp1 ) in StepJUMP() argument
160 if( nOp1 >= pImg->GetCodeSize() ) in StepJUMP()
163 pCode = (const sal_uInt8*) pImg->GetCode() + nOp1; in StepJUMP()
168 void SbiRuntime::StepJUMPT( sal_uInt32 nOp1 ) in StepJUMPT() argument
172 StepJUMP( nOp1 ); in StepJUMPT()
177 void SbiRuntime::StepJUMPF( sal_uInt32 nOp1 ) in StepJUMPF() argument
181 StepJUMP( nOp1 ); in StepJUMPF()
192 void SbiRuntime::StepONJUMP( sal_uInt32 nOp1 ) in StepONJUMP() argument
196 if( nOp1 & 0x8000 ) in StepONJUMP()
198 nOp1 &= 0x7FFF; in StepONJUMP()
200 PushGosub( pCode + 5 * nOp1 ); in StepONJUMP()
202 if( n < 1 || static_cast<sal_uInt32>(n) > nOp1 ) in StepONJUMP()
203 n = static_cast<sal_Int16>( nOp1 + 1 ); in StepONJUMP()
205 nOp1 = (sal_uInt32) ( (const char*) pCode - pImg->GetCode() ) + 5 * --n; in StepONJUMP()
206 StepJUMP( nOp1 ); in StepONJUMP()
211 void SbiRuntime::StepGOSUB( sal_uInt32 nOp1 ) in StepGOSUB() argument
214 if( nOp1 >= pImg->GetCodeSize() ) in StepGOSUB()
216 pCode = (const sal_uInt8*) pImg->GetCode() + nOp1; in StepGOSUB()
221 void SbiRuntime::StepRETURN( sal_uInt32 nOp1 ) in StepRETURN() argument
224 if( nOp1 ) in StepRETURN()
225 StepJUMP( nOp1 ); in StepRETURN()
230 void SbiRuntime::StepTESTFOR( sal_uInt32 nOp1 ) in StepTESTFOR() argument
326 StepJUMP( nOp1 ); in StepTESTFOR()
332 void SbiRuntime::StepCASETO( sal_uInt32 nOp1 ) in StepCASETO() argument
342 StepJUMP( nOp1 ); in StepCASETO()
348 void SbiRuntime::StepERRHDL( sal_uInt32 nOp1 ) in StepERRHDL() argument
351 StepJUMP( nOp1 ); in StepERRHDL()
363 void SbiRuntime::StepRESUME( sal_uInt32 nOp1 ) in StepRESUME() argument
371 if( nOp1 ) in StepRESUME()
382 if( nOp1 > 1 ) in StepRESUME()
383 StepJUMP( nOp1 ); in StepRESUME()
397 void SbiRuntime::StepCLOSE( sal_uInt32 nOp1 ) in StepCLOSE() argument
400 if( !nOp1 ) in StepCLOSE()
416 void SbiRuntime::StepPRCHAR( sal_uInt32 nOp1 ) in StepPRCHAR() argument
418 ByteString s( (char) nOp1 ); in StepPRCHAR()
507 void SbiRuntime::StepSETCLASS_impl( sal_uInt32 nOp1, bool bHandleDflt ) in StepSETCLASS_impl() argument
511 String aClass( pImg->GetString( static_cast<short>( nOp1 ) ) ); in StepSETCLASS_impl()
518 void SbiRuntime::StepVBASETCLASS( sal_uInt32 nOp1 ) in StepVBASETCLASS() argument
520 StepSETCLASS_impl( nOp1, false ); in StepVBASETCLASS()
523 void SbiRuntime::StepSETCLASS( sal_uInt32 nOp1 ) in StepSETCLASS() argument
525 StepSETCLASS_impl( nOp1, true ); in StepSETCLASS()
528 void SbiRuntime::StepTESTCLASS( sal_uInt32 nOp1 ) in StepTESTCLASS() argument
531 String aClass( pImg->GetString( static_cast<short>( nOp1 ) ) ); in StepTESTCLASS()
542 void SbiRuntime::StepLIB( sal_uInt32 nOp1 ) in StepLIB() argument
544 aLibName = pImg->GetString( static_cast<short>( nOp1 ) ); in StepLIB()
551 void SbiRuntime::StepBASED( sal_uInt32 nOp1 ) in StepBASED() argument
557 bool bCompatible = ((nOp1 & 0x8000) != 0); in StepBASED()
558 sal_uInt16 uBase = static_cast<sal_uInt16>(nOp1 & 1); // Can only be 0 or 1 in StepBASED()