Lines Matching refs:n

431 void SbiInstance::Error( SbError n )  in Error()  argument
433 Error( n, String() ); in Error()
436 void SbiInstance::Error( SbError n, const String& rMsg ) in Error() argument
441 pRun->Error( n ); in Error()
449 SbError n = StarBASIC::GetSfxFromVBError( static_cast< sal_uInt16 >( nVBNumber ) ); in ErrorVB() local
450 if ( !n ) in ErrorVB()
451n = nVBNumber; // force orig number, probably should have a specific table of vb ( localized ) err… in ErrorVB()
454 SbiRuntime::translateErrorToVba( n, aErrorMsg ); in ErrorVB()
463 SbError n = StarBASIC::GetSfxFromVBError( static_cast< sal_uInt16 >( nVBNumber ) ); in setErrorVB() local
464 if( !n ) in setErrorVB()
465n = nVBNumber; // force orig number, probably should have a specific table of vb ( localized ) err… in setErrorVB()
468 SbiRuntime::translateErrorToVba( n, aErrorMsg ); in setErrorVB()
470 nErr = n; in setErrorVB()
474 void SbiInstance::FatalError( SbError n ) in FatalError() argument
476 pRun->FatalError( n ); in FatalError()
871 void SbiRuntime::Error( SbError n, bool bVBATranslationAlreadyDone ) in Error() argument
873 if( n ) in Error()
875 nError = n; in Error()
909 void SbiRuntime::FatalError( SbError n ) in FatalError() argument
912 Error( n ); in FatalError()
1017 SbxVariable* SbiRuntime::GetTOS( short n ) in GetTOS() argument
1019 n = nExprLvl - n - 1; in GetTOS()
1021 if( n < 0 ) in GetTOS()
1027 return refExprStk->Get( (sal_uInt16) n ); in GetTOS()
1300 sal_uInt16 SbiRuntime::GetImageFlag( sal_uInt16 n ) const in GetImageFlag()
1302 return pImg->GetFlag( n ); in GetImageFlag()