Home
last modified time | relevance | path

Searched refs:names (Results 801 - 825 of 2483) sorted by relevance

1...<<31323334353637383940>>...100

/kernel/linux/linux-6.6/sound/pci/oxygen/
H A Doxygen_mixer.c100 static const char *const names[5] = { in upmix_info() local
110 return snd_ctl_enum_info(info, 1, count, names); in upmix_info()
649 static const char *const names[] = { "Mic Jack", "Front Panel" }; in mic_fmic_source_info() local
651 return snd_ctl_enum_info(info, 1, 2, names); in mic_fmic_source_info()
/kernel/linux/linux-6.6/sound/pci/ctxfi/
H A Dctmixer.c413 static const char *const names[3] = { in output_switch_info() local
417 return snd_ctl_enum_info(info, 1, 3, names); in output_switch_info()
448 static const char *const names[3] = { in mic_source_switch_info() local
452 return snd_ctl_enum_info(info, 1, 3, names); in mic_source_switch_info()
/third_party/jinja2/
H A Dparser.py301 # to jinja. we do not support hyphens in block names, so let's
305 "Block names in Jinja have to be valid Python identifiers and may not"
366 node.names = []
379 if node.names:
387 "names starting with an underline can not be imported",
393 node.names.append((target.name, alias.name))
395 node.names.append(target.name)
483 by setting `with_tuple` to `False`. If only assignments to names are
693 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp158 std::unordered_map<SpvId, std::string> names; in create_binary_from_spirv() local
170 names.emplace(get<SpvId>(inst, 1), in create_binary_from_spirv()
176 // SPIRV-LLVM-Translator stores param type names as OpStrings in create_binary_from_spirv()
483 auto name_it = names.find(id); in create_binary_from_spirv()
484 if (name_it != names.end()) in create_binary_from_spirv()
/third_party/node/deps/v8/third_party/jinja2/
H A Dparser.py264 # to jinja. we do not support hyphens in block names, so let's
268 "Block names in Jinja have to be valid Python "
315 node.names = []
328 if node.names:
336 "names starting with an underline can not be imported",
342 node.names.append((target.name, alias.name))
344 node.names.append(target.name)
415 by setting `with_tuple` to `False`. If only assignments to names are
615 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/node/tools/inspector_protocol/jinja2/
H A Dparser.py261 # to jinja. we do not support hyphens in block names, so let's
264 self.fail('Block names in Jinja have to be valid Python '
308 node.names = []
319 if node.names:
326 self.fail('names starting with an underline can not '
331 node.names.append((target.name, alias.name))
333 node.names.append(target.name)
401 by setting `with_tuple` to `False`. If only assignments to names are
594 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/node/deps/v8/src/inspector/
H A Dv8-runtime-agent-impl.cc14 * * Neither the name of Google Inc. nor the names of its
672 v8::PersistentValueVector<v8::String> names(m_inspector->isolate()); in globalLexicalScopeNames()
673 v8::debug::GlobalLexicalScopeNames(scope.context(), &names); in globalLexicalScopeNames()
675 for (size_t i = 0; i < names.Size(); ++i) { in globalLexicalScopeNames()
677 toProtocolString(m_inspector->isolate(), names.Get(i))); in globalLexicalScopeNames()
/third_party/node/deps/v8/src/objects/
H A Dsource-text-module.cc136 int cell_index, Handle<FixedArray> names) { in CreateExport()
137 DCHECK_LT(0, names->length()); in CreateExport()
143 for (int i = 0, n = names->length(); i < n; ++i) { in CreateExport()
144 Handle<String> name(String::cast(names->get(i)), isolate); in CreateExport()
134 CreateExport(Isolate* isolate, Handle<SourceTextModule> module, int cell_index, Handle<FixedArray> names) CreateExport() argument
/third_party/node/deps/openssl/openssl/apps/
H A Docsp.c66 STACK_OF(OPENSSL_STRING) *names,
967 STACK_OF(OPENSSL_STRING) *names, in print_ocsp_summary()
977 if (req == NULL || !sk_OPENSSL_STRING_num(names)) in print_ocsp_summary()
985 name = sk_OPENSSL_STRING_value(names, i); in print_ocsp_summary()
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
/third_party/python/Lib/
H A Dshutil.py322 names = os.listxattr(src, follow_symlinks=follow_symlinks)
327 for name in names:
345 unaffected. `src` and `dst` are path-like objects or path names given as
445 def _ignore_patterns(path, names):
448 ignored_names.extend(fnmatch.filter(names, pattern))
537 being visited by copytree(), and `names` which is the list of
540 callable(src, names) -> ignored_names
544 list of names relative to the `src` directory that should
1365 user and group can be the uid/gid or the user/group names, and in that case,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDitheringTests.cpp1103 const std::string names[] = { "Less", "Greater", "Equal" }; in createRenderPassDitheringTests() local
1131 depthStencilTests->addChild(new DitheringTest(testCtx, "stencil" + names[j] + "_depth" + names[k] + "_op" + names[l] + "_" + formatName, testParams)); in createRenderPassDitheringTests()
/third_party/skia/third_party/externals/jinja2/
H A Dparser.py264 # to jinja. we do not support hyphens in block names, so let's
268 "Block names in Jinja have to be valid Python "
315 node.names = []
328 if node.names:
336 "names starting with an underline can not be imported",
342 node.names.append((target.name, alias.name))
344 node.names.append(target.name)
415 by setting `with_tuple` to `False`. If only assignments to names are
615 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/openssl/apps/
H A Docsp.c66 STACK_OF(OPENSSL_STRING) *names,
967 STACK_OF(OPENSSL_STRING) *names, in print_ocsp_summary()
977 if (req == NULL || !sk_OPENSSL_STRING_num(names)) in print_ocsp_summary()
985 name = sk_OPENSSL_STRING_value(names, i); in print_ocsp_summary()
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfobjs.c155 rec = face->name_table.names; in FT_LOCAL_DEF()
223 /* we will thus favor names encoded in Windows formats if available */ in FT_LOCAL_DEF()
229 rec = face->name_table.names + found_win; in FT_LOCAL_DEF()
242 /* means UTF-16 encoded names (UCS-4 values are only used within */ in FT_LOCAL_DEF()
253 rec = face->name_table.names + found_apple; in FT_LOCAL_DEF()
258 rec = face->name_table.names + found_unicode; in FT_LOCAL_DEF()
1405 /* destroy the postscript names table if it is loaded */ in sfnt_done_face()
/third_party/python/Python/
H A Dast.c893 ret = validate_nonempty_seq(stmt->v.Import.names, "names", "Import"); in validate_stmt()
900 ret = validate_nonempty_seq(stmt->v.ImportFrom.names, "names", "ImportFrom"); in validate_stmt()
903 ret = validate_nonempty_seq(stmt->v.Global.names, "names", "Global"); in validate_stmt()
906 ret = validate_nonempty_seq(stmt->v.Nonlocal.names, "names", "Nonlocal"); in validate_stmt()
H A Dsysmodule.c1568 sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag
2078 PyObject *names = PyTuple_New(len); in list_stdlib_module_names() local
2079 if (names == NULL) { in list_stdlib_module_names()
2086 Py_DECREF(names); in list_stdlib_module_names()
2089 PyTuple_SET_ITEM(names, i, name); in list_stdlib_module_names()
2093 "(O)", names); in list_stdlib_module_names()
2094 Py_DECREF(names); in list_stdlib_module_names()
2445 builtin_module_names -- tuple of module names built into this interpreter\n\
H A Dmarshal.c1362 PyObject *names = NULL; in r_object() local
1401 names = r_object(p); in r_object()
1402 if (names == NULL) in r_object()
1440 .names = names, in r_object()
1468 Py_XDECREF(names); in r_object()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassDitheringTests.cpp1104 const std::string names[] = { "Less", "Greater", "Equal" }; in createRenderPassDitheringTests() local
1132 depthStencilTests->addChild(new DitheringTest(testCtx, "stencil" + names[j] + "_depth" + names[k] + "_op" + names[l] + "_" + formatName, "", testParams)); in createRenderPassDitheringTests()
/kernel/linux/linux-5.10/drivers/pinctrl/
H A Dpinctrl-at91.c1824 char **names; in at91_gpio_probe() local
1885 names = devm_kcalloc(&pdev->dev, chip->ngpio, sizeof(char *), in at91_gpio_probe()
1888 if (!names) { in at91_gpio_probe()
1894 names[i] = devm_kasprintf(&pdev->dev, GFP_KERNEL, "pio%c%d", alias_idx + 'A', i); in at91_gpio_probe()
1896 chip->names = (const char *const *)names; in at91_gpio_probe()
/kernel/linux/linux-5.10/sound/pci/echoaudio/
H A Dechoaudio.c1392 static const char * const names[4] = { in snd_echo_digital_mode_info() local
1399 return snd_ctl_enum_info(uinfo, 1, chip->num_digital_modes, names); in snd_echo_digital_mode_info()
1479 static const char * const names[2] = {"Consumer", "Professional"}; in snd_echo_spdif_mode_info() local
1481 return snd_ctl_enum_info(uinfo, 1, 2, names); in snd_echo_spdif_mode_info()
1529 static const char * const names[8] = { in snd_echo_clock_source_info() local
1536 return snd_ctl_enum_info(uinfo, 1, chip->num_clock_sources, names); in snd_echo_clock_source_info()
/kernel/linux/linux-5.10/fs/nfsd/
H A Dnfs4recover.c17 * 3. Neither the name of the University nor the names of its
266 struct list_head names; member
284 list_add(&entry->list, &ctx->names); in nfsd4_build_namelist()
295 .names = LIST_HEAD_INIT(ctx.names) in nfsd4_list_rec_dir()
313 list_for_each_entry_safe(entry, tmp, &ctx.names, list) { in nfsd4_list_rec_dir()
330 list_for_each_entry_safe(entry, tmp, &ctx.names, list) { in nfsd4_list_rec_dir()
/kernel/linux/linux-6.6/fs/nfsd/
H A Dnfs4recover.c17 * 3. Neither the name of the University nor the names of its
266 struct list_head names; member
284 list_add(&entry->list, &ctx->names); in nfsd4_build_namelist()
295 .names = LIST_HEAD_INIT(ctx.names) in nfsd4_list_rec_dir()
313 list_for_each_entry_safe(entry, tmp, &ctx.names, list) { in nfsd4_list_rec_dir()
330 list_for_each_entry_safe(entry, tmp, &ctx.names, list) { in nfsd4_list_rec_dir()
/kernel/linux/linux-6.6/sound/pci/echoaudio/
H A Dechoaudio.c1409 static const char * const names[4] = { in snd_echo_digital_mode_info() local
1416 return snd_ctl_enum_info(uinfo, 1, chip->num_digital_modes, names); in snd_echo_digital_mode_info()
1496 static const char * const names[2] = {"Consumer", "Professional"}; in snd_echo_spdif_mode_info() local
1498 return snd_ctl_enum_info(uinfo, 1, 2, names); in snd_echo_spdif_mode_info()
1546 static const char * const names[8] = { in snd_echo_clock_source_info() local
1553 return snd_ctl_enum_info(uinfo, 1, chip->num_clock_sources, names); in snd_echo_clock_source_info()
/third_party/backends/backend/
H A Dmustek_pp_cis.c271 static const char* names[4] = { "ASIC", "SCAN_VAL", "MOTOR", "BANK_COUNT" }; in Mustek_PP_1015_reg_r_name() local
272 return names[id & 0x03]; in Mustek_PP_1015_reg_r_name()
278 static const char* names[4] = { "????", "MOTOR_HOME", "????", "MOTOR_BUSY" }; in Mustek_PP_1015_bit_name() local
279 return names[id & 0x03]; in Mustek_PP_1015_bit_name()
285 static const char* names[4][4] = in Mustek_PP_1015_reg_w_name() local
292 return names[(id & 0x30) >> 4][id & 0x03]; in Mustek_PP_1015_reg_w_name()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcldrtest.c964 // log_verbose("skipping test for %s, some month and country names known to use aux exemplars\n", currLoc); in VerifyTranslation()
989 UResourceBundle* names = ures_getByKeyWithFallback(greg, "dayNames", NULL, &errorCode); in VerifyTranslation() local
990 UResourceBundle* format = ures_getByKeyWithFallback(names, "format", NULL, &errorCode); in VerifyTranslation()
1004 log_knownIssue("cldrbug:8899", "lrc and mzn locales don't have translated day names")) { in VerifyTranslation()
1008 log_knownIssue("cldrbug:14995", "mai/sd_Deva day names use chars not in exemplars")) { in VerifyTranslation()
1012 log_knownIssue("cldrbug:15355", "ks_Deva day names use chars not in exemplars")) { in VerifyTranslation()
1030 ures_close(names); in VerifyTranslation()
1032 names = ures_getByKeyWithFallback(greg, "monthNames", NULL, &errorCode); in VerifyTranslation()
1033 format = ures_getByKeyWithFallback(names,"format", NULL, &errorCode); in VerifyTranslation()
1045 log_knownIssue("cldrbug:14995", "sd_Deva month names us in VerifyTranslation()
[all...]

Completed in 49 milliseconds

1...<<31323334353637383940>>...100