Lines Matching refs:SampleObject
90 SampleObject::Methods SampleObject::aMethods[] = {
92 { "Display", SbxEMPTY, &SampleObject::Display, 1 | _FUNCTION },
96 { "Square", SbxDOUBLE, &SampleObject::Square, 1 | _FUNCTION },
100 { "Event", SbxEMPTY, &SampleObject::Event, 1 | _FUNCTION },
104 { "Create", SbxEMPTY, &SampleObject::Create, 1 | _FUNCTION },
110 SampleObject::SampleObject( const String& rClass ) : SbxObject( rClass ) in SampleObject() function in SampleObject
123 SbxVariable* SampleObject::Find( const String& rName, SbxClassType t ) in Find()
166 void SampleObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCT, in SFX_NOTIFY()
208 SbxInfo* SampleObject::GetInfo( short nIdx ) in GetInfo()
235 void SampleObject::Display( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Display()
243 void SampleObject::Square( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Square()
251 void SampleObject::Event( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Event()
258 void SampleObject::Create( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Create()
269 return new SampleObject( rClass ); in CreateObject()