/trunk/main/scripting/source/basprov/ |
H A D | basmodnode.cxx | 92 SbxArray* pMethods = m_pModule->GetMethods(); in getChildNodes() local 93 if ( pMethods ) in getChildNodes() 95 sal_Int32 nCount = pMethods->Count(); in getChildNodes() 99 … SbMethod* pMethod = static_cast< SbMethod* >( pMethods->Get( static_cast< sal_uInt16 >( i ) ) ); in getChildNodes() 109 … SbMethod* pMethod = static_cast< SbMethod* >( pMethods->Get( static_cast< sal_uInt16 >( i ) ) ); in getChildNodes() 128 SbxArray* pMethods = m_pModule->GetMethods(); in hasChildNodes() local 129 if ( pMethods && pMethods->Count() > 0 ) in hasChildNodes()
|
H A D | basprov.cxx | 407 SbxArray* pMethods = pModule->GetMethods(); in getScript() local 408 if ( pMethods ) in getScript() 410 … SbMethod* pMethod = static_cast< SbMethod* >( pMethods->Find( aMethod, SbxCLASS_METHOD ) ); in getScript()
|
/trunk/main/basic/source/sbx/ |
H A D | sbxobj.cxx | 74 pMethods = new SbxArray; in operator =() 78 *pMethods = *r.pMethods; in operator =() 109 CheckParentsOnDelete( this, pMethods ); in ~SbxObject() 128 pMethods = new SbxArray; in Clear() 231 pRes = pMethods->Find( rName, SbxCLASS_METHOD ); in Find() 244 case SbxCLASS_METHOD: pArray = pMethods; break; in Find() 352 case SbxCLASS_METHOD: pArray = pMethods; break; in FindVar() 387 case SbxCLASS_METHOD: pArray = pMethods; break; in Make() 759 if( !LoadArray( rStrm, this, pMethods ) in LoadData() 787 if( !pMethods->Store( rStrm ) ) in StoreData() [all …]
|
/trunk/main/basic/source/classes/ |
H A D | sbxmod.cxx | 575 for( i = 0; i < pMethods->Count(); i++ ) in StartDefinitions() 577 SbMethod* p = PTR_CAST(SbMethod,pMethods->Get( i ) ); in StartDefinitions() 598 pMethods->Remove( p ); in GetMethod() 604 pMethods->Put( pMeth, pMethods->Count() ); in GetMethod() 662 pMethods->Remove( p ); in GetIfaceMapperMethod() 668 pMethods->Put( pMapperMethod, pMethods->Count() ); in GetIfaceMapperMethod() 685 for( sal_uInt16 i = 0; i < pMethods->Count(); ) in TYPEINIT1() 691 pMethods->Remove( p ); in TYPEINIT1() 918 for( sal_uInt16 i = 0; i < pMethods->Count(); i++ ) in GetFunctionForLine() 920 SbMethod* p = (SbMethod*) pMethods->Get( i ); in GetFunctionForLine() [all …]
|
H A D | sb.cxx | 656 pMethods->PutDirect( pNewMethod, i ); in TYPEINIT1() 680 SbxVariable* p = pMethods->Find( aImplMethodName, SbxCLASS_METHOD ); in TYPEINIT1() 689 pMethods->PutDirect( pNewIfaceMethod, i ); in TYPEINIT1()
|
H A D | sbunoobj.cxx | 2009 SbxArray* pMethods = pUnoObj->GetMethods(); in Impl_DumpMethods() local 2010 sal_uInt16 nMethodCount = pMethods->Count(); in Impl_DumpMethods() 2019 SbxVariable* pVar = pMethods->Get( i ); in Impl_DumpMethods() 2917 pMethods = new SbxArray; in implCreateAll()
|
/trunk/main/eventattacher/source/ |
H A D | eventattacher.cxx | 623 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in attachListener() local 628 const Reference< XIdlMethod >& rxMethod = pMethods[i]; in attachListener() 774 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in removeListener() local 778 const Reference< XIdlMethod >& rxMethod = pMethods[i]; in removeListener()
|
/trunk/main/basctl/source/basicide/ |
H A D | basobj2.cxx | 439 SbxArray* pMethods = xModule->GetMethods(); in HasMethod() local 440 if ( pMethods ) in HasMethod() 442 SbMethod* pMethod = (SbMethod*)pMethods->Find( rMethName, SbxCLASS_METHOD ); in HasMethod()
|
/trunk/main/basic/inc/basic/ |
H A D | sbxobj.hxx | 46 SbxArrayRef pMethods; // Methods member in SbxObject 102 SbxArray* GetMethods() { return pMethods; } in GetMethods()
|
/trunk/main/filter/source/msfilter/ |
H A D | msvbahelper.cxx | 197 SbxArray* pMethods = pModule->GetMethods(); in hasMacro() local 198 if ( pMethods ) in hasMacro() 200 … SbMethod* pMethod = static_cast< SbMethod* >( pMethods->Find( sMacro, SbxCLASS_METHOD ) ); in hasMacro()
|
/trunk/main/extensions/source/propctrlr/ |
H A D | eventhandler.cxx | 805 const ::rtl::OUString* pMethods = aMethods.getConstArray(); in getSupportedProperties() local 808 for (sal_uInt32 method = 0 ; method < methodCount ; ++method, ++pMethods ) in getSupportedProperties() 811 if ( !lcl_getEventDescriptionForMethod( *pMethods, aEvent ) ) in getSupportedProperties() 818 lcl_getEventPropertyName( sListenerClassName, *pMethods ), aEvent ) ); in getSupportedProperties()
|
/trunk/main/stoc/source/invocation/ |
H A D | invocation.cxx | 808 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in getInfoSequenceImpl() local 835 Reference< XIdlMethod > xMethod = pMethods[ i ]; in getInfoSequenceImpl() 877 fillInfoForMethod( pRetInfos[ iTotal ], pMethods[ rItem.nIndex ] ); in getInfoSequenceImpl()
|
/trunk/main/stoc/source/inspect/ |
H A D | introspection.cxx | 378 const Reference<XIdlMethod>* pMethods = maAllMethodSeq.getConstArray(); in getMethodIndex() local 379 const Reference<XIdlMethod> xMethod = pMethods[ iHashResult ]; in getMethodIndex() 395 const Reference<XIdlMethod> xMethod2 = pMethods[ i ]; in getMethodIndex() 1345 const Reference<XIdlMethod>* pMethods = mpStaticImpl->getMethods().getConstArray(); in getMethod() local 1346 xRet = pMethods[i]; in getMethod()
|
/trunk/main/basic/source/comp/ |
H A D | sbcomp.cxx | 1012 for( sal_uInt16 i = 0; i < pMethods->Count(); i++ ) in Compile() 1014 SbMethod* p = PTR_CAST(SbMethod,pMethods->Get( i ) ); in Compile()
|
/trunk/main/stoc/test/ |
H A D | testintrosp.cxx | 1450 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in test_introsp() local 1457 const Reference< XIdlMethod >& rxMethod = pMethods[i]; in test_introsp()
|