Home
last modified time | relevance | path

Searched refs:nOp1 (Results 1 – 9 of 9) sorted by relevance

/AOO41X/main/basic/source/runtime/
H A Dstep1.cxx41 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()
[all …]
H A Dstep2.cxx57 …( SbxObject* pObj, sal_uInt32 nOp1, sal_uInt32 nOp2, SbError nNotFound, sal_Bool bLocal, sal_Bool … in FindElement() argument
77 String aName( pImg->GetString( static_cast<short>( nOp1 & 0x7FFF ) ) ); in FindElement()
91 nOp1 = nOp1 | 0x8000; // indicate params are present in FindElement()
179 if( nOp1 & 0x8000 ) in FindElement()
190 if( !( nOp1 & 0x8000 ) && nNotFound == SbERR_PROC_UNDEFINED ) in FindElement()
224 SetupArgs( pElem, nOp1 ); in FindElement()
354 void SbiRuntime::SetupArgs( SbxVariable* p, sal_uInt32 nOp1 ) in SetupArgs() argument
356 if( nOp1 & 0x8000 ) in SetupArgs()
634 void SbiRuntime::StepRTL( sal_uInt32 nOp1, sal_uInt32 nOp2 ) in StepRTL() argument
636 PushVar( FindElement( rBasic.pRtl, nOp1, nOp2, SbERR_PROC_UNDEFINED, sal_False ) ); in StepRTL()
[all …]
H A Druntime.cxx733 sal_uInt32 nOp1, nOp2; in Step() local
740 nOp1 = *pCode++; nOp1 |= *pCode++ << 8; nOp1 |= *pCode++ << 16; nOp1 |= *pCode++ << 24; in Step()
742 (this->*( aStep1[ eOp - SbOP1_START ] ) )( nOp1 ); in Step()
746 nOp1 = *pCode++; nOp1 |= *pCode++ << 8; nOp1 |= *pCode++ << 16; nOp1 |= *pCode++ << 24; in Step()
748 (this->*( aStep2[ eOp - SbOP2_START ] ) )( nOp1, nOp2 ); in Step()
/AOO41X/main/basic/source/classes/
H A Ddisas.cxx252 nOp1 = nOp2 = nParts = 0; in SbiDisas()
260 case _RESUME: if( nOp1 <= 1 ) break; in SbiDisas()
261 case _RETURN: if( !nOp1 ) break; in SbiDisas()
270 cLabels[ (nOp1 & 0xffff) >> 3 ] |= ( 1 << ( nOp1 & 7 ) ); in SbiDisas()
298 nOp1 = nOp2 = 0; in Fetch()
308 nOp1 = *p++; nOp1 |= *p++ << 8; nOp1 |= *p++ << 16; nOp1 |= *p++ << 24; in Fetch()
317 nOp1 = *p++; nOp1 |= *p++ << 8; nOp1 |= *p++ << 16; nOp1 |= *p++ << 24; in Fetch()
367 if( eOp == _STMNT && nOp1 != nLine ) in DisasLine()
371 nLine = nOp1; in DisasLine()
441 snprintf( cBuf, sizeof(cBuf), pMask[ nParts ], nPC, (sal_uInt16) eOp, nOp1, nOp2 ); in DisasLine()
[all …]
H A Dsbxmod.cxx1530 sal_uInt32 nOp1 = *p++; nOp1 |= *p++ << 8; in FindNextStmnt() local
1531 nOp1 |= *p++ << 16; nOp1 |= *p++ << 24; in FindNextStmnt()
1532 p = (const sal_uInt8*) pImg->GetCode() + nOp1; in FindNextStmnt()
/AOO41X/main/basic/source/comp/
H A Dcodegen.cxx353 virtual void processOpCode1( SbiOpcode eOp, T nOp1 ) = 0;
354 virtual void processOpCode2( SbiOpcode eOp, T nOp1, T nOp2 ) = 0;
371 T nOp1=0; in readParam() local
373 nOp1 |= *pCode++ << ( i * 8); in readParam()
374 return nOp1; in readParam()
387 T nOp1 = 0, nOp2 = 0; in visitBuffer() local
397 nOp1 = readParam( pCode ); in visitBuffer()
400 visitor.processOpCode1( eOp, nOp1 ); in visitBuffer()
406 nOp1 = readParam( pCode ); in visitBuffer()
411 visitor.processOpCode2( eOp, nOp1, nOp2 ); in visitBuffer()
[all …]
/AOO41X/main/basic/source/inc/
H A Druntime.hxx278 typedef void( SbiRuntime::*pStep1 )( sal_uInt32 nOp1 );
279 typedef void( SbiRuntime::*pStep2 )( sal_uInt32 nOp1, sal_uInt32 nOp2 );
349 …( SbxObject* pObj, sal_uInt32 nOp1, sal_uInt32 nOp2, SbError, sal_Bool bLocal, sal_Bool bStatic = …
387 void StepSETCLASS_impl( sal_uInt32 nOp1, bool bHandleDflt = false );
422 …void StepFIND_Impl( SbxObject* pObj, sal_uInt32 nOp1, sal_uInt32 nOp2, SbError, sal_Bool bLocal, s…
H A Ddisas.hxx39 sal_uInt32 nOp1, nOp2; // Operanden member in SbiDisas
/AOO41X/main/svl/source/numbers/
H A Dzformat.cxx1433 sal_uInt16 nOp1, nOp2; in Load() local
1436 >> nOp1 >> nOp2 >> bStandard >> bIsUsed; in Load()
1484 eOp1 = (SvNumberformatLimitOps) nOp1; in Load()