Lines Matching refs:pParams

711 			pTmp->pParams = 0;  in typelib_typedescription_newEmpty()
1261 typelib_Parameter_Init * pParams, in typelib_typedescription_newInterfaceMethod() argument
1303 (*ppRet)->pParams = new typelib_MethodParameter[ nParams ]; in typelib_typedescription_newInterfaceMethod()
1308 (*ppRet)->pParams[ i ].pName = 0; in typelib_typedescription_newInterfaceMethod()
1309 rtl_uString_acquire( (*ppRet)->pParams[ i ].pName = pParams[i].pParamName ); in typelib_typedescription_newInterfaceMethod()
1310 (*ppRet)->pParams[ i ].pTypeRef = 0; in typelib_typedescription_newInterfaceMethod()
1313 &(*ppRet)->pParams[ i ].pTypeRef, pParams[i].eTypeClass, pParams[i].pTypeName ); in typelib_typedescription_newInterfaceMethod()
1314 (*ppRet)->pParams[ i ].bIn = pParams[i].bIn; in typelib_typedescription_newInterfaceMethod()
1315 (*ppRet)->pParams[ i ].bOut = pParams[i].bOut; in typelib_typedescription_newInterfaceMethod()
1524 rtl_uString_release( pIMTD->pParams[ i ].pName ); in typelib_typedescription_destructExtendedMembers()
1525 typelib_typedescriptionreference_release( pIMTD->pParams[ i ].pTypeRef ); in typelib_typedescription_destructExtendedMembers()
1527 delete [] pIMTD->pParams; in typelib_typedescription_destructExtendedMembers()
1992 newMethod->pParams = new typelib_MethodParameter[ in createDerivedInterfaceMemberDescription()
1996 newMethod->pParams[i].pName in createDerivedInterfaceMemberDescription()
1997 = baseMethod->pParams[i].pName); in createDerivedInterfaceMemberDescription()
1999 newMethod->pParams[i].pTypeRef in createDerivedInterfaceMemberDescription()
2000 = baseMethod->pParams[i].pTypeRef); in createDerivedInterfaceMemberDescription()
2001 newMethod->pParams[i].bIn = baseMethod->pParams[i].bIn; in createDerivedInterfaceMemberDescription()
2002 newMethod->pParams[i].bOut = baseMethod->pParams[i].bOut; in createDerivedInterfaceMemberDescription()