HomeSort by relevance Sort by last modified time
    Searched full:extname (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/deqp/modules/egl/
teglGetProcAddressTests.cpp 62 FunctionNames getExtFunctionNames (const std::string& extName)
66 if (extName == s_extensions[ndx].name)
103 bool isSupported (const std::string& extName);
167 bool GetProcAddressCase::isSupported (const std::string& extName)
169 return de::contains(m_supported.begin(), m_supported.end(), extName);
177 GetProcAddressExtensionCase (EglTestContext& eglTestCtx, const char* name, const char* description, const std::string& extName)
179 , m_extName (extName)
292 const std::string& extName = s_extensions[extNdx].name;
293 std::string testName (extName);
295 for (size_t ndx = 0; ndx < extName.length(); ndx++
    [all...]
  /external/deqp/scripts/opengl/
gen_ext_init.py 26 for extName in EXTENSIONS:
27 extIface = getInterface(registry, api, version=False, profile='core', extensionNames=[extName])
32 yield "if (de::contains(extSet, \"%s\"))" % extName
src_util.py 95 for extName in EXTENSIONS:
96 extension = registry.extensions[extName]
  /external/deqp/modules/gles2/
tes2CapabilityTests.cpp 105 ExtensionCase (tcu::TestContext& testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName);
114 ExtensionCase::ExtensionCase (tcu::TestContext& testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName)
117 , m_extName (extName)
152 ExtGroup& operator<< (const char* extName)
154 group->addChild(new ExtensionCase(group->getTestContext(), ctxInfo, extName, "", extName));
  /external/llvm/lib/Target/SystemZ/
SystemZProcessors.td 14 class SystemZFeature<string extname, string intname, string desc>
16 AssemblerPredicate<"Feature"##intname, extname>,
17 SubtargetFeature<extname, "Has"##intname, "true", desc>;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
extutil.h 155 #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) \
161 dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); \
177 #define XEXT_GENERATE_ERROR_STRING(proc,extname,nerr,errl) \
183 sprintf (tmp, "%s.%d", extname, code); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
extutil.h 153 #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) \
159 dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); \
175 #define XEXT_GENERATE_ERROR_STRING(proc,extname,nerr,errl) \
181 sprintf (tmp, "%s.%d", extname, code); \
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ObjCTarget.java 43 String extName)
46 generator.write(headerFileST, grammar.name + Grammar.grammarTypeToFileNameSuffix[grammar.type] + extName);
CPPTarget.java 90 String extName)
93 generator.write(headerFileST, grammar.name+extName);
CTarget.java 61 String extName)
64 // a file suffixed with .c, so we must substring and add the extName
68 fileName = fileName.substring(0, fileName.length() - 2) + extName;
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 98 bool isGlxExtensionSupported (const char* extName) const;
244 bool GlxDisplay::isGlxExtensionSupported (const char* extName) const
246 return m_extensions.find(extName) != m_extensions.end();
266 //! Throw `tcu::NotSupportedError` if `dpy` does not support extension `extName`.
267 static void checkGlxExtension (const GlxDisplay& dpy, const char* extName)
269 if (!dpy.isGlxExtensionSupported(extName))
272 oss << "GLX extension \"" << extName << "\" not supported";
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
pe.go 517 if i := strings.IndexByte(s.Extname, '%'); i >= 0 {
519 m.argsize, err = strconv.Atoi(s.Extname[i+1:])
524 s.Extname = s.Extname[:i]
538 dynName := m.s.Extname
609 strput(m.s.Extname)
703 return stringsCompare(s1.Extname, s2.Extname) < 0
729 size += len(dexport[i].Extname) + 1
771 v += len(dexport[i].Extname) +
    [all...]
go.go 440 s.Extname = remote
486 s.Extname = ""
492 s.Extname = remote
494 } else if s.Extname != remote {
495 fmt.Fprintf(os.Stderr, "%s: conflicting cgo_export directives: %s as %s and %s\n", os.Args[0], s.Name, s.Extname, remote)
571 Diag("adddynsym: missed symbol %s (%s)", s.Name, s.Extname)
macho.go 634 return stringsCompare(s1.Extname, s2.Extname) < 0
678 if !strings.Contains(s.Extname, ".") {
683 if !strings.Contains(s.Extname, "·") {
684 Addstring(symstr, s.Extname)
686 for p = s.Extname; p != ""; p = p[1:] {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
pe.go 514 if i := strings.IndexByte(s.Extname, '%'); i >= 0 {
516 m.argsize, err = strconv.Atoi(s.Extname[i+1:])
521 s.Extname = s.Extname[:i]
535 dynName := m.s.Extname
606 strput(m.s.Extname)
700 return stringsCompare(s1.Extname, s2.Extname) < 0
726 size += len(dexport[i].Extname) + 1
768 v += len(dexport[i].Extname) +
    [all...]
go.go 437 s.Extname = remote
483 s.Extname = ""
489 s.Extname = remote
491 } else if s.Extname != remote {
492 fmt.Fprintf(os.Stderr, "%s: conflicting cgo_export directives: %s as %s and %s\n", os.Args[0], s.Name, s.Extname, remote)
568 Diag("adddynsym: missed symbol %s (%s)", s.Name, s.Extname)
macho.go 631 return stringsCompare(s1.Extname, s2.Extname) < 0
675 if !strings.Contains(s.Extname, ".") {
680 if !strings.Contains(s.Extname, "·") {
681 Addstring(symstr, s.Extname)
683 for p = s.Extname; p != ""; p = p[1:] {
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
pe.go 517 if i := strings.IndexByte(s.Extname, '%'); i >= 0 {
519 m.argsize, err = strconv.Atoi(s.Extname[i+1:])
524 s.Extname = s.Extname[:i]
538 dynName := m.s.Extname
609 strput(m.s.Extname)
703 return stringsCompare(s1.Extname, s2.Extname) < 0
729 size += len(dexport[i].Extname) + 1
771 v += len(dexport[i].Extname) +
    [all...]
go.go 440 s.Extname = remote
486 s.Extname = ""
492 s.Extname = remote
494 } else if s.Extname != remote {
495 fmt.Fprintf(os.Stderr, "%s: conflicting cgo_export directives: %s as %s and %s\n", os.Args[0], s.Name, s.Extname, remote)
571 Diag("adddynsym: missed symbol %s (%s)", s.Name, s.Extname)
macho.go 634 return stringsCompare(s1.Extname, s2.Extname) < 0
678 if !strings.Contains(s.Extname, ".") {
683 if !strings.Contains(s.Extname, "·") {
684 Addstring(symstr, s.Extname)
686 for p = s.Extname; p != ""; p = p[1:] {
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
pe.go 514 if i := strings.IndexByte(s.Extname, '%'); i >= 0 {
516 m.argsize, err = strconv.Atoi(s.Extname[i+1:])
521 s.Extname = s.Extname[:i]
535 dynName := m.s.Extname
606 strput(m.s.Extname)
700 return stringsCompare(s1.Extname, s2.Extname) < 0
726 size += len(dexport[i].Extname) + 1
768 v += len(dexport[i].Extname) +
    [all...]
go.go 437 s.Extname = remote
483 s.Extname = ""
489 s.Extname = remote
491 } else if s.Extname != remote {
492 fmt.Fprintf(os.Stderr, "%s: conflicting cgo_export directives: %s as %s and %s\n", os.Args[0], s.Name, s.Extname, remote)
568 Diag("adddynsym: missed symbol %s (%s)", s.Name, s.Extname)
  /external/deqp/modules/gles31/functional/
es31fShaderBuiltinConstantTests.cpp 190 const std::string& extName)
202 if (!extName.empty() && !(isES32 && (extName == "GL_OES_sample_variables" || extName == "GL_EXT_geometry_shader" || extName == "GL_EXT_tessellation_shader")))
203 shaderSpec.globalDeclarations = "#extension " + extName + " : require\n";
  /external/deqp/scripts/egl/
proc_address_tests.py 33 def toCamelCase (extName):
34 return "".join([x.title() for x in extName.split("_")])
  /hardware/bsp/intel/peripheral/libupm/doxy/node/
tolower.js 65 return path.extname(file).toLowerCase() == ".html";

Completed in 1058 milliseconds

1 2 3 4 5