Home
last modified time | relevance | path

Searched refs:getFactoryByIndex (Results 1 – 4 of 4) sorted by relevance

/external/deqp/framework/common/
DtcuFactoryRegistry.hpp57 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::FactoryRegistry
122 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::FactoryRegistry
128 return static_cast<const Factory*>(m_registry.getFactoryByIndex(index)); in getFactoryByIndex()
DtcuFactoryRegistry.cpp51 AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) in getFactoryByIndex() function in tcu::GenericFactoryRegistry
57 const AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) const in getFactoryByIndex() function in tcu::GenericFactoryRegistry
/external/deqp/framework/egl/
DegluUtil.cpp454 …tcu::print(" %s: %s\n", registry.getFactoryByIndex(ndx)->getName(), registry.getFactoryByIndex(nd… in selectFactory()
/external/deqp/framework/opengl/
DgluRenderContext.cpp148 const ContextFactory* curFactory = registry.getFactoryByIndex(factoryNdx); in createDefaultRenderContext()