Lines Matching refs:pMeth

2090 		SbUnoMethod* pMeth = PTR_CAST(SbUnoMethod,pVar);  in TYPEINIT1()  local
2202 else if( pMeth ) in TYPEINIT1()
2204 bool bInvocation = pMeth->isInvocationBased(); in TYPEINIT1()
2216 const Sequence<ParamInfo>& rInfoSeq = pMeth->getParamInfos(); in TYPEINIT1()
2331 Any aRetAny = pMeth->m_xUnoMethod->invoke( getUnoAny(), args ); in TYPEINIT1()
2342 const Sequence<ParamInfo>& rInfoSeq = pMeth->getParamInfos(); in TYPEINIT1()
2358 if ( pMeth->needsDirectInvocation() ) in TYPEINIT1()
2363 aRetAny = xDirectInvoke->directInvoke( pMeth->GetName(), args ); in TYPEINIT1()
2368 … aRetAny = mxInvocation->invoke( pMeth->GetName(), args, OutParamIndex, OutParam ); in TYPEINIT1()
2592 SbUnoMethod* pMeth = pFirst; in clearUnoMethodsForBasic() local
2593 while( pMeth ) in clearUnoMethodsForBasic()
2595 SbxObject* pObject = dynamic_cast< SbxObject* >( pMeth->GetParent() ); in clearUnoMethodsForBasic()
2607 if( pMeth == pFirst ) in clearUnoMethodsForBasic()
2608 pFirst = pMeth->pNext; in clearUnoMethodsForBasic()
2609 else if( pMeth->pPrev ) in clearUnoMethodsForBasic()
2610 pMeth->pPrev->pNext = pMeth->pNext; in clearUnoMethodsForBasic()
2611 if( pMeth->pNext ) in clearUnoMethodsForBasic()
2612 pMeth->pNext->pPrev = pMeth->pPrev; in clearUnoMethodsForBasic()
2614 pMeth->pPrev = NULL; in clearUnoMethodsForBasic()
2615 pMeth->pNext = NULL; in clearUnoMethodsForBasic()
2617 pMeth->SbxValue::Clear(); in clearUnoMethodsForBasic()
2621 pMeth = pFirst; in clearUnoMethodsForBasic()
2624 pMeth = pMeth->pNext; in clearUnoMethodsForBasic()
2627 pMeth = pMeth->pNext; in clearUnoMethodsForBasic()
2633 SbUnoMethod* pMeth = pFirst; in clearUnoMethods() local
2634 while( pMeth ) in clearUnoMethods()
2636 pMeth->SbxValue::Clear(); in clearUnoMethods()
2637 pMeth = pMeth->pNext; in clearUnoMethods()
4476 SbMethod* pMeth = p != NULL ? PTR_CAST(SbMethod,p) : NULL; in setValue() local
4477 if( pMeth == NULL ) in setValue()
4492 pMeth->SetParameters( xArray ); in setValue()
4493 pMeth->Call( xValue ); in setValue()
4495 pMeth->SetParameters( NULL ); in setValue()
4517 SbMethod* pMeth = p != NULL ? PTR_CAST(SbMethod,p) : NULL; in getValue() local
4518 if( pMeth == NULL ) in getValue()
4527 pMeth->Call( xValue ); in getValue()
4572 SbMethod* pMeth = p != NULL ? PTR_CAST(SbMethod,p) : NULL; in invoke() local
4573 if( pMeth == NULL ) in invoke()
4598 pMeth->SetParameters( xArray ); in invoke()
4599 pMeth->Call( xValue ); in invoke()
4601 pMeth->SetParameters( NULL ); in invoke()
4848 …SbxVariableRef pMeth = pObj->Find( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "toString" ) ), S… in handleToStringForCOMObjects() local
4849 if ( pMeth.Is() ) in handleToStringForCOMObjects()
4852 pMeth->Get( aRes ); in handleToStringForCOMObjects()