Home
last modified time | relevance | path

Searched refs:names (Results 276 - 300 of 1332) sorted by relevance

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

/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DULocaleCollationTest.java255 // some non-canonical names in TestNameList()
296 LocaleDisplayNames names = LocaleDisplayNames.getInstance(french, in TestNameList()
299 logln("Contexts: " + names.getContext(type).toString()); in TestNameList()
313 List<UiListItem> newList = names.getUiList(list, false, collator); in TestNameList()
333 LocaleDisplayNames names = LocaleDisplayNames.getInstance(french, in TestIllformedLocale()
338 names.getUiList(supported, false, collator); in TestIllformedLocale()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DULocaleCollationTest.java258 // some non-canonical names in TestNameList()
299 LocaleDisplayNames names = LocaleDisplayNames.getInstance(french, in TestNameList()
302 logln("Contexts: " + names.getContext(type).toString()); in TestNameList()
316 List<UiListItem> newList = names.getUiList(list, false, collator); in TestNameList()
336 LocaleDisplayNames names = LocaleDisplayNames.getInstance(french, in TestIllformedLocale()
341 names.getUiList(supported, false, collator); in TestIllformedLocale()
/third_party/node/deps/v8/src/wasm/
H A Dmodule-decoder.h57 // The class names "NameAssoc", "NameMap", and "IndirectNameMap" match
83 explicit NameMap(std::vector<NameAssoc> names) : names_(std::move(names)) { in NameMap() argument
105 IndirectNameMapEntry(int index, std::vector<NameAssoc> names) in IndirectNameMapEntry() argument
106 : NameMap(std::move(names)), index_(index) {} in IndirectNameMapEntry()
192 // Decode the function names from the name section. Returns the result as an
193 // unordered map. Only names with valid utf8 encoding are stored and conflicts
196 std::unordered_map<uint32_t, WireBytesRef>* names);
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
H A Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
135 if i >= 0 && i < len(names) {
136 s = names[i]
145 func parseEnum(s string, names []string) int {
146 for i, name := range names {
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
H A Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
135 if i >= 0 && i < len(names) {
136 s = names[i]
145 func parseEnum(s string, names []string) int {
146 for i, name := range names {
/third_party/skia/src/sfnt/
H A DSkOTUtils.cpp70 static constexpr std::array<SkOTTableName::Record::NameID::Predefined::Value, 5> names{{ in RenameFont()
87 + (encodings.size() * names.size() * sizeof(SkOTTableName::Record)) in RenameFont()
133 unsigned short stringOffset = sizeof(SkOTTableName) + (encodings.size() * names.size() * sizeof(SkOTTableName::Record)); in RenameFont()
135 nameTable->count = SkEndian_SwapBE16(encodings.size() * names.size()); in RenameFont()
140 for (const auto& name : names) { in RenameFont()
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
H A Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
135 if i >= 0 && i < len(names) {
136 s = names[i]
145 func parseEnum(s string, names []string) int {
146 for i, name := range names {
/kernel/linux/linux-6.6/scripts/
H A Dget_abi.pl355 my @names = split /\xac/,$w;
358 foreach my $name (@names) {
365 foreach my $name (@names) {
713 my @names = @{$names_ref};
714 my $file = $names[0];
733 for (my $i = 0; $i < @names; $i++) {
736 print STDERR "--> $names[$i]\n";
738 print STDERR " $names[$i]\n";
742 print STDERR "$names[$i] =~ /^$re\$/\n" if ($debug && $dbg_undefined);
743 if ($names[
[all...]
/third_party/icu/tools/unicode/c/genprops/
H A Dnamespropsbuilder.cpp18 * This builder reads Unicode character names and aliases,
31 * -- data-based names
52 * tokenString=tokenStrings+token; (tokenStrings=start of names data + tokenStringOffset;)
60 * uint16_t groupMSB; -- for a group of 32 character names stored, this is code point>>5
61 * uint16_t offsetHigh; -- group strings are at start of names data + groupStringsOffset + this 32 bit-offset
79 * -- algorithmic names
88 * algorithmic names (Unicode 3.0.0: 3, hardcoded in gennames)
197 /* the structure for algorithmic names needs to be 4-aligned */
273 addLine(UChar32 code, const char *names[], int16_t lengths[], int16_t count);
305 const char *names[ in setProps() local
981 addLine(UChar32 code, const char *names[], int16_t lengths[], int16_t count) addLine() argument
[all...]
/third_party/node/deps/openssl/openssl/util/
H A Dfind-doc-nits111 # A common regexp for C symbol names
119 # We collect files names on the fly, on known tag basis
292 err($id, "POD markup among the names in NAME")
303 my %names;
309 $names{$n} = 1;
409 unless defined $names{$sym};
410 $names{$sym} = 2;
417 foreach my $n ( keys %names ) {
418 next if $names{$n} == 2;
598 # easier than the man1 checks, we only check the names followe
[all...]
/third_party/openssl/util/
H A Dfind-doc-nits111 # A common regexp for C symbol names
119 # We collect files names on the fly, on known tag basis
292 err($id, "POD markup among the names in NAME")
303 my %names;
309 $names{$n} = 1;
409 unless defined $names{$sym};
410 $names{$sym} = 2;
417 foreach my $n ( keys %names ) {
418 next if $names{$n} == 2;
598 # easier than the man1 checks, we only check the names followe
[all...]
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dttload.c840 TT_Name names = NULL; in FT_LOCAL_DEF() local
959 if ( FT_QNEW_ARRAY( names, table->numNameRecords ) || in FT_LOCAL_DEF()
965 TT_Name entry = names; in FT_LOCAL_DEF()
1008 FT_MEM_QRENEW_ARRAY( names, in FT_LOCAL_DEF()
1011 table->names = names; in FT_LOCAL_DEF()
1012 names = NULL; in FT_LOCAL_DEF()
1022 FT_FREE( names ); in FT_LOCAL_DEF()
1047 if ( table->names ) in tt_face_free_name()
1049 TT_Name entry = table->names; in tt_face_free_name()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dx509.c183 static void warn_copying(ASN1_OBJECT *excluded, const char *names) in warn_copying() argument
187 if (names != NULL && strstr(names, sn) != NULL) in warn_copying()
193 static X509_REQ *x509_to_req(X509 *cert, int ext_copy, const char *names) in x509_to_req() argument
207 * If names is not NULL, copy only those extensions listed there. in x509_to_req()
209 warn_copying(skid, names); in x509_to_req()
210 warn_copying(akid, names); in x509_to_req()
1179 static int parse_ext_names(char *names, const char **result) in parse_ext_names() argument
1184 p = q = names; in parse_ext_names()
1185 len = strlen(names); in parse_ext_names()
1213 const char *sn, **names = NULL; print_x509v3_exts() local
[all...]
/third_party/openssl/apps/
H A Dx509.c183 static void warn_copying(ASN1_OBJECT *excluded, const char *names) in warn_copying() argument
187 if (names != NULL && strstr(names, sn) != NULL) in warn_copying()
193 static X509_REQ *x509_to_req(X509 *cert, int ext_copy, const char *names) in x509_to_req() argument
207 * If names is not NULL, copy only those extensions listed there. in x509_to_req()
209 warn_copying(skid, names); in x509_to_req()
210 warn_copying(akid, names); in x509_to_req()
1179 static int parse_ext_names(char *names, const char **result) in parse_ext_names() argument
1184 p = q = names; in parse_ext_names()
1185 len = strlen(names); in parse_ext_names()
1213 const char *sn, **names = NULL; print_x509v3_exts() local
[all...]
/third_party/elfutils/backends/
H A Dsparc_regs.c1 /* Register names and numbers for SPARC DWARF.
62 static const char names[2][8][6] = in sparc_register_info() local
71 return stpncpy (name, names[ebl->class == ELFCLASS64][regno], in sparc_register_info()
/third_party/musl/src/ctype/
H A Diswctype.c53 static const char names[] = in wctype() local
58 for (i=1, p=names; *p; i++, p+=6) in wctype()
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslation-opcode.h63 static const char* const names[] = {TRANSLATION_OPCODE_LIST(CASE)}; in TranslationOpcodeToString() local
65 return names[static_cast<int>(o)]; in TranslationOpcodeToString()
/third_party/skia/tests/
H A DSamplingTest.cpp20 const char* names[] = { in DEF_TEST() local
25 for (auto name : names) { in DEF_TEST()
/third_party/skia/infra/bots/recipe_modules/builder_name_schema/examples/
H A Dfull.py13 names = [
17 for name in names:
/third_party/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c1659 } names[]={ variable
1699 for(i=0; i<UPRV_LENGTHOF(names); ++i) { in enumCharNamesFn()
1700 if(code==(UChar32)names[i].code) { in enumCharNamesFn()
1703 if(0!=strcmp(name, names[i].extName)) { in enumCharNamesFn()
1704 log_err("u_enumCharName(0x%lx - Extended)=%s instead of %s\n", code, name, names[i].extName); in enumCharNamesFn()
1708 if(0!=strcmp(name, names[i].name)) { in enumCharNamesFn()
1709 log_err("u_enumCharName(0x%lx)=%s instead of %s\n", code, name, names[i].name); in enumCharNamesFn()
1713 expected=names[i].oldName; in enumCharNamesFn()
1719 expected=names[i].alias; in enumCharNamesFn()
1785 /* no names dat in TestCharNames()
[all...]
/third_party/alsa-lib/src/control/
H A Dhcontrol.c217 static int snd_hctl_compare_mixer_priority_lookup(const char **name, const char * const *names, int coef) in snd_hctl_compare_mixer_priority_lookup() argument
221 for (res = 0; *names; names++, res += coef) { in snd_hctl_compare_mixer_priority_lookup()
222 if (!strncmp(*name, *names, strlen(*names))) { in snd_hctl_compare_mixer_priority_lookup()
223 *name += strlen(*names); in snd_hctl_compare_mixer_priority_lookup()
234 static const char *const names[] = { in get_compare_weight() local
298 if ((res = snd_hctl_compare_mixer_priority_lookup((const char **)&name, names, 1000000)) == NOT_FOUND) in get_compare_weight()
/third_party/node/deps/v8/src/objects/
H A Dmodule.cc304 // Collect the export names. in GetModuleNamespace()
314 ZoneVector<Handle<String>> names(&zone); in GetModuleNamespace()
315 names.reserve(exports->NumberOfElements()); in GetModuleNamespace()
319 names.push_back(handle(String::cast(key), isolate)); in GetModuleNamespace()
321 DCHECK_EQ(static_cast<int>(names.size()), exports->NumberOfElements()); in GetModuleNamespace()
324 std::sort(names.begin(), names.end(), in GetModuleNamespace()
339 static_cast<int>(names.size()), in GetModuleNamespace()
342 for (const auto& name : names) { in GetModuleNamespace()
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-reg.c118 * @names: array of %num strings describing each GPIO signal or %NULL
133 const char *const *names, struct irq_domain *irqdom, const int *irqs) in gpio_reg_init()
159 r->gc.names = names; in gpio_reg_init()
131 gpio_reg_init(struct device *dev, void __iomem *reg, int base, int num, const char *label, u32 direction, u32 def_out, const char *const *names, struct irq_domain *irqdom, const int *irqs) gpio_reg_init() argument
/third_party/googletest/googlemock/src/
H A Dgmock-internal-utils.cc14 // * Neither the name of Google Inc. nor the names of its
58 const std::vector<const char*>& names, const Strings& values) { in JoinAsKeyValueTuple()
59 GTEST_CHECK_(names.size() == values.size()); in JoinAsKeyValueTuple()
64 return std::string(names[i]) + ": " + values[i]; in JoinAsKeyValueTuple()
57 JoinAsKeyValueTuple( const std::vector<const char*>& names, const Strings& values) JoinAsKeyValueTuple() argument
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
H A DCldrDataProcessorTest.java65 ImmutableMap<String, String> names = ImmutableMap.of(); field in CldrDataProcessorTest.State
69 names = ImmutableMap.copyOf(map); in setNames()
123 assertThat(state.names) in testTwoLevelProcessing()

Completed in 22 milliseconds

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