Home
last modified time | relevance | path

Searched refs:names (Results 426 - 450 of 1332) sorted by relevance

1...<<11121314151617181920>>...54

/kernel/linux/linux-6.6/include/linux/platform_data/
H A Dpca953x.h28 const char *const *names; member
/kernel/linux/linux-6.6/include/linux/gpio/
H A Dgpio-reg.h14 const char *const *names, struct irq_domain *irqdom, const int *irqs);
/kernel/linux/linux-6.6/drivers/usb/gadget/
H A Dconfigfs.h13 char **names,
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-i8255.h17 * @names: (optional) array of names for gpios
27 const char *const *names; member
H A Dgpio-it87.c382 it87_gpio->chip.names = (const char *const*)labels_table; in it87_gpio_init()
403 kfree(it87_gpio->chip.names[0]); in it87_gpio_exit()
404 kfree(it87_gpio->chip.names); in it87_gpio_exit()
H A Dgpio-aspeed-sgpio.c45 const char names[4][3]; member
61 .names = { "A", "B", "C", "D" },
68 .names = { "E", "F", "G", "H" },
75 .names = { "I", "J", "K", "L" },
82 .names = { "M", "N", "O", "P" },
/third_party/icu/icu4c/source/common/
H A Ducurr.cpp91 // Tag for localized display names (symbols) of currencies
752 // We no longer support choice format data in names. Data should not contain in ucurr_getName()
846 // Following are structure and function for parsing currency names
893 // Give a locale, return the maximum number of currency names associated with
895 // It gets currency names from resource bundles using fallback.
897 // currency names are duplicated.
898 // For example, given locale as "en_US", the currency names get from resource
900 // all currency names in "en_US" and "en".
917 UResourceBundle* names = ures_getByIndex(curr, i, NULL, &ec2); in getCurrencyNameCount() local
919 s = ures_getStringByIndex(names, UCURR_SYMBOL_NAM in getCurrencyNameCount()
934 UResourceBundle* names = ures_getByIndex(curr_p, i, NULL, &ec3); getCurrencyNameCount() local
1021 UResourceBundle* names = ures_getByIndex(curr, i, NULL, &ec2); collectCurrencyNames() local
1080 UResourceBundle* names = ures_getByIndex(curr_p, i, NULL, &ec5); collectCurrencyNames() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducurr.cpp94 // Tag for localized display names (symbols) of currencies
768 // We no longer support choice format data in names. Data should not contain in ucurr_getName()
865 // Following are structure and function for parsing currency names
912 // Give a locale, return the maximum number of currency names associated with
914 // It gets currency names from resource bundles using fallback.
916 // currency names are duplicated.
917 // For example, given locale as "en_US", the currency names get from resource
919 // all currency names in "en_US" and "en".
940 UResourceBundle* names = ures_getByIndex(curr, i, nullptr, &ec2); in getCurrencyNameCount() local
942 s = ures_getStringByIndex(names, UCURR_SYMBOL_NAM in getCurrencyNameCount()
957 UResourceBundle* names = ures_getByIndex(curr_p, i, nullptr, &ec3); getCurrencyNameCount() local
1047 UResourceBundle* names = ures_getByIndex(curr, i, nullptr, &ec2); collectCurrencyNames() local
1106 UResourceBundle* names = ures_getByIndex(curr_p, i, nullptr, &ec5); collectCurrencyNames() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Ducurr.cpp91 // Tag for localized display names (symbols) of currencies
729 // We no longer support choice format data in names. Data should not contain in ucurr_getName()
823 // Following are structure and function for parsing currency names
870 // Give a locale, return the maximum number of currency names associated with
872 // It gets currency names from resource bundles using fallback.
874 // currency names are duplicated.
875 // For example, given locale as "en_US", the currency names get from resource
877 // all currency names in "en_US" and "en".
894 UResourceBundle* names = ures_getByIndex(curr, i, NULL, &ec2); in getCurrencyNameCount() local
896 s = ures_getStringByIndex(names, UCURR_SYMBOL_NAM in getCurrencyNameCount()
911 UResourceBundle* names = ures_getByIndex(curr_p, i, NULL, &ec3); getCurrencyNameCount() local
998 UResourceBundle* names = ures_getByIndex(curr, i, NULL, &ec2); collectCurrencyNames() local
1057 UResourceBundle* names = ures_getByIndex(curr_p, i, NULL, &ec5); collectCurrencyNames() local
[all...]
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-it87.c390 it87_gpio->chip.names = (const char *const*)labels_table; in it87_gpio_init()
411 kfree(it87_gpio->chip.names[0]); in it87_gpio_exit()
412 kfree(it87_gpio->chip.names); in it87_gpio_exit()
/kernel/linux/linux-6.6/drivers/mtd/spi-nor/
H A Ddebugfs.c58 const char *const *names, int names_len) in spi_nor_print_flags()
69 if (i < names_len && names[i]) in spi_nor_print_flags()
70 seq_puts(s, names[i]); in spi_nor_print_flags()
57 spi_nor_print_flags(struct seq_file *s, unsigned long flags, const char *const *names, int names_len) spi_nor_print_flags() argument
/third_party/benchmark/test/
H A Dperf_counters_gtest.cc57 EXPECT_EQ(counter.names(), std::vector<std::string>( in TEST()
65 EXPECT_EQ(counter.names(), std::vector<std::string>( in TEST()
79 EXPECT_EQ(counter.names(), std::vector<std::string>( in TEST()
/third_party/node/deps/v8/src/codegen/
H A Dexternal-reference-table.cc107 char** names = backtrace_symbols(&address, 1); in ResolveSymbol() local
108 const char* name = names[0]; in ResolveSymbol()
109 // The array of names is malloc'ed. However, each name string is static in ResolveSymbol()
111 base::Free(names); in ResolveSymbol()
H A Dregister-configuration.cc195 std::unique_ptr<char const* []> names { new char const*[num] }; in RestrictGeneralRegisters()
202 names[counter] = RegisterName(Register::from_code(i)); in RestrictGeneralRegisters()
208 std::move(names)); in RestrictGeneralRegisters()
/third_party/node/deps/v8/src/profiler/
H A Dsampling-heap-profiler.cc52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth, in SamplingHeapProfiler()
58 names_(names), in SamplingHeapProfiler()
193 const char* name = this->names()->GetCopy(shared.DebugNameCStr().get()); in AddStack()
51 SamplingHeapProfiler( Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth, v8::HeapProfiler::SamplingFlags flags) SamplingHeapProfiler() argument
/third_party/node/deps/v8/src/torque/
H A Dcpp-builder.h145 std::vector<std::string> names; in GetParameterNames() local
147 std::back_inserter(names), in GetParameterNames()
149 return names; in GetParameterNames()
/third_party/node/deps/undici/src/lib/fetch/
H A Dheaders.js105 // Note: undici does not implement forbidden header names
298 // Note: undici does not implement forbidden header names
397 // Note: undici does not implement forbidden header names
437 // 2. Let names be the result of convert header names to a sorted-lowercase
438 // set with all the names of the headers in list.
439 const names = [...this[kHeadersList]].sort((a, b) => a[0] < b[0] ? -1 : 1)
442 // 3. For each name of names:
443 for (let i = 0; i < names.length; ++i) {
444 const [name, value] = names[
[all...]
/third_party/python/Tools/scripts/
H A Dfixcid.py99 names = os.listdir(dirname)
103 names.sort()
105 for name in names:
/third_party/pcre2/pcre2/src/
H A Dpcre2posix.c23 * Neither the name of the University of Cambridge nor the names of its
44 wrappers that use the plain POSIX names. In addition, pcre2posix.h defines the
45 POSIX names as macros for the pcre2_xxx functions, so any program that includes
46 it and uses the POSIX names will call the base functions directly. This makes
168 POSIX functions were given pcre2_... names instead of the traditional POSIX
169 names. However, it has proved to be more troublesome than useful. There have
176 the PCRE2 names.
180 * Wrappers with traditional POSIX names *
184 POSIX library before these names were changed into macros in pcre2posix.h.
185 This also ensures that the POSIX names ar
[all...]
/third_party/python/Lib/idlelib/
H A Dhelp.py199 def findfont(self, names):
200 "Return name of first font family derived from names."
201 for name in names:
202 if name.lower() in (x.lower() for x in tkfont.names(root=self)):
/kernel/linux/linux-5.10/tools/bpf/bpftool/
H A Dcommon.c289 static const char * const names[] = { in get_fd_type_name() local
295 if (type < 0 || type >= ARRAY_SIZE(names) || !names[type]) in get_fd_type_name()
296 return names[BPF_OBJ_UNKNOWN]; in get_fd_type_name()
298 return names[type]; in get_fd_type_name()
/kernel/linux/linux-5.10/fs/afs/
H A Dproc.c451 struct afs_sysnames *names; variable
455 names = net->sysnames;
456 if (*pos >= names->nr)
464 struct afs_sysnames *names = net->sysnames; in afs_proc_sysname_next() local
467 if (*pos >= names->nr) in afs_proc_sysname_next()
/kernel/linux/linux-6.6/fs/afs/
H A Dproc.c451 struct afs_sysnames *names; variable
455 names = net->sysnames;
456 if (*pos >= names->nr)
464 struct afs_sysnames *names = net->sysnames; in afs_proc_sysname_next() local
467 if (*pos >= names->nr) in afs_proc_sysname_next()
/third_party/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_send.py392 names = sorted(procs.keys())
393 for i in range(len(names)):
394 comma = ',' if i < len(names) - 1 else ''
395 print(' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma))
/third_party/littlefs/scripts/
H A Dstructs.py324 names = list(table.keys() | diff_table.keys())
327 names.sort()
329 names.sort(key=lambda n: tuple(
337 names.sort(
420 for name in names:
450 # find the best widths, note that column 0 contains the names and column -1

Completed in 21 milliseconds

1...<<11121314151617181920>>...54