Lines Matching refs:pITD

398 	typelib_InterfaceTypeDescription * pITD = (typelib_InterfaceTypeDescription *)pTD;  in typelib_typedescription_initTables()  local
400 sal_Bool * pReadWriteAttributes = (sal_Bool *)alloca( pITD->nAllMembers ); in typelib_typedescription_initTables()
401 for ( sal_Int32 i = pITD->nAllMembers; i--; ) in typelib_typedescription_initTables()
404 if( typelib_TypeClass_INTERFACE_ATTRIBUTE == pITD->ppAllMembers[i]->eTypeClass ) in typelib_typedescription_initTables()
407 TYPELIB_DANGER_GET( &pM, pITD->ppAllMembers[i] ); in typelib_typedescription_initTables()
417 … OString aStr( OUStringToOString( pITD->ppAllMembers[i]->pTypeName, RTL_TEXTENCODING_ASCII_US ) ); in typelib_typedescription_initTables()
428 pITD->pMapMemberIndexToFunctionIndex = new sal_Int32[ pITD->nAllMembers ]; in typelib_typedescription_initTables()
431 for( i = 0; i < pITD->nAllMembers; i++ ) in typelib_typedescription_initTables()
434 pITD->pMapMemberIndexToFunctionIndex[i] = i + nAdditionalOffset; in typelib_typedescription_initTables()
444 pITD->pMapFunctionIndexToMemberIndex = new sal_Int32[ pITD->nAllMembers + nAdditionalOffset ]; in typelib_typedescription_initTables()
446 for( i = 0; i < pITD->nAllMembers; i++ ) in typelib_typedescription_initTables()
449 pITD->pMapFunctionIndexToMemberIndex[i + nAdditionalOffset] = i; in typelib_typedescription_initTables()
454 pITD->pMapFunctionIndexToMemberIndex[i + ++nAdditionalOffset] = i; in typelib_typedescription_initTables()
458 pITD->nMapFunctionIndexToMemberIndex = pITD->nAllMembers + nAdditionalOffset; in typelib_typedescription_initTables()
1139 typelib_InterfaceTypeDescription * pITD = 0; in typelib_typedescription_newMIInterface() local
1141 (typelib_TypeDescription **)&pITD, typelib_TypeClass_INTERFACE, pTypeName ); in typelib_typedescription_newMIInterface()
1143 pITD->nBaseTypes = nBaseInterfaces; in typelib_typedescription_newMIInterface()
1144 pITD->ppBaseTypes = new typelib_InterfaceTypeDescription *[nBaseInterfaces]; in typelib_typedescription_newMIInterface()
1146 pITD->ppBaseTypes[i] = 0; in typelib_typedescription_newMIInterface()
1149 &pITD->ppBaseTypes[i]), in typelib_typedescription_newMIInterface()
1151 if (pITD->ppBaseTypes[i] == 0 in typelib_typedescription_newMIInterface()
1154 &pITD->ppBaseTypes[i]), in typelib_typedescription_newMIInterface()
1160 OSL_ASSERT(pITD->ppBaseTypes[i] != 0); in typelib_typedescription_newMIInterface()
1163 pITD->pBaseTypeDescription = pITD->ppBaseTypes[0]; in typelib_typedescription_newMIInterface()
1166 pITD->aUik.m_Data1 = nUik1; in typelib_typedescription_newMIInterface()
1167 pITD->aUik.m_Data2 = nUik2; in typelib_typedescription_newMIInterface()
1168 pITD->aUik.m_Data3 = nUik3; in typelib_typedescription_newMIInterface()
1169 pITD->aUik.m_Data4 = nUik4; in typelib_typedescription_newMIInterface()
1170 pITD->aUik.m_Data5 = nUik5; in typelib_typedescription_newMIInterface()
1172 BaseList aBaseList(pITD); in typelib_typedescription_newMIInterface()
1173 pITD->nAllMembers = nMembers + aBaseList.getBaseMembers(); in typelib_typedescription_newMIInterface()
1174 pITD->nMembers = nMembers; in typelib_typedescription_newMIInterface()
1176 if( pITD->nAllMembers ) in typelib_typedescription_newMIInterface()
1179 pITD->ppAllMembers = new typelib_TypeDescriptionReference *[ pITD->nAllMembers ]; in typelib_typedescription_newMIInterface()
1188 = pITD->ppBaseTypes[i->directBaseIndex]; in typelib_typedescription_newMIInterface()
1199 aBuf.append(pITD->aBase.pTypeName); in typelib_typedescription_newMIInterface()
1205 pITD->ppAllMembers[n++] = pDerivedMember; in typelib_typedescription_newMIInterface()
1211 pITD->ppMembers = pITD->ppAllMembers + aBaseList.getBaseMembers(); in typelib_typedescription_newMIInterface()
1218 pITD->ppAllMembers[n++] = ppMembers[i]; in typelib_typedescription_newMIInterface()
1222 typelib_TypeDescription * pTmp = (typelib_TypeDescription *)pITD; in typelib_typedescription_newMIInterface()
1229 *ppRet = pITD; in typelib_typedescription_newMIInterface()
1503 typelib_InterfaceTypeDescription * pITD = (typelib_InterfaceTypeDescription*)pTD; in typelib_typedescription_destructExtendedMembers() local
1504 {for( sal_Int32 i = 0; i < pITD->nAllMembers; i++ ) in typelib_typedescription_destructExtendedMembers()
1506 typelib_typedescriptionreference_release( pITD->ppAllMembers[i] ); in typelib_typedescription_destructExtendedMembers()
1508 delete [] pITD->ppAllMembers; in typelib_typedescription_destructExtendedMembers()
1509 delete [] pITD->pMapMemberIndexToFunctionIndex; in typelib_typedescription_destructExtendedMembers()
1510 delete [] pITD->pMapFunctionIndexToMemberIndex; in typelib_typedescription_destructExtendedMembers()
1511 {for (sal_Int32 i = 0; i < pITD->nBaseTypes; ++i) { in typelib_typedescription_destructExtendedMembers()
1514 pITD->ppBaseTypes[i])); in typelib_typedescription_destructExtendedMembers()
1516 delete[] pITD->ppBaseTypes; in typelib_typedescription_destructExtendedMembers()