Lines Matching refs:name

225 			const char* name	 = (*it).c_str();
226 glw::GLint location = m_gl.getUniformLocation(getProgram(), name);
230 locations[name] = location;
437 LayoutBindingBaseCase(Context& context, const char* name, const char* description, StageType stage,
470 char const* name;
853 virtual String buildBlockName(const String& /*name*/)
858 virtual String buildBlock(const String& /*name*/, const String& /*type*/ = String("float"))
1078 LayoutBindingBaseCase::LayoutBindingBaseCase(Context& context, const char* name, const char* description,
1081 : TestCase(context, name, description)
1127 log << tcu::TestLog::Section((*it).name, (*it).description);
1133 log << tcu::TestLog::Section((*it).name, (*it).description);
1963 SamplerLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage,
2024 SamplerLayoutBindingCase::SamplerLayoutBindingCase(Context& context, const char* name, const char* description,
2027 : LayoutBindingBaseCase(context, name, description, stage, samplerType, glslVersion)
2042 ImageLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage,
2178 ImageLayoutBindingCase::ImageLayoutBindingCase(Context& context, const char* name, const char* description,
2181 : LayoutBindingBaseCase(context, name, description, stage, samplerType, glslVersion)
2196 AtomicCounterLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage,
2922 AtomicCounterLayoutBindingCase::AtomicCounterLayoutBindingCase(Context& context, const char* name,
2926 : LayoutBindingBaseCase(context, name, description, stage, samplerType, glslVersion)
2937 UniformBlocksLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage,
3008 String buildBlockName(const String& name)
3011 return name;
3015 String buildBlock(const String& name, const String& type)
3020 s << type << " " << name << "_a; ";
3021 s << type << " " << name << "_b; ";
3108 UniformBlocksLayoutBindingCase::UniformBlocksLayoutBindingCase(Context& context, const char* name,
3112 : LayoutBindingBaseCase(context, name, description, stage, samplerType, glslVersion), m_buffername(0)
3128 ShaderStorageBufferLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage,
3217 String buildBlockName(const String& name)
3219 return name;
3223 String buildBlock(const String& name, const String& type)
3227 s << type << " " << name << "_a[2];\n";
3327 ShaderStorageBufferLayoutBindingCase::ShaderStorageBufferLayoutBindingCase(Context& context, const char* name,
3331 : LayoutBindingBaseCase(context, name, description, stage, samplerType, glslVersion), m_buffername(0)
3367 // create test name which must be unique or dEQP framework will throw
3375 s << stageType.name;