Lines Matching refs:SbxObject

35 TYPEINIT2(SbxObject,SbxVariable,SfxListener)
46 SbxObject::SbxObject( const XubString& rClass ) in SbxObject() function in SbxObject
57 SbxObject::Clear(); in SbxObject()
58 SbxObject::SetName( rClass ); in SbxObject()
61 SbxObject::SbxObject( const SbxObject& rObj ) in SbxObject() function in SbxObject
68 SbxObject& SbxObject::operator=( const SbxObject& r ) in operator =()
90 static void CheckParentsOnDelete( SbxObject* pObj, SbxArray* p ) in CheckParentsOnDelete()
106 SbxObject::~SbxObject() in ~SbxObject()
116 SbxDataType SbxObject::GetType() const in GetType()
121 SbxClassType SbxObject::GetClass() const in GetClass()
126 void SbxObject::Clear() in Clear()
141 void SbxObject::SFX_NOTIFY( SfxBroadcaster&, const TypeId&, in SFX_NOTIFY()
166 SbxObject* p_ = GetParent(); in SFX_NOTIFY()
175 sal_Bool SbxObject::IsClass( const XubString& rName ) const in IsClass()
180 SbxVariable* SbxObject::FindUserData( sal_uInt32 nData ) in FindUserData()
193 SbxObject* pCur = this; in FindUserData()
211 SbxVariable* SbxObject::Find( const XubString& rName, SbxClassType t ) in Find()
260 SbxObject* pCur = this; in Find()
292 sal_Bool SbxObject::Call( const XubString& rName, SbxArray* pParam ) in Call()
308 SbxProperty* SbxObject::GetDfltProperty() in GetDfltProperty()
318 void SbxObject::SetDfltProperty( const XubString& rName ) in SetDfltProperty()
326 void SbxObject::SetDfltProperty( SbxProperty* p ) in SetDfltProperty()
345 SbxArray* SbxObject::FindVar( SbxVariable* pVar, sal_uInt16& nArrayIdx ) in FindVar()
379 SbxVariable* SbxObject::Make( const XubString& rName, SbxClassType ct, SbxDataType dt ) in Make()
441 SbxObject* SbxObject::MakeObject( const XubString& rName, const XubString& rClass ) in MakeObject()
463 return PTR_CAST(SbxObject,pRes); in MakeObject()
466 SbxObject* pVar = CreateObject( rClass ); in MakeObject()
480 void SbxObject::Insert( SbxVariable* pVar ) in Insert()
532 if ( !aVarName.Len() && pVar->ISA(SbxObject) ) in Insert()
533 aVarName = PTR_CAST(SbxObject,pVar)->GetClassName(); in Insert()
546 void SbxObject::QuickInsert( SbxVariable* pVar ) in QuickInsert()
572 if ( !aVarName.Len() && pVar->ISA(SbxObject) ) in QuickInsert()
573 aVarName = PTR_CAST(SbxObject,pVar)->GetClassName(); in QuickInsert()
585 void SbxObject::VCPtrInsert( SbxVariable* pVar ) in VCPtrInsert()
611 void SbxObject::Remove( const XubString& rName, SbxClassType t ) in Remove()
613 Remove( SbxObject::Find( rName, t ) ); in Remove()
616 void SbxObject::Remove( SbxVariable* pVar ) in Remove()
624 if ( !aVarName.Len() && pVar->ISA(SbxObject) ) in Remove()
625 aVarName = PTR_CAST(SbxObject,pVar)->GetClassName(); in Remove()
643 void SbxObject::VCPtrRemove( SbxVariable* pVar ) in VCPtrRemove()
664 SbxArray* SbxObject::VCPtrFindVar( SbxVariable* pVar, sal_uInt16& nArrayIdx ) in VCPtrFindVar()
693 void SbxObject::SetPos( SbxVariable* pVar, sal_uInt16 nPos ) in SetPos()
712 static sal_Bool LoadArray( SvStream& rStrm, SbxObject* pThis, SbxArray* pArray ) in LoadArray()
733 sal_Bool SbxObject::LoadData( SvStream& rStrm, sal_uInt16 nVer ) in LoadData()
770 sal_Bool SbxObject::StoreData( SvStream& rStrm ) const in StoreData()
793 ((SbxObject*) this)->SetModified( sal_False ); in StoreData()
797 XubString SbxObject::GenerateSource( const XubString &rLinePrefix, in GenerateSource()
798 const SbxObject* ) in GenerateSource() argument
889 void SbxObject::Dump( SvStream& rStrm, sal_Bool bFill ) in Dump()
963 ((SbxObject*) pVar->GetValues_Impl().pObj)->Dump( rStrm, bFill ); in Dump()
996 ((SbxObject*) pVar->GetValues_Impl().pObj)->Dump( rStrm, bFill ); in Dump()
1014 if ( pVar->ISA(SbxObject) ) in Dump()
1015 ((SbxObject*) pVar)->Dump( rStrm, bFill ); in Dump()
1026 SvDispatch* SbxObject::GetSvDispatch() in GetSvDispatch()
1050 void SbxObject::GarbageCollection( sal_uIntPtr nObjects ) in GarbageCollection()
1075 SbxObject *pObj = rObjects.GetCurObject(); in GarbageCollection()
1082 SbxObject *pParent = PTR_CAST( SbxObject, pObj->GetParent() ); in GarbageCollection()
1129 SbxObject *pObj = PTR_CAST(SbxObject, pVar); in GarbageCollection()
1134 else if ( !pVar->GetParent() || !pVar->GetParent()->ISA(SbxObject) ) in GarbageCollection()