/aoo42x/main/basic/source/sbx/ |
H A D | sbxvar.cxx | 43 TYPEINIT1(SbxVariable,SbxValue) 55 friend class SbxVariable; 74 SbxVariable::SbxVariable() : SbxValue() in SbxVariable() function in SbxVariable 89 SbxVariable::SbxVariable( const SbxVariable& r ) in SbxVariable() function in SbxVariable 122 SbxVariable::SbxVariable( SbxDataType t, void* p ) : SbxValue( t, p ) in SbxVariable() function in SbxVariable 137 SbxVariable::~SbxVariable() in ~SbxVariable() 192 SbxInfo* SbxVariable::GetInfo() in GetInfo() 228 ((SbxVariable*)this)->GetInfo(); in GetName() 323 SbxVariable& SbxVariable::operator=( const SbxVariable& r ) in operator =() 540 SbxVariable* pThis = (SbxVariable*)this; in StoreData() [all …]
|
H A D | sbxobj.cxx | 33 TYPEINIT1(SbxMethod,SbxVariable) 34 TYPEINIT1(SbxProperty,SbxVariable) 72 SbxVariable::operator=( r ); in operator =() 131 SbxVariable* p; in Clear() 150 SbxVariable* pVar = p->GetVar(); in SFX_NOTIFY() 227 SbxVariable* pRes = NULL; in Find() 417 SbxVariable* pVar = NULL; in Make() 720 SbxVariable* pVar = r; in LoadArray() 943 SbxVariable* pVar = r; in Dump() 976 SbxVariable* pVar = r; in Dump() [all …]
|
H A D | sbxarray.cxx | 192 rRef = new SbxVariable( eType ); in Get32() 211 rRef = new SbxVariable( eType ); in Get() 232 if( (SbxVariable*) rRef != pVar ) in Put32() 375 SbxVariable* pVar = *pRef1; in Merge() 409 SbxVariable* p = NULL; in FindUserData() 413 SbxVariable* pVar = *pRef; in FindUserData() 457 SbxVariable* p = NULL; in Find() 466 SbxVariable* pVar = *pRef; in Find() 523 SbxVariable* pVar = (SbxVariable*) Load( rStrm ); in LoadData() 548 SbxVariable* p = *pRef; in StoreData() [all …]
|
H A D | sbxexec.cxx | 56 static SbxVariable* Element 103 static SbxVariable* QualifiedName in QualifiedName() 141 static SbxVariable* Operand in Operand() 201 SbxVariable* pVar = refVar; in MulDiv() 233 SbxVariable* pVar = refVar; in PlusMinus() 274 SbxVariable* pVar = refVar; in Assign() 275 SbxVariable* pVar2 = refVar2; in Assign() 295 static SbxVariable* Element in Element() 335 SbxVariable* pArg = refArg; in Element() 361 SbxVariable* pVar = NULL; in Execute() [all …]
|
H A D | sbxcoll.cxx | 88 SbxVariable* p; in Initialize() 100 SbxVariable* SbxCollection::FindUserData( sal_uInt32 nData ) in FindUserData() 111 SbxVariable* SbxCollection::Find( const XubString& rName, SbxClassType t ) in Find() 131 SbxVariable* pVar = p->GetVar(); in SFX_NOTIFY() 182 SbxVariable* pRes = NULL; in CollItem() 183 SbxVariable* p = pPar_->Get( 1 ); in CollItem() 251 void SbxStdCollection::Insert( SbxVariable* p ) in Insert()
|
/aoo42x/main/basic/inc/basic/ |
H A D | sbx.hxx | 46 class SbxVariable; 92 friend class SbxVariable; 127 SbxVariable* pVar; 195 SbxVariable* Get( sal_uInt16 ); 199 void Remove( SbxVariable* ); 209 SbxVariable* Get32( sal_uInt32 ); 251 SbxVariable* Get( const short* ); 255 SbxVariable* Get( SbxArray* ); 256 void Put( SbxVariable*, SbxArray* ); 327 virtual void Insert( SbxVariable* ); [all …]
|
H A D | sbstdobj.hxx | 59 void PropType( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 60 void PropWidth( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 61 void PropHeight( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 67 virtual SbxVariable* Find( const String&, SbxClassType ); 90 void PropBold( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 91 void PropItalic( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 94 void PropSize( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 95 void PropName( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite ); 101 virtual SbxVariable* Find( const String&, SbxClassType ); 128 void MethClear( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite ); [all …]
|
H A D | sbxobj.hxx | 42 SbxArray* FindVar( SbxVariable*, sal_uInt16& ); 44 SbxArray* VCPtrFindVar( SbxVariable*, sal_uInt16& ); 75 virtual SbxVariable* FindUserData( sal_uInt32 nUserData ); 76 virtual SbxVariable* Find( const String&, SbxClassType ); 81 SbxVariable* Execute( const String& ); 86 virtual void Insert( SbxVariable* ); 89 void QuickInsert( SbxVariable* ); 91 void VCPtrInsert( SbxVariable* ); 93 virtual void Remove( SbxVariable* ); 95 void VCPtrRemove( SbxVariable* ); [all …]
|
H A D | sbxvar.hxx | 441 class BASIC_DLLPUBLIC SbxVariable : public SbxValue class 457 virtual ~SbxVariable(); 463 SbxVariable(); 464 SbxVariable( SbxDataType, void* = NULL ); 465 SbxVariable( const SbxVariable& ); 466 SbxVariable& operator=( const SbxVariable& ); 509 SV_DECL_REF(SbxVariable)
|
H A D | sbxprop.hxx | 32 class BASIC_DLLPUBLIC SbxProperty : public SbxVariable 40 : SbxVariable( t ) { SetName( r ); } in SbxProperty() 41 SbxProperty( const SbxProperty& r ) : SvRefBase( r ), SbxVariable( r ) {} in SbxProperty() 43 { SbxVariable::operator=( r ); return *this; } in operator =()
|
H A D | sbstar.hxx | 112 virtual void Insert( SbxVariable* ); 114 virtual void Remove( SbxVariable* ); 139 virtual SbxVariable* Find( const String&, SbxClassType ); 192 static SbxVariable* FindVarInCurrentScopy 207 SbxVariable* VBAFind( const String& rName, SbxClassType t );
|
/aoo42x/main/basic/source/runtime/ |
H A D | step2.cxx | 67 SbxVariable* pElem = NULL; in FindElement() 71 pElem = new SbxVariable; in FindElement() 86 SbxVariable* p = new SbxVariable; in FindElement() 275 SbxVariable* pNew = new SbxVariable( *((SbxVariable*)pElem) ); // das ist der Call! in FindElement() 484 SbxVariable* SbiRuntime::CheckArray( SbxVariable* pElem ) in CheckArray() 706 SbxVariable* p; in StepPARAM() 766 SbxVariable* q = new SbxVariable( t ); in StepPARAM() 955 SbxVariable* pNew = new SbxVariable; in StepCREATE() 1116 SbxVariable* pNew = new SbxVariable; in StepTCREATE() 1156 SbxVariable* p = new SbxVariable( t ); in StepLOCAL() [all …]
|
H A D | step0.cxx | 48 SbxVariable* getDefaultProp( SbxVariable* pRef ); 57 SbxVariable* p2 = GetTOS(); in StepArith() 96 SbxVariable* p = GetTOS(); in StepUnary() 290 SbxVariable* pRes = new SbxVariable; in StepLIKE() 323 SbxVariable* pRes = new SbxVariable; in StepIS() 380 if( (SbxVariable*) refVar == (SbxVariable*) pMeth ) in StepPUT() 516 if( (SbxVariable*) refVar == (SbxVariable*) pMeth ) in StepSET_Impl() 704 if( (SbxVariable*) refVar == (SbxVariable*) pMeth ) in StepLSET() 740 if( (SbxVariable*) refVar == (SbxVariable*) pMeth ) in StepRSET() 1061 SbxVariable* pCopyVar = new SbxVariable( t ); in StepBYVAL() [all …]
|
H A D | stdobj1.cxx | 70 void SbStdPicture::PropType( SbxVariable* pVar, SbxArray*, sal_Bool bWrite ) in PropType() 144 SbxVariable* SbStdPicture::Find( const String& rName, SbxClassType t ) in Find() 166 SbxVariable* pVar = pHint->GetVar(); in SFX_NOTIFY() 185 void SbStdFont::PropBold( SbxVariable* pVar, SbxArray*, sal_Bool bWrite ) in PropBold() 217 void SbStdFont::PropSize( SbxVariable* pVar, SbxArray*, sal_Bool bWrite ) in PropSize() 225 void SbStdFont::PropName( SbxVariable* pVar, SbxArray*, sal_Bool bWrite ) in PropName() 267 SbxVariable* SbStdFont::Find( const String& rName, SbxClassType t ) in Find() 288 SbxVariable* pVar = pHint->GetVar(); in SFX_NOTIFY() 347 void SbStdClipboard::MethClear( SbxVariable*, SbxArray* pPar_, sal_Bool ) in MethClear() argument 506 SbxVariable* SbStdClipboard::Find( const String& rName, SbxClassType t ) in Find() [all …]
|
H A D | step1.cxx | 43 SbxVariable* p = new SbxVariable( SbxDOUBLE ); in StepLOADNC() 67 SbxVariable* p = new SbxVariable; in StepLOADSC() 76 SbxVariable* p = new SbxVariable; in StepLOADI() 115 pVar = new SbxVariable( *pVar ); in StepARGTYP() 145 SbxVariable* p = GetTOS(); in StepPAD() 312 SbxVariableRef xVar = new SbxVariable( SbxVARIANT ); in StepTESTFOR() 313 unoToSbxValue( (SbxVariable*)xVar, aElem ); in StepTESTFOR() 441 SbxVariable* pClassVar = in implIsClass() 459 SbxVariable* pVal = (SbxVariable*)refVal; in checkClass_Impl() 535 SbxVariable* pRet = new SbxVariable; in StepTESTCLASS() [all …]
|
H A D | runtime.cxx | 629 SbxVariable* v = pParams->Get( j ); in SetParameters() 633 SbxVariable* pArrayVar = new SbxVariable( SbxVARIANT ); in SetParameters() 643 SbxVariable* v = pParams->Get( i ); in SetParameters() 663 SbxVariable* v2 = new SbxVariable( t ); in SetParameters() 694 SbxVariable* pArrayVar = new SbxVariable( SbxVARIANT ); in SetParameters() 989 return new SbxVariable; in PopVar() 1024 return new SbxVariable; in GetTOS() 1037 SbxVariable* pNew = new SbxVariable( *p ); in TOSMakeTemp() 1152 p->refEnd = (SbxVariable*)pArray; in PushForEach() 1248 SbxVariable* pVar = p->refEnd.Is() ? (SbxVariable*)p->refEnd : NULL; in FindForStackItemForCollection() [all …]
|
H A D | methods1.cxx | 240 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 257 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 274 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 292 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 313 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 330 SbxVariable *pSbxVariable = rPar.Get(1); in RTLFUNC() 790 SbxVariable* pVar = rPar.Get(i+1); in RTLFUNC() 791 SbxVariable* pNew = new SbxVariable( *pVar ); in RTLFUNC() 1187 SbxVariable* pVar2 = rPar.Get(2); in PutGet() 1224 SbxVariable* pVar = rPar.Get(3); in PutGet() [all …]
|
H A D | dllmgr.cxx | 100 UnmarshalData(SbxVariable * theVariable, void * theBuffer): in UnmarshalData() 103 SbxVariable * variable; 151 std::size_t alignment(SbxVariable * variable) { in alignment() 193 bool outer, SbxVariable * variable, bool special, 214 SbxVariable * variable, std::vector< char > & blob, std::size_t offset, in marshalStruct() 230 SbxVariable * variable, std::vector< char > & blob, std::size_t offset, in marshalArray() 262 bool outer, SbxVariable * variable, bool special, in marshal() 385 void const * unmarshal(SbxVariable * variable, void const * data) { in unmarshal() 452 SbError unmarshalString(StringData const & data, SbxVariable & result) { in unmarshalString() 482 SbxVariable & result) in call() [all …]
|
/aoo42x/main/basic/source/classes/ |
H A D | sb.cxx | 1322 SbxVariable* pRes = NULL; in Find() 1407 SbxVariable* pVar = NULL; in FindVarInCurrentScopy() 1412 pVar = PTR_CAST(SbxVariable,pSbx); in FindVarInCurrentScopy() 1910 SbxVariable** ppDeleteTab = new SbxVariable*[ nObjCount ]; in LoadData() 2083 SbxVariable* p; in Initialize() 2124 SbxVariable* pVar = p->GetVar(); in SFX_NOTIFY() 2195 SbxVariable* pItem = pPar_->Get(1); in CollAdd() 2237 SbxVariable* pKey = pPar_->Get(2); in CollAdd() 2271 SbxVariable* pRes = NULL; in CollItem() 2272 SbxVariable* p = pPar_->Get( 1 ); in CollItem() [all …]
|
H A D | sbunoobj.cxx | 141 SbxVariable* getDefaultProp( SbxVariable* pRef ) in getDefaultProp() 143 SbxVariable* pDefaultProp = NULL; in getDefaultProp() 1291 Any sbxToUnoValue( SbxVariable* pVar ) in sbxToUnoValue() 2087 SbxVariable* pVar = pHint->GetVar(); in TYPEINIT1() 2903 QuickInsert( (SbxVariable*)xVarRef ); in implCreateDbgProperties() 2907 QuickInsert( (SbxVariable*)xVarRef ); in implCreateDbgProperties() 2911 QuickInsert( (SbxVariable*)xVarRef ); in implCreateDbgProperties() 3380 SbxVariable* pConst = NULL; in getVBAConstant() 3654 SbxVariable* pVar = pHint->GetVar(); in SFX_NOTIFY() 3982 SbxVariable * pP = xSbxObj; in firing_impl() [all …]
|
H A D | sbxmod.cxx | 372 SbxVariable* pProp = ( SbxVariable* ) pProperty; in getValue() 777 SbxVariable* pVar = pHint->GetVar(); in SFX_NOTIFY() 941 SbxVariable* pVar = pObjs->Get( i ); in _SendHint() 1349 SbxVariable* pj = PTR_CAST(SbxVariable,pArray->Get( j )); in ClearPrivateVars() 1416 SbxVariable* pVar = PTR_CAST(SbxVariable,pArray->Get( j )); in ClearVarsDependingOnDeletedBasic() 1843 SbxVariable* pVar = pHint->GetVar(); in handleProcedureProperties() 1887 SbxVariable* pMeth = NULL; in handleProcedureProperties() 2182 SbxVariable* 2187 SbxVariable* 2191 SbxVariable* pVar = NULL; in Find() [all …]
|
/aoo42x/main/basic/source/inc/ |
H A D | object.hxx | 51 using SbxVariable::GetInfo; 59 ( SbxVariable* pThis, SbxArray* pArgs, sal_Bool bWrite ); 73 void Display( SbxVariable*, SbxArray*, sal_Bool ); 74 void Event( SbxVariable*, SbxArray*, sal_Bool ); 75 void Square( SbxVariable*, SbxArray*, sal_Bool ); 76 void Create( SbxVariable*, SbxArray*, sal_Bool ); 85 virtual SbxVariable* Find( const String&, SbxClassType );
|
H A D | runtime.hxx | 325 void SaveRef( SbxVariable* pVar ) in SaveRef() 348 SbxVariable* FindElement 350 void SetupArgs( SbxVariable*, sal_uInt32 ); 351 SbxVariable* CheckArray( SbxVariable* ); 353 void PushVar( SbxVariable* ); // Variable push 355 SbxVariable* GetTOS( short=0 ); // Variable vom TOS holen 428 SbxVariable* StepSTATIC_Impl( String& aName, SbxDataType& t ); 435 void implHandleSbxFlags( SbxVariable* pVar, SbxDataType t, sal_uInt32 nOp2 ); 477 inline void checkArithmeticOverflow( SbxVariable* pVar ) in checkArithmeticOverflow()
|
/aoo42x/main/basic/source/sample/ |
H A D | object.cxx | 123 SbxVariable* SampleObject::Find( const String& rName, SbxClassType t ) in Find() 126 SbxVariable* pRes = SbxObject::Find( rName, t ); in Find() 172 SbxVariable* pVar = pHint->GetVar(); in SFX_NOTIFY() 235 void SampleObject::Display( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Display() argument 243 void SampleObject::Square( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Square() 251 void SampleObject::Event( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Event() argument 258 void SampleObject::Create( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Create()
|
/aoo42x/main/scripting/source/basprov/ |
H A D | basscript.cxx | 45 extern ::com::sun::star::uno::Any sbxToUnoValue( SbxVariable* pVar ); 46 extern void unoToSbxValue( SbxVariable* pVar, const ::com::sun::star::uno::Any& aValue ); 166 SbxVariableRef xSbxVar = new SbxVariable( SbxVARIANT ); in invoke() 167 unoToSbxValue( static_cast< SbxVariable* >( xSbxVar ), pParams[i] ); in invoke() 179 SbxVariableRef xReturn = new SbxVariable; in invoke() 209 SbxVariable* pVar = xSbxParams->Get( n ); in invoke()
|