Home
last modified time | relevance | path

Searched refs:pPar_ (Results 1 – 8 of 8) sorted by relevance

/AOO41X/main/basic/source/runtime/
H A Dstdobj1.cxx167 SbxArray* pPar_ = pVar->GetParameters(); in SFX_NOTIFY() local
174 case ATTR_IMP_TYPE: PropType( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
175 case ATTR_IMP_WIDTH: PropWidth( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
176 case ATTR_IMP_HEIGHT: PropHeight( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
289 SbxArray* pPar_ = pVar->GetParameters(); in SFX_NOTIFY() local
296 case ATTR_IMP_BOLD: PropBold( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
297 case ATTR_IMP_ITALIC: PropItalic( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
298 case ATTR_IMP_STRIKETHROUGH:PropStrikeThrough( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
299 case ATTR_IMP_UNDERLINE: PropUnderline( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
300 case ATTR_IMP_SIZE: PropSize( pVar, pPar_, bWrite ); return; in SFX_NOTIFY()
[all …]
H A Dstdobj.cxx742 SbxArray* pPar_ = pVar->GetParameters(); in SFX_NOTIFY() local
757 SbxArrayRef rPar( pPar_ ); in SFX_NOTIFY()
758 if( !pPar_ ) in SFX_NOTIFY()
760 rPar = pPar_ = new SbxArray; in SFX_NOTIFY()
761 pPar_->Put( pVar, 0 ); in SFX_NOTIFY()
763 p( (StarBASIC*) GetParent(), *pPar_, bWrite ); in SFX_NOTIFY()
/AOO41X/main/basic/source/sbx/
H A Dsbxcoll.cxx160 void SbxCollection::CollAdd( SbxArray* pPar_ ) in CollAdd() argument
162 if( pPar_->Count() != 2 ) in CollAdd()
166 SbxBase* pObj = pPar_->Get( 1 )->GetObject(); in CollAdd()
176 void SbxCollection::CollItem( SbxArray* pPar_ ) in CollItem() argument
178 if( pPar_->Count() != 2 ) in CollItem()
183 SbxVariable* p = pPar_->Get( 1 ); in CollItem()
194 pPar_->Get( 0 )->PutObject( pRes ); in CollItem()
200 void SbxCollection::CollRemove( SbxArray* pPar_ ) in CollRemove() argument
202 if( pPar_->Count() != 2 ) in CollRemove()
206 short n = pPar_->Get( 1 )->GetInteger(); in CollRemove()
[all …]
/AOO41X/main/basic/source/sample/
H A Dobject.cxx173 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()
[all …]
H A Dcollelem.cxx53 SbxArray* pPar_ = pVar->GetParameters(); in SFX_NOTIFY() local
59 if( !pPar_ || pPar_->Count() != 2 ) in SFX_NOTIFY()
65 s += pPar_->Get( 1 )->GetString(); in SFX_NOTIFY()
66 pPar_->Get( 0 )->SetType(SbxSTRING); in SFX_NOTIFY()
67 pPar_->Get( 0 )->PutString( s ); in SFX_NOTIFY()
/AOO41X/main/basic/inc/basic/
H A Dsbstdobj.hxx127 void MethClear( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
128 void MethGetData( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
129 void MethGetFormat( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
130 void MethGetText( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
131 void MethSetData( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
132 void MethSetText( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
/AOO41X/main/basic/source/classes/
H A Dsb.cxx2186 void BasicCollection::CollAdd( SbxArray* pPar_ ) in CollAdd() argument
2188 sal_uInt16 nCount = pPar_->Count(); in CollAdd()
2195 SbxVariable* pItem = pPar_->Get(1); in CollAdd()
2205 SbxVariable* pBefore = pPar_->Get(3); in CollAdd()
2213 SbxVariable* pAfter = pPar_->Get(4); in CollAdd()
2237 SbxVariable* pKey = pPar_->Get(2); in CollAdd()
2264 void BasicCollection::CollItem( SbxArray* pPar_ ) in CollItem() argument
2266 if( pPar_->Count() != 2 ) in CollItem()
2272 SbxVariable* p = pPar_->Get( 1 ); in CollItem()
2279 *(pPar_->Get(0)) = *pRes; in CollItem()
[all …]
/AOO41X/main/basic/source/inc/
H A Dsbunoobj.hxx321 void CollAdd( SbxArray* pPar_ );
322 void CollItem( SbxArray* pPar_ );
323 void CollRemove( SbxArray* pPar_ );