Lines Matching defs:description
53 ExtensionPackTestCase (Context& context, const char* name, const char* description);
59 ExtensionPackTestCase::ExtensionPackTestCase (Context& context, const char* name, const char* description)
60 : TestCase (context, name, description)
73 ImplementationLimitCase (Context& context, const char* name, const char* description, glw::GLenum target, int limit);
82 ImplementationLimitCase::ImplementationLimitCase (Context& context, const char* name, const char* description, glw::GLenum target, int limit)
83 : ExtensionPackTestCase (context, name, description)
122 SubExtensionCase (Context& context, const char* name, const char* description, const char* extension);
130 SubExtensionCase::SubExtensionCase (Context& context, const char* name, const char* description, const char* extension)
131 : ExtensionPackTestCase (context, name, description)
252 const std::string description = "Check that extension " + name + " is supported if extension pack is supported";
253 group->addChild(new SubExtensionCase(m_context, name.c_str(), description.c_str(), subExtensions[ndx]));