Lines Matching defs:name
21 // Neither the name of 3Dlabs Inc. Ltd. nor the names of its
235 spv::Id getExtBuiltins(const char* name);
1581 // Pass name and text for all included files
2104 // making the potential counter-buffer name.
4298 const char* name = node->getName().c_str();
4299 if (glslang::IsAnonymous(name))
4300 name = "";
4314 return builder.createVariable(spv::NoPrecision, storageClass, spvType, name, initializer, false);
4868 builder.debugTypeLocs[spvMember].name = glslangMember.type->getFieldName().c_str();
5510 // give a name too
10060 // Return type Id of the imported set of extended instructions corresponds to the name.
10062 spv::Id TGlslangToSpvTraverser::getExtBuiltins(const char* name)
10064 if (extBuiltinMap.find(name) != extBuiltinMap.end())
10065 return extBuiltinMap[name];
10067 builder.addExtension(name);
10068 spv::Id extBuiltins = builder.import(name);
10069 extBuiltinMap[name] = extBuiltins;