Searched refs:getFactoryByIndex (Results 1 – 4 of 4) sorted by relevance
57 AbstractFactory* getFactoryByIndex (size_t index);58 const AbstractFactory* getFactoryByIndex (size_t index) const;97 Factory* getFactoryByIndex (size_t index);98 const Factory* getFactoryByIndex (size_t index) const;100 Factory* getDefaultFactory (void) { return getFactoryByIndex(0); } in getDefaultFactory()101 const Factory* getDefaultFactory (void) const { return getFactoryByIndex(0); } in getDefaultFactory()120 inline Factory* FactoryRegistry<Factory>::getFactoryByIndex (size_t index) in getFactoryByIndex() function in tcu::FactoryRegistry122 return static_cast<Factory*>(m_registry.getFactoryByIndex(index)); in getFactoryByIndex()126 inline const Factory* FactoryRegistry<Factory>::getFactoryByIndex (size_t index) const in getFactoryByIndex() function in tcu::FactoryRegistry128 return static_cast<const Factory*>(m_registry.getFactoryByIndex(index)); in getFactoryByIndex()
51 AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) in getFactoryByIndex() function in tcu::GenericFactoryRegistry57 const AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) const in getFactoryByIndex() function in tcu::GenericFactoryRegistry
520 …tcu::print(" %s: %s\n", registry.getFactoryByIndex(ndx)->getName(), registry.getFactoryByIndex(nd… in selectFactory()
153 const ContextFactory* curFactory = registry.getFactoryByIndex(factoryNdx); in createRenderContext()