Home
last modified time | relevance | path

Searched refs:extName (Results 1 – 25 of 48) sorted by relevance

12

/external/deqp/modules/egl/
DteglGetProcAddressTests.cpp64 FunctionNames getExtFunctionNames (const std::string& extName) in getExtFunctionNames() argument
68 if (extName == s_extensions[ndx].name) in getExtFunctionNames()
90 bool isSupported (const std::string& extName);
162 bool GetProcAddressCase::isSupported (const std::string& extName) in isSupported() argument
164 return de::contains(m_supported.begin(), m_supported.end(), extName); in isSupported()
172 …(EglTestContext& eglTestCtx, const char* name, const char* description, const std::string& extName) in GetProcAddressExtensionCase() argument
174 , m_extName (extName) in GetProcAddressExtensionCase()
367 const std::string& extName = s_extensions[extNdx].name; in init() local
368 std::string testName (extName); in init()
370 for (size_t ndx = 0; ndx < extName.length(); ndx++) in init()
[all …]
/external/deqp/modules/gles2/
Dtes2CapabilityTests.cpp105 …testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName);
114 … testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName) in ExtensionCase() argument
117 , m_extName (extName) in ExtensionCase()
152 ExtGroup& operator<< (const char* extName) in init()
154 group->addChild(new ExtensionCase(group->getTestContext(), ctxInfo, extName, "", extName)); in init()
/external/deqp/scripts/opengl/
Dgen_ext_init.py46 for extName in EXTENSIONS:
47 extCommands = getExtensionCommands(registry, iface, api, extName)
52 yield "if (de::contains(extSet, \"%s\"))" % extName
Dsrc_util.py160 for extName in EXTENSIONS:
161 extension = registry.extensions[extName]
/external/deqp/modules/gles31/functional/
Des31fShaderBuiltinConstantTests.cpp190 const std::string& extName) in createGetConstantExecutor() argument
202 …if (!extName.empty() && !(supportsES32 && (extName == "GL_OES_sample_variables" || extName == "GL_… in createGetConstantExecutor()
203 shaderSpec.globalDeclarations = "#extension " + extName + " : require\n"; in createGetConstantExecutor()
Des31fNegativeShaderFramebufferFetchTests.cpp59 static void checkExtensionSupport (NegativeTestContext& ctx, const char* extName) in checkExtensionSupport() argument
61 if (!ctx.getContextInfo().isExtensionSupported(extName)) in checkExtensionSupport()
62 throw tcu::NotSupportedError(string(extName) + " not supported"); in checkExtensionSupport()
Des31fNegativeTessellationTests.cpp81 static void checkExtensionSupport (NegativeTestContext& ctx, const char* extName) in checkExtensionSupport() argument
83 if (!ctx.getContextInfo().isExtensionSupported(extName)) in checkExtensionSupport()
84 throw tcu::NotSupportedError(string(extName) + " not supported"); in checkExtensionSupport()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dlocal_ssa_elim_pass.cpp29 const char* extName = in AllExtensionsSupported() local
31 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
Dlocal_single_store_elim_pass.cpp51 const char* extName = in AllExtensionsSupported() local
53 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
Dlocal_single_block_elim_pass.cpp178 const char* extName = in AllExtensionsSupported() local
180 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
Dlocal_access_chain_convert_pass.cpp269 const char* extName = in AllExtensionsSupported() local
271 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dlocal_ssa_elim_pass.cpp29 const char* extName = in AllExtensionsSupported() local
31 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
Dlocal_single_store_elim_pass.cpp51 const char* extName = in AllExtensionsSupported() local
53 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
Dlocal_single_block_elim_pass.cpp178 const char* extName = in AllExtensionsSupported() local
180 if (extensions_whitelist_.find(extName) == extensions_whitelist_.end()) in AllExtensionsSupported()
/external/vulkan-headers/registry/
Dreg.py935 for (extName,ei) in sorted(self.extdict.items(),key = lambda x : x[1].number):
936 extName = ei.name
947 extName, "(defaultExtensions matches the 'supported' attribute)")
954 if (regAddExtensions.match(extName) != None):
956 extName, '(matches explicitly requested extensions to add)')
962 if (regRemoveExtensions.match(extName) != None):
964 extName, '(matches explicitly requested extensions to remove)')
970 ei.emit = (regEmitExtensions.match(extName) != None)
974 extName,
979 self.requiredextensions.append(extName)
[all …]
/external/antlr/tool/src/main/java/org/antlr/codegen/
DObjCTarget.java44 String extName) in genRecognizerHeaderFile() argument
47 …or.write(headerFileST, grammar.name + Grammar.grammarTypeToFileNameSuffix[grammar.type] + extName); in genRecognizerHeaderFile()
DCTarget.java62 String extName) in genRecognizerHeaderFile() argument
69 fileName = fileName.substring(0, fileName.length() - 2) + extName; in genRecognizerHeaderFile()
DCppTarget.java68 String extName) in genRecognizerHeaderFile() argument
100 fileName = fileName.substring(0, fileName.length() - 4) + extName; in genRecognizerHeaderFile()
/external/deqp/scripts/egl/
Dproc_address_tests.py33 def toCamelCase (extName): argument
34 return "".join([x.title() for x in extName.split("_")])
/external/deqp/framework/platform/lnx/X11/
DtcuLnxX11GlxPlatform.cpp105 bool isGlxExtensionSupported (const char* extName) const;
258 bool GlxDisplay::isGlxExtensionSupported (const char* extName) const in isGlxExtensionSupported()
260 return m_extensions.find(extName) != m_extensions.end(); in isGlxExtensionSupported()
281 static void checkGlxExtension (const GlxDisplay& dpy, const char* extName) in checkGlxExtension() argument
283 if (!dpy.isGlxExtensionSupported(extName)) in checkGlxExtension()
286 oss << "GLX extension \"" << extName << "\" not supported"; in checkGlxExtension()
/external/golang-protobuf/proto/
Dtext_parser.go460 extName, err := p.consumeExtName()
465 if s := strings.LastIndex(extName, "/"); s >= 0 {
467 messageName := extName[s+1:]
506 sv.FieldByName("TypeUrl").SetString(extName)
517 if d.Name == extName {
523 return p.errorf("unrecognized extension %q", extName)
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dtext_parser.go460 extName, err := p.consumeExtName()
465 if s := strings.LastIndex(extName, "/"); s >= 0 {
467 messageName := extName[s+1:]
506 sv.FieldByName("TypeUrl").SetString(extName)
517 if d.Name == extName {
523 return p.errorf("unrecognized extension %q", extName)
/external/deqp/modules/glshared/
DglsFboCompletenessTests.cpp453 std::string extName; in logAffectingExtensions() local
457 extName = *it++; in logAffectingExtensions()
460 msg << getExtensionDescription(extName); in logAffectingExtensions()
461 extName = *it++; in logAffectingExtensions()
465 msg << getExtensionDescription(extName) << '\n'; in logAffectingExtensions()
/external/deqp/framework/opengl/
DgluContextInfo.hpp93 bool isExtensionSupported (const char* extName) const;
/external/deqp/scripts/khr_util/
Dregistry.py404 for extName in extensionNames:
405 eExtension = registry.extensions[extName]
412 available.add(extName)

12