Home
last modified time | relevance | path

Searched refs:name (Results 5851 - 5875 of 26147) sorted by relevance

1...<<231232233234235236237238239240>>...1046

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DCombinedCurrencyMatcher.java185 String name = localLongNames[i]; in matchCurrency()
186 if (name.isEmpty()) { in matchCurrency()
189 int overlap = segment.getCommonPrefixLength(name); in matchCurrency()
190 if (overlap == name.length() && name.length() > longestFullMatch) { in matchCurrency()
191 longestFullMatch = name.length(); in matchCurrency()
/third_party/libsnd/src/
H A Dogg_vcomment.c38 const char *name ; member
60 static int vorbiscomment_lookup_id (const char *name) ;
109 ** Vendor tag, manditory, no field name. in vorbiscomment_read_tags()
254 vorbiscomment_lookup_id (const char * name) in vorbiscomment_lookup_id() argument
258 { if (!strcmp (name, p->name)) in vorbiscomment_lookup_id()
271 return p->name ; in vorbiscomment_lookup_name()
/third_party/mesa3d/src/amd/llvm/
H A Dac_llvm_util.c201 const char *name = ac_get_llvm_processor_name(family); in ac_create_target_machine() local
204 LLVMCreateTargetMachine(target, triple, name, "", level, in ac_create_target_machine()
207 if (!ac_is_llvm_processor_supported(tm, name)) { in ac_create_target_machine()
209 fprintf(stderr, "amd: LLVM doesn't support %s, bailing out...\n", name); in ac_create_target_machine()
309 void ac_llvm_add_target_dep_function_attr(LLVMValueRef F, const char *name, unsigned value) in ac_llvm_add_target_dep_function_attr() argument
314 LLVMAddTargetDependentFunctionAttr(F, name, str); in ac_llvm_add_target_dep_function_attr()
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_ENUMINPUT.c65 CU_ASSERT(0 < strlen((char *)input.name)); in test_VIDIOC_ENUMINPUT()
67 ((char *)input.name, sizeof(input.name))); in test_VIDIOC_ENUMINPUT()
79 /* Check if the unused bytes of the name string are in test_VIDIOC_ENUMINPUT()
86 strncpy((char *)input2.name, (char *)input.name, in test_VIDIOC_ENUMINPUT()
87 sizeof(input2.name)); in test_VIDIOC_ENUMINPUT()
/third_party/node/lib/internal/source_map/
H A Dsource_map.js17 // * Neither the name of Google Inc. nor the names of its
50 * * Neither the name of Google Inc. nor the names of its
204 name: entry[5],
227 name: range.name,
284 let name;
287 name = map.names?.[nameIndex];
293 sourceColumnNumber, name],
/third_party/node/lib/internal/repl/
H A Dawait.js33 state.prepend(node, `${node.id.name}=`);
36 `let ${node.id.name}; `,
49 state.prepend(node, `this.${node.id.name} = ${node.id.name}; `);
52 `var ${node.id.name}; `,
102 node.name,
/third_party/node/lib/internal/test_runner/reporter/
H A Dspec.js74 let title = `${data.name}${duration_ms}`;
97 assert(subtest.data.name === data.name);
106 prefix += `${this.#indent(msg.nesting)}${symbols['arrow:right']}${msg.name}\n`;
109 if (this.#reported[0] && this.#reported[0].nesting === data.nesting && this.#reported[0].name === data.name) {
/third_party/node/lib/
H A Dtls.js292 ArrayPrototypeForEach(splitAltNames, (name) => {
293 if (StringPrototypeStartsWith(name, 'DNS:')) {
294 ArrayPrototypePush(dnsNames, StringPrototypeSlice(name, 4));
295 } else if (StringPrototypeStartsWith(name, 'IP Address:')) {
296 ArrayPrototypePush(ips, canonicalizeIP(StringPrototypeSlice(name, 11)));
333 reason = 'Cert does not contain a DNS name';
/third_party/node/test/parallel/
H A Dtest-fs-rmdir-recursive.js20 const nextDirPath = (name = 'rmdir-recursive') =>
21 path.join(tmpdir.path, `${name}-${count++}`);
49 // File with a name that looks like a glob
189 name: 'TypeError',
199 name: 'TypeError',
208 name: 'RangeError',
216 name: 'RangeError',
H A Dtest-stream-construct.js15 name: 'Error',
28 name: 'Error',
41 name: 'Error',
54 name: 'Error',
67 name: 'Error',
80 name: 'Error',
H A Dtest-vm-module-errors.js22 name: 'TypeError'
33 name: 'TypeError'
45 name: 'TypeError'
170 name: 'TypeError',
207 name: 'TypeError',
235 name: 'TypeError',
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dgen_exceptions.js141 const name = p.basename(outputFile, p.extname(outputFile));
145 ` Tests with parse errors from ${name} `, failedParse));
147 ` Tests with mutation errors from ${name} `, failedMutate));
149 ` Very slow tests from ${name} `, verySlow));
153 ` Slow tests from ${name} `, slow));
157 ` Tests requiring sloppy mode from ${name} `, failedParseStrict));
/third_party/musl/src/thread/
H A Dsem_open.c32 sem_t *sem_open(const char *name, int flags, ...) in sem_open() argument
45 if (!(name = __shm_mapname(name, buf))) in sem_open()
79 if (flags == (O_CREAT|O_EXCL) && access(name, F_OK) == 0) { in sem_open()
88 fd = open(name, FLAGS); in sem_open()
118 * and attempt to atomically link it as the new name */ in sem_open()
135 e = link(tmp, name) ? errno : 0; in sem_open()
/third_party/musl/scripts/
H A Dsearch_source_files.py76 def change_subfix(name):
78 if name.endswith(".s"):
79 new_name = name.replace(".s", ".c")
80 elif name.endswith(".S"):
81 new_name = name.replace(".S", ".c")
83 return name
/third_party/ninja/src/
H A Dgetopt.c34 array has to be filled with NULL for the name field.
248 for (optindex = 0; longopts[optindex].name != NULL; optindex++) in getopt_internal()
251 longopts[optindex].name, match_chars) == 0) in getopt_internal()
254 if (match_chars == strlen (longopts[optindex].name)) in getopt_internal()
272 longopts[longopt_match].name, in getopt_internal()
273 longopts[optindex].name); in getopt_internal()
335 fprintf (stderr, "--%s'\n", longopts[longopt_match].name); in getopt_internal()
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Dttable.c34 char *name; member
50 char *name; member
183 printf("<th>%s</th>", bits[i].name); in table()
209 rname = &((struct rname) { .name = "out of bounds", .color = 0xff00ff }); in table()
210 assert(rname->name != NULL); in table()
211 printf("<td bgcolor=\"%06x\">%s</td>", rname->color, rname->name); in table()
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Dttable.c34 char *name; member
50 char *name; member
183 printf("<th>%s</th>", bits[i].name); in table()
209 rname = &((struct rname) { .name = "out of bounds", .color = 0xff00ff }); in table()
210 assert(rname->name != NULL); in table()
211 printf("<td bgcolor=\"%06x\">%s</td>", rname->color, rname->name); in table()
/third_party/ltp/testcases/realtime/include/
H A Dlist.h64 #define LIST_HEAD_INIT(name) { &(name), &(name) }
66 #define LIST_HEAD(name) \
67 struct list_head name = LIST_HEAD_INIT(name)
249 * @member: the name of the member within the struct.
261 * @member: the name of the list_struct within the struct.
298 * @member: the name of the list_struct within the struct.
309 * @member: the name o
[all...]
/third_party/node/deps/v8/src/compiler/
H A Djs-graph.cc18 #define DEFINE_GETTER(name, expr) \
19 Node* JSGraph::name() { return GET_CACHED_FIELD(&name##_, expr); }
102 #define DO_CACHED_FIELD(name) \ in GetCachedNodes()
103 if (name##_) nodes->push_back(name##_); in GetCachedNodes()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dgmemtool.c84 const char *name; member
95 /* keep sorted by gpu name: */
106 {.name = "gpu", .has_arg = 1, NULL, 'g'},
107 {.name = "help", .has_arg = 0, NULL, 'h'},
108 {.name = "verbose", .has_arg = 0, NULL, 'v'},
124 fprintf(stderr, "\t%s\n", gpu_infos[i].name); in usage()
151 if (strcmp(gpu_name, gpu_infos[i].name) == 0) { in main()
158 printf("unrecognized gpu name: %s\n", gpu_name); in main()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_device_info.py33 # Extension(name, alias="", required=False, properties=False, features=False, conditions=None, guard=False)
35 # - required: the generated code debug_prints "ZINK: {name} required!" and
51 # for `zink_device_info.have_{name}` to be true.
272 <%def name="guard_(ext, body)">
283 <%def name="guard(ext)">${capture(guard_, ext, body=caller.body).strip('\\r\\n')}</%def>
287 <%namespace name="helpers" file="helpers"/>
349 %if registry.in_registry(ext.name):
350 %for cmd in registry.get_registry_entry(ext.name).device_commands:
361 <%namespace name="helpers" file="helpers"/>
397 if (!strcmp(extensions[i].extensionName, "${ext.name}")) {
[all...]
/third_party/mesa3d/src/tool/pps/
H A Dpps_config.cc142 // Header: device name, and whether it is supported or not in main()
148 auto name = device.name; in main() local
150 printf(" %4u %16s %16s\n", gpu_num, name.c_str(), driver ? "yes" : "no"); in main()
181 printf(" %32s ", counter.name.c_str()); in main()
199 printf("#%4s %32s\n", "id", "name"); in main()
202 printf(" %4u %32s\n", group.id, group.name.c_str()); in main()
213 printf("#%4s %32s\n", "id", "name"); in main()
217 printf(" %4u %32s\n", counter.id, counter.name.c_str()); in main()
/third_party/mesa3d/src/gallium/winsys/i915/drm/
H A Di915_drm_buffer.c9 char *name; in i915_drm_type_to_name() local
12 name = "gallium3d_texture"; in i915_drm_type_to_name()
14 name = "gallium3d_vertex"; in i915_drm_type_to_name()
16 name = "gallium3d_scanout"; in i915_drm_type_to_name()
19 name = "gallium3d_unknown"; in i915_drm_type_to_name()
22 return name; in i915_drm_type_to_name()
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
H A Dco-586.pl117 local($name,$num)=@_;
122 &function_begin_B($name,"");
203 &function_end_B($name);
208 local($name,$num)=@_;
213 &function_begin_B($name,"");
296 &function_end_B($name);
/third_party/node/deps/openssl/openssl/crypto/engine/
H A Deng_lib.c53 e->name = NULL; in engine_set_all_null()
211 int ENGINE_set_name(ENGINE *e, const char *name) in ENGINE_set_name() argument
213 if (name == NULL) { in ENGINE_set_name()
217 e->name = name; in ENGINE_set_name()
264 return e->name; in ENGINE_get_name()

Completed in 23 milliseconds

1...<<231232233234235236237238239240>>...1046