Home
last modified time | relevance | path

Searched refs:name (Results 7601 - 7625 of 64934) sorted by relevance

1...<<301302303304305306307308309310>>...2598

/third_party/lzma/CPP/Windows/
H A DFileFind.h24 // bool DoesFileExist(CFSTR name, bool followLink);
25 bool DoesFileExist_Raw(CFSTR name);
26 bool DoesFileExist_FollowLink(CFSTR name);
27 bool DoesDirExist(CFSTR name, bool followLink);
29 inline bool DoesDirExist(CFSTR name) in DoesDirExist() argument
30 { return DoesDirExist(name, false); } in DoesDirExist()
31 inline bool DoesDirExist_FollowLink(CFSTR name) in DoesDirExist_FollowLink() argument
32 { return DoesDirExist(name, true); } in DoesDirExist_FollowLink()
35 bool DoesFileOrDirExist(CFSTR name);
/third_party/jerryscript/tests/jerry/es2015/
H A Dproxy_get_own_property_descriptor.js78 "getOwnPropertyDescriptor": function(target, name) {
79 if (name === "proxied") {
82 if (name === "return_null") {
85 return Object.getOwnPropertyDescriptor(target, name);
143 handler.getOwnPropertyDescriptor = function(target, name) { return undefined; };
157 handler.getOwnPropertyDescriptor = function(target, name) {
180 handler.getOwnPropertyDescriptor = function(target, name) { return undefined; };
259 handler.getOwnPropertyDescriptor = function(target, name) {
/third_party/mesa3d/src/etnaviv/drm-shim/
H A Detnaviv_noop.c38 const char *name; member
44 .name = "GC400",
71 .name = "GC2000",
98 .name = "GC3000",
125 .name = "GC7000L",
239 if (strncasecmp(gpu, gpus[i].name, strlen(gpus[i].name)) == 0) { in drm_shim_driver_init()
249 fprintf(stderr, "Using %s as shim gpu\n", shim_gpu->name); in drm_shim_driver_init()
/third_party/ltp/libs/libltpvdso/
H A Dparse_vdso.c58 static unsigned long elf_hash(const unsigned char *name) in elf_hash() argument
61 while (*name) in elf_hash()
63 h = (h << 4) + *name++; in elf_hash()
192 const char *name, ELF(Word) hash) in ELF()
196 * ver matches name (which hashes to hash). in ELF()
226 && !strcmp(name, vdso_info.symstrings + aux->vda_name); in ELF()
229 void *vdso_sym(const char *version, const char *name) in vdso_sym() argument
237 elf_hash((const void*)name) % vdso_info.nbucket); in vdso_sym()
242 /* Check for a defined global or weak function w/ right name. */ in vdso_sym()
250 if (strcmp(name, vdso_inf in vdso_sym()
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_debug_recompile.c33 const char *name, int a, int b) in key_debug()
36 brw_shader_perf_log(c, log, " %s %d->%d\n", name, a, b); in key_debug()
44 const char *name, float a, float b) in key_debug_float()
47 brw_shader_perf_log(c, log, " %s %f->%f\n", name, a, b); in key_debug_float()
53 #define check(name, field) \
54 key_debug(c, log, name, old_key->field, key->field)
55 #define check_float(name, field) \
56 key_debug_float(c, log, name, old_key->field, key->field)
32 key_debug(const struct brw_compiler *c, void *log, const char *name, int a, int b) key_debug() argument
43 key_debug_float(const struct brw_compiler *c, void *log, const char *name, float a, float b) key_debug_float() argument
/third_party/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py64 if variable.name != '':
65 #print 'variable = %r' % variable.name
66 dump_type(self._instance + '.' + variable.name, variable.type)
71 for name, value in self.decl.values:
72 print ' case %s:' % (name,)
73 print ' _debug_printf("\\t\\t%s = %s\\n");' % (self._instance, name)
167 print 'dump_%s(const %s *cmd)' % (class_.name, class_.name)
332 for class_ in global_ns.classes(lambda decl: decl.name in names):
/third_party/mesa3d/src/intel/blorp/
H A Dblorp_priv.h165 const char *name, in blorp_create_nir_input()
171 input = nir_variable_create(nir, nir_var_uniform, type, name); in blorp_create_nir_input()
175 input = nir_variable_create(nir, nir_var_shader_in, type, name); in blorp_create_nir_input()
184 #define BLORP_CREATE_NIR_INPUT(shader, name, type) \
185 blorp_create_nir_input((shader), #name, (type), \
186 offsetof(struct brw_blorp_wm_inputs, name))
265 char name[8]; member
272 .name = "blorp", \
404 * \name BLORP internals
164 blorp_create_nir_input(struct nir_shader *nir, const char *name, const struct glsl_type *type, unsigned int offset) blorp_create_nir_input() argument
/third_party/node/test/parallel/
H A Dtest-webstreams-abort-controller.js37 assert.strictEqual(err.name, 'AbortError');
78 assert.strictEqual(err.name, 'AbortError');
84 assert.strictEqual(err.name, 'AbortError');
105 assert.strictEqual(err.name, 'AbortError');
111 assert.strictEqual(err.name, 'AbortError');
130 assert.strictEqual(err.name, 'AbortError');
156 assert.strictEqual(err.name, 'AbortError');
162 assert.strictEqual(err.name, 'AbortError');
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Ddb.js114 'name',
297 if (globalIdentifiers.has(path.node.name) &&
298 path.node.name != 'eval') {
299 // Global name.
303 if (propertyNames.has(path.node.name) &&
306 // Builtin property name.
310 let binding = path.scope.getBinding(path.node.name);
318 if (path.node.name.startsWith('VAR_')) {
319 newName = path.node.name;
329 path.scope.rename(path.node.name, newNam
[all...]
/third_party/node/deps/npm/lib/commands/
H A Drun-script.js32 static name = 'run-script'
131 const { content: { scripts, name, _id } } = await pkgJson.normalize(path || this.npm.localPrefix)
132 const pkgid = _id || name
208 log.error(` in workspace: ${pkg._id || pkg.name}`)
226 const { content: { scripts, name } } = await pkgJson.normalize(workspacePath)
227 res[name] = { ...scripts }
235 const { content: { scripts, name } } = await pkgJson.normalize(workspacePath)
237 this.npm.output(`${name}:${script}:${cmd}`)
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dunewdata.cpp10 * file name: unewdata.c
36 udata_create(const char *dir, const char *type, const char *name, in udata_create() argument
48 } else if(name==nullptr || *name==0 || pInfo==nullptr) { in udata_create()
81 length += static_cast<int32_t>(strlen(name)); /* Add the filename length */ in udata_create()
107 uprv_strcat(filename, name); in udata_create()
194 udata_createDummy(const char *dir, const char *type, const char *name, UErrorCode *pErrorCode) { in udata_createDummy() argument
196 udata_finish(udata_create(dir, type, name, &dummyDataInfo, nullptr, pErrorCode), pErrorCode); in udata_createDummy()
199 u_errorName(*pErrorCode), dir, name, type); in udata_createDummy()
/third_party/node/deps/npm/test/lib/commands/
H A Dci.js20 name: 'test-package',
27 name: 'test-package',
33 name: 'test-package',
55 'package.json': '{"name": "abbrev", "version": "1.0.0"}',
68 const manifest = registry.manifest({ name: 'abbrev' })
91 const manifest = registry.manifest({ name: 'abbrev' })
114 'package.json': '{"name": "abbrev", "version": "1.0.0"}',
128 const manifest = registry.manifest({ name: 'abbrev' })
152 const manifest = registry.manifest({ name: 'abbrev' })
205 const manifest = registry.manifest({ name
[all...]
/third_party/mesa3d/src/panfrost/perf/
H A Dpan_gen_perf.py53 self.name = self.xml.get("name")
66 self.name = self.xml.get("name")
67 self.underscore_name = self.name.lower().replace(' ', '_')
80 self.name = self.xml.getroot().get('id')
81 self.id = self.name.lower()
173 c.write(".name = \"%s\"," % prod.name)
186 c.write(".name
[all...]
/third_party/ltp/tools/sparse/
H A Dsparse-ltp.c119 const char *const name = show_ident(sym->ident); in check_symbol_visibility() local
120 const int has_lib_prefix = !strncmp("tst_", name, 4) || in check_symbol_visibility()
121 !strncmp("TST_", name, 4) || in check_symbol_visibility()
122 !strncmp("ltp_", name, 4) || in check_symbol_visibility()
123 !strncmp("safe_", name, 5); in check_symbol_visibility()
131 name); in check_symbol_visibility()
141 name); in check_symbol_visibility()
153 name); in check_symbol_visibility()
/third_party/mksh/
H A Dulimit.c154 /* limit name */
155 char name[1]; member
165 char name[sizeof(lname)]; \
176 char name[sizeof(lname)]; \
248 shprintf("-%c: %-20s ", rlimits[i]->optchar, rlimits[i]->name); in c_ulimit()
284 bi_errorf("invalid %s limit: %s", l->name, v); in set_ulimit()
298 l->name, cstrerror(errno)); in set_ulimit()
313 bi_errorf(Tf_ro, l->name); in set_ulimit()
321 bi_errorf("%s exceeds allowable %s limit", v, l->name); in set_ulimit()
323 bi_errorf("bad %s limit: %s", l->name, cstrerro in set_ulimit()
[all...]
/third_party/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc14 // * Neither the name of Google Inc. nor the names of its
259 const char* const name = pathname_.c_str(); in IsAbsolutePath() local
262 ((name[0] >= 'a' && name[0] <= 'z') || in IsAbsolutePath()
263 (name[0] >= 'A' && name[0] <= 'Z')) && in IsAbsolutePath()
264 name[1] == ':' && in IsAbsolutePath()
265 IsPathSeparator(name[2]); in IsAbsolutePath()
267 return IsPathSeparator(name[0]); in IsAbsolutePath()
336 // If input name ha
[all...]
/third_party/node/deps/openssl/openssl/providers/common/der/
H A Dder_rsa_key.c243 * The name is borrowed from https://tools.ietf.org/html/rfc8017#appendix-A.2.1
277 #define OAEP_PSS_MD_CASE(name, var) \
278 case NID_##name: \
279 var = ossl_der_aid_##name##Identifier; \
280 var##_sz = sizeof(ossl_der_aid_##name##Identifier); \
361 #define RSA_CASE(name, var) \
362 var##_nid = NID_##name; \
363 var##_oid = ossl_der_oid_##name; \
364 var##_oid_sz = sizeof(ossl_der_oid_##name); \
/third_party/node/deps/openssl/openssl/crypto/property/
H A Dproperty_parse.c58 char name[100]; in parse_name() local
71 if (i < sizeof(name) - 1) in parse_name()
72 name[i++] = ossl_tolower(*s); in parse_name()
79 if (i < sizeof(name) - 1) in parse_name()
80 name[i++] = *s; in parse_name()
85 name[i] = '\0'; in parse_name()
91 *idx = ossl_property_name(ctx, name, user_name && create); in parse_name()
333 "Duplicated name `%s'", in stack_to_property_list()
370 "Unknown name HERE-->%s", start); in ossl_parse_property()
380 /* A name alon in ossl_parse_property()
[all...]
/third_party/python/Tools/freeze/test/
H A Dfreeze.py48 def find_opt(args, name):
49 opt = f'--{name}'
57 def ensure_opt(args, name, value):
58 opt = f'--{name}'
59 pos = find_opt(args, name)
100 def get_makefile_var(builddir, name):
101 regex = re.compile(rf'^{name} *=\s*(.*?)\s*$')
116 def get_config_var(builddir, name):
120 f'import sysconfig; print(sysconfig.get_config_var("{name}"))']
125 return get_makefile_var(builddir, name)
[all...]
/third_party/openssl/test/testutil/
H A Dfake_random.c22 const char *name; member
79 return (*frng->cb)(out, outlen, frng->name, frng->ctx); in fake_rand_generate()
174 static int check_rng(EVP_RAND_CTX *rng, const char *name) in check_rng() argument
179 TEST_info("random: %s", name); in check_rng()
183 f->name = name; in check_rng()
216 const char *name, EVP_RAND_CTX *ctx)) in fake_rand_set_callback()
225 const char *name, in fake_rand_set_public_private_callbacks()
214 fake_rand_set_callback(EVP_RAND_CTX *rng, int (*cb)(unsigned char *out, size_t outlen, const char *name, EVP_RAND_CTX *ctx)) fake_rand_set_callback() argument
222 fake_rand_set_public_private_callbacks(OSSL_LIB_CTX *libctx, int (*cb)(unsigned char *out, size_t outlen, const char *name, EVP_RAND_CTX *ctx)) fake_rand_set_public_private_callbacks() argument
/third_party/pulseaudio/src/pulsecore/
H A Dusergroup.c189 struct group *pa_getgrnam_malloc(const char *name) { in pa_getgrnam_malloc() argument
202 while ((err = getgrnam_r(name, (struct group *)buf, getgr_buf, getgr_buflen, &result)) == ERANGE) { in pa_getgrnam_malloc()
229 struct group *pa_getgrnam_malloc(const char *name) { in pa_getgrnam_malloc() argument
230 return getgrnam(name); in pa_getgrnam_malloc()
252 struct passwd *pa_getpwnam_malloc(const char *name) { in pa_getpwnam_malloc() argument
265 while ((err = getpwnam_r(name, (struct passwd *)buf, getpw_buf, getpw_buflen, &result)) == ERANGE) { in pa_getpwnam_malloc()
292 struct passwd *pa_getpwnam_malloc(const char *name) { in pa_getpwnam_malloc() argument
293 return getpwnam(name); in pa_getpwnam_malloc()
/third_party/python/Include/cpython/
H A Dpythonrun.h86 PyAPI_FUNC(int) PyRun_AnyFile(FILE *fp, const char *name);
87 PyAPI_FUNC(int) PyRun_AnyFileEx(FILE *fp, const char *name, int closeit);
100 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL)
101 #define PyRun_AnyFileEx(fp, name, closeit) \
102 PyRun_AnyFileExFlags(fp, name, closeit, NULL)
103 #define PyRun_AnyFileFlags(fp, name, flags) \
104 PyRun_AnyFileExFlags(fp, name, 0, flags)
/third_party/python/Lib/ensurepip/
H A D__init__.py47 for name in _PACKAGE_NAMES:
48 prefix = name + '-'
57 packages[name] = _Package(version, None, wheel_path)
67 for name, version, py_tag in _PROJECTS:
68 wheel_name = f"{name}-{version}-{py_tag}-none-any.whl"
69 packages[name] = _Package(version, wheel_name, None)
73 if all(name in dir_packages for name in _PACKAGE_NAMES):
173 for name, package in _get_packages().items():
/third_party/openssl/crypto/property/
H A Dproperty_parse.c58 char name[100]; in parse_name() local
71 if (i < sizeof(name) - 1) in parse_name()
72 name[i++] = ossl_tolower(*s); in parse_name()
79 if (i < sizeof(name) - 1) in parse_name()
80 name[i++] = *s; in parse_name()
85 name[i] = '\0'; in parse_name()
91 *idx = ossl_property_name(ctx, name, user_name && create); in parse_name()
303 "Duplicated name `%s'", in stack_to_property_list()
340 "Unknown name HERE-->%s", start); in ossl_parse_property()
350 /* A name alon in ossl_parse_property()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderPrimitiveQueries.cpp122 * @param name Test case's name
127 const char* name, const char* description) in GeometryShaderPrimitiveQueriesPoints()
128 : GeometryShaderPrimitiveQueries(context, extParams, name, description) in GeometryShaderPrimitiveQueriesPoints()
162 * @param name Test case's name
167 const char* name, const char* description) in GeometryShaderPrimitiveQueriesLines()
168 : GeometryShaderPrimitiveQueries(context, extParams, name, description) in GeometryShaderPrimitiveQueriesLines()
202 * @param name Test case's name
125 GeometryShaderPrimitiveQueriesPoints(Context& context, const ExtParameters& extParams, const char* name, const char* description) GeometryShaderPrimitiveQueriesPoints() argument
165 GeometryShaderPrimitiveQueriesLines(Context& context, const ExtParameters& extParams, const char* name, const char* description) GeometryShaderPrimitiveQueriesLines() argument
205 GeometryShaderPrimitiveQueriesTriangles(Context& context, const ExtParameters& extParams, const char* name, const char* description) GeometryShaderPrimitiveQueriesTriangles() argument
246 GeometryShaderPrimitiveQueries(Context& context, const ExtParameters& extParams, const char* name, const char* description) GeometryShaderPrimitiveQueries() argument
[all...]

Completed in 23 milliseconds

1...<<301302303304305306307308309310>>...2598