Lines Matching refs:pPar_
173 SbxArray* pPar_ = pVar->GetParameters(); in SFX_NOTIFY() local
191 if( ( !pPar_ && nPar ) in SFX_NOTIFY()
192 || ( pPar_->Count() != nPar+1 ) ) in SFX_NOTIFY()
197 (this->*(aMethods[ nIndex ].pFunc))( pVar, pPar_, bWrite ); in SFX_NOTIFY()
235 void SampleObject::Display( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Display() argument
238 String s( pPar_->Get( 1 )->GetString() ); in Display()
243 void SampleObject::Square( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Square() argument
245 double n = pPar_->Get( 1 )->GetDouble(); in Square()
251 void SampleObject::Event( SbxVariable*, SbxArray* pPar_, sal_Bool ) in Event() argument
253 Call( pPar_->Get( 1 )->GetString(), NULL ); in Event()
258 void SampleObject::Create( SbxVariable* pVar, SbxArray* pPar_, sal_Bool ) in Create() argument
261 …MakeObject( pPar_->Get( 1 )->GetString(), String( RTL_CONSTASCII_USTRINGPARAM("SampleElement") ) )… in Create()