HomeSort by relevance Sort by last modified time
    Searched defs:getFactoryByIndex (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/common/
tcuFactoryRegistry.cpp 51 AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index)
57 const AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) const
tcuFactoryRegistry.hpp 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); }
101 const Factory* getDefaultFactory (void) const { return getFactoryByIndex(0); }
120 inline Factory* FactoryRegistry<Factory>::getFactoryByIndex (size_t index)
122 return static_cast<Factory*>(m_registry.getFactoryByIndex(index));
126 inline const Factory* FactoryRegistry<Factory>::getFactoryByIndex (size_t index) const
128 return static_cast<const Factory*>(m_registry.getFactoryByIndex(index))
    [all...]

Completed in 137 milliseconds