Lines Matching refs:interfaces

282          std::hash_set< OString, OStringHash >& interfaces,  in checkDefaultInterfaces()
287 if (interfaces.find("com.sun.star.lang.XServiceInfo") != interfaces.end()) in checkDefaultInterfaces()
288 interfaces.erase("com.sun.star.lang.XServiceInfo"); in checkDefaultInterfaces()
290 if (interfaces.find("com.sun.star.lang.XServiceInfo") == interfaces.end()) in checkDefaultInterfaces()
291 interfaces.insert("com.sun.star.lang.XServiceInfo"); in checkDefaultInterfaces()
295 if (interfaces.find("com.sun.star.beans.XPropertySet") in checkDefaultInterfaces()
296 != interfaces.end()) in checkDefaultInterfaces()
297 interfaces.erase("com.sun.star.beans.XPropertySet"); in checkDefaultInterfaces()
298 if (interfaces.find("com.sun.star.beans.XFastPropertySet") in checkDefaultInterfaces()
299 != interfaces.end()) in checkDefaultInterfaces()
300 interfaces.erase("com.sun.star.beans.XFastPropertySet"); in checkDefaultInterfaces()
301 if (interfaces.find("com.sun.star.beans.XPropertyAccess") in checkDefaultInterfaces()
302 != interfaces.end()) in checkDefaultInterfaces()
303 interfaces.erase("com.sun.star.beans.XPropertyAccess"); in checkDefaultInterfaces()
333 const std::hash_set< OString, OStringHash >& interfaces, in checkPropertyHelper()
344 iter = interfaces.begin(); in checkPropertyHelper()
345 end = interfaces.end(); in checkPropertyHelper()
420 std::hash_set< OString, OStringHash >& interfaces) in checkXComponentSupport()
422 if ( interfaces.empty() ) in checkXComponentSupport()
426 interfaces.begin(); in checkXComponentSupport()
427 while ( iter != interfaces.end() ) { in checkXComponentSupport()
429 interfaces.erase("com.sun.star.lang.XComponent"); in checkXComponentSupport()
692 const std::hash_set< OString, OStringHash >& interfaces) in generateFunctionParameterMap()
696 std::hash_set< OString, OStringHash >::const_iterator iter = interfaces.begin(); in generateFunctionParameterMap()
697 while ( iter != interfaces.end() ) { in generateFunctionParameterMap()