Home
last modified time | relevance | path

Searched refs:SbiRuntime (Results 1 – 21 of 21) sorted by relevance

/AOO41X/main/basic/source/runtime/
H A Druntime.cxx48 bool SbiRuntime::isVBAEnabled() in isVBAEnabled()
76 if( SbiRuntime::isVBAEnabled() ) in isVBAEnabled()
90 SbiRuntime::pStep0 SbiRuntime::aStep0[] = { // Alle Opcodes ohne Operanden
91 &SbiRuntime::StepNOP,
92 &SbiRuntime::StepEXP,
93 &SbiRuntime::StepMUL,
94 &SbiRuntime::StepDIV,
95 &SbiRuntime::StepMOD,
96 &SbiRuntime::StepPLUS,
97 &SbiRuntime::StepMINUS,
[all …]
H A Dstep0.cxx50 void SbiRuntime::StepNOP() in StepNOP()
53 void SbiRuntime::StepArith( SbxOperator eOp ) in StepArith()
93 void SbiRuntime::StepUnary( SbxOperator eOp ) in StepUnary()
100 void SbiRuntime::StepCompare( SbxOperator eOp ) in StepCompare()
163 void SbiRuntime::StepEXP() { StepArith( SbxEXP ); } in StepEXP()
164 void SbiRuntime::StepMUL() { StepArith( SbxMUL ); } in StepMUL()
165 void SbiRuntime::StepDIV() { StepArith( SbxDIV ); } in StepDIV()
166 void SbiRuntime::StepIDIV() { StepArith( SbxIDIV ); } in StepIDIV()
167 void SbiRuntime::StepMOD() { StepArith( SbxMOD ); } in StepMOD()
168 void SbiRuntime::StepPLUS() { StepArith( SbxPLUS ); } in StepPLUS()
[all …]
H A Dstep1.cxx41 void SbiRuntime::StepLOADNC( sal_uInt32 nOp1 ) in StepLOADNC()
65 void SbiRuntime::StepLOADSC( sal_uInt32 nOp1 ) in StepLOADSC()
74 void SbiRuntime::StepLOADI( sal_uInt32 nOp1 ) in StepLOADI()
83 void SbiRuntime::StepARGN( sal_uInt32 nOp1 ) in StepARGN()
98 void SbiRuntime::StepARGTYP( sal_uInt32 nOp1 ) in StepARGTYP()
143 void SbiRuntime::StepPAD( sal_uInt32 nOp1 ) in StepPAD()
155 void SbiRuntime::StepJUMP( sal_uInt32 nOp1 ) in StepJUMP()
168 void SbiRuntime::StepJUMPT( sal_uInt32 nOp1 ) in StepJUMPT()
177 void SbiRuntime::StepJUMPF( sal_uInt32 nOp1 ) in StepJUMPF()
192 void SbiRuntime::StepONJUMP( sal_uInt32 nOp1 ) in StepONJUMP()
[all …]
H A Dstep2.cxx56 SbxVariable* SbiRuntime::FindElement in FindElement()
59 bool bIsVBAInterOp = SbiRuntime::isVBAEnabled(); in FindElement()
284 SbxBase* SbiRuntime::FindElementExtern( const String& rName ) in FindElementExtern()
354 void SbiRuntime::SetupArgs( SbxVariable* p, sal_uInt32 nOp1 ) in SetupArgs()
484 SbxVariable* SbiRuntime::CheckArray( SbxVariable* pElem ) in CheckArray()
634 void SbiRuntime::StepRTL( sal_uInt32 nOp1, sal_uInt32 nOp2 ) in StepRTL()
640 SbiRuntime::StepFIND_Impl( SbxObject* pObj, sal_uInt32 nOp1, sal_uInt32 nOp2, SbError nNotFound, sa… in StepFIND_Impl()
648 void SbiRuntime::StepFIND( sal_uInt32 nOp1, sal_uInt32 nOp2 ) in StepFIND()
654 void SbiRuntime::StepFIND_CM( sal_uInt32 nOp1, sal_uInt32 nOp2 ) in StepFIND_CM()
667 void SbiRuntime::StepFIND_STATIC( sal_uInt32 nOp1, sal_uInt32 nOp2 ) in StepFIND_STATIC()
[all …]
H A Dmethods.cxx269 bool bVBA = SbiRuntime::isVBAEnabled(); in RTLFUNC()
391 if( !bChrW && SbiRuntime::isVBAEnabled() ) in implChr()
530 if( SbiRuntime::isVBAEnabled() ) in RTLFUNC()
995 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1076 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1412 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1640 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1837 if ( nYear < 30 && SbiRuntime::isVBAEnabled() ) in implDateSerial()
1847 if ( !SbiRuntime::isVBAEnabled() ) in implDateSerial()
2965 if( SbiRuntime::isVBAEnabled() ) in RTLFUNC()
[all …]
H A Dmethods1.cxx191 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
771 bool bIncIndex = (IsBaseIndexOne() && SbiRuntime::isVBAEnabled() ); in RTLFUNC()
1075 if( bBinary && SbiRuntime::isVBAEnabled() && aByte == 1 && pStrm->IsEof() ) in lcl_ReadSbxVariable()
H A Dprops.cxx50 if( SbiRuntime::isVBAEnabled() ) in RTLFUNC()
H A Ddllmgr.cxx269 if( !bByVal && !SbiRuntime::isVBAEnabled() && eVarType == SbxSTRING ) in marshal()
/AOO41X/main/basic/source/inc/
H A Druntime.hxx82 class SbiRuntime; // aktive StarBASIC-Prozedur-Instanz
182 friend class SbiRuntime;
204 SbiRuntime* pRun; // Call-Stack
273 class SbiRuntime class
277 typedef void( SbiRuntime::*pStep0 )();
278 typedef void( SbiRuntime::*pStep1 )( sal_uInt32 nOp1 );
279 typedef void( SbiRuntime::*pStep2 )( sal_uInt32 nOp1, sal_uInt32 nOp2 );
441 SbiRuntime* pNext; // Stack-Chain
443 SbiRuntime( SbModule*, SbMethod*, sal_uInt32 );
444 ~SbiRuntime();
H A Dsbunoobj.hxx310 friend class SbiRuntime;
/AOO41X/main/basic/inc/basic/
H A Dbasicrt.hxx29 class SbiRuntime;
34 SbiRuntime* pRun;
36 BasicRuntime( SbiRuntime* p ) : pRun ( p ){;} in BasicRuntime()
H A Dsbmeth.hxx36 friend class SbiRuntime;
82 friend class SbiRuntime;
H A Dsbmod.hxx38 class SbiRuntime;
55 friend class SbiRuntime;
H A Dsbstar.hxx41 class SbiRuntime; // currently running procedure
56 friend class SbiRuntime;
/AOO41X/main/basic/source/sbx/
H A Dsbxdbl.cxx78 if ( SbiRuntime::isVBAEnabled() )// VBA only behaviour in ImpGetDouble()
88 if ( SbiRuntime::isVBAEnabled() )// VBA only behaviour in ImpGetDouble()
H A Dsbxstr.cxx262 bool bIncIndex = ( IsBaseIndexOne() && SbiRuntime::isVBAEnabled() ); in StringToByteArray()
H A Dsbxvalue.cxx1132 bool bVBAInterop = SbiRuntime::isVBAEnabled(); in Compute()
1466 bool bVBAInterop = SbiRuntime::isVBAEnabled(); in Compare()
H A Dsbxscan.cxx228 else if ( SbiRuntime::isVBAEnabled() ) in ImpScan()
H A Dsbxarray.cxx782 if( nDim == 0 || !pPar || ( ( nDim != ( pPar->Count() - 1 ) ) && SbiRuntime::isVBAEnabled() ) ) in Offset32()
/AOO41X/main/basic/source/classes/
H A Dsbxmod.cxx1143 SbiRuntime* pRt = new SbiRuntime( this, pMeth, pMeth->nStart ); in Run()
1186 SbiRuntime* pRtNext = pRt->pNext; in Run()
1278 SbiRuntime* pRt = new SbiRuntime( this, NULL, 0 ); in RunInit()
H A Dsb.cxx1561 if( SbiRuntime::isVBAEnabled() ) in GetVBErrorCode()
1603 if( SbiRuntime::isVBAEnabled() ) in GetSfxFromVBError()
1794 if ( SbiRuntime::isVBAEnabled() && ( code == SbERR_BASIC_COMPAT ) ) in RTError()
2298 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in CollRemove()