/third_party/node/deps/icu-small/source/i18n/ |
H A D | tznames.cpp | 50 TimeZoneNames* names; member 75 delete (icu::TimeZoneNamesImpl*) entry->names; in deleteTimeZoneNamesCacheEntry() 177 cacheEntry->names = tznames; in TimeZoneNamesDelegate() 253 return fTZnamesCacheEntry->names->getAvailableMetaZoneIDs(status); in getAvailableMetaZoneIDs() 258 return fTZnamesCacheEntry->names->getAvailableMetaZoneIDs(tzID, status); in getAvailableMetaZoneIDs() 263 return fTZnamesCacheEntry->names->getMetaZoneID(tzID, date, mzID); in getMetaZoneID() 268 return fTZnamesCacheEntry->names->getReferenceZoneID(mzID, region, tzID); in getReferenceZoneID() 273 return fTZnamesCacheEntry->names->getMetaZoneDisplayName(mzID, type, name); in getMetaZoneDisplayName() 278 return fTZnamesCacheEntry->names->getTimeZoneDisplayName(tzID, type, name); in getTimeZoneDisplayName() 283 return fTZnamesCacheEntry->names in getExemplarLocationName() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | tznames.cpp | 50 TimeZoneNames* names; member 75 delete (icu::TimeZoneNamesImpl*) entry->names; in deleteTimeZoneNamesCacheEntry() 177 cacheEntry->names = tznames; in TimeZoneNamesDelegate() 253 return fTZnamesCacheEntry->names->getAvailableMetaZoneIDs(status); in getAvailableMetaZoneIDs() 258 return fTZnamesCacheEntry->names->getAvailableMetaZoneIDs(tzID, status); in getAvailableMetaZoneIDs() 263 return fTZnamesCacheEntry->names->getMetaZoneID(tzID, date, mzID); in getMetaZoneID() 268 return fTZnamesCacheEntry->names->getReferenceZoneID(mzID, region, tzID); in getReferenceZoneID() 273 return fTZnamesCacheEntry->names->getMetaZoneDisplayName(mzID, type, name); in getMetaZoneDisplayName() 278 return fTZnamesCacheEntry->names->getTimeZoneDisplayName(tzID, type, name); in getTimeZoneDisplayName() 283 return fTZnamesCacheEntry->names in getExemplarLocationName() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | format_fallback.py | 42 names = set(fmt.name for fmt in formats) 61 if unorm_name in names: 70 names = set(fmt.name for fmt in formats) 79 assert r_name in names
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RuleBasedNumberFormat.java | 192 * set name must begin with a % sign. Rule sets with names that begin with a single % sign 194 * Rule sets with names that begin with %% are <em>private:</em> they exist only for the use 526 * is not allowed in rule set names or in rule text, and the colon is not allowed in rule set 527 * names. The characters beginning a substitution token are always treated as the beginning 583 * The formatter's rule names mapped to rule sets. 666 * Localizations for rule set names. 672 * The public rule set names; 711 * rule sets and their localized display names for different 712 * locales. The first element in the list is an array of the names 715 * list are arrays of localizations of the names o [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RuleBasedNumberFormat.java | 193 * set name must begin with a % sign. Rule sets with names that begin with a single % sign 195 * Rule sets with names that begin with %% are <em>private:</em> they exist only for the use 527 * is not allowed in rule set names or in rule text, and the colon is not allowed in rule set 528 * names. The characters beginning a substitution token are always treated as the beginning 580 * The formatter's rule names mapped to rule sets. 663 * Localizations for rule set names. 669 * The public rule set names; 707 * rule sets and their localized display names for different 708 * locales. The first element in the list is an array of the names 711 * list are arrays of localizations of the names o [all...] |
/third_party/node/deps/npm/node_modules/debug/src/ |
H A D | common.js | 22 * The currently active debug mode names, and names to skip. 25 createDebug.names = []; 31 * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". 166 createDebug.names = []; 184 createDebug.names.push(new RegExp('^' + namespaces + '$')); 197 ...createDebug.names.map(toNamespace), 225 for (i = 0, len = createDebug.names.length; i < len; i++) { 226 if (createDebug.names[i].test(name)) {
|
/third_party/python/Lib/test/support/ |
H A D | import_helper.py | 85 def _save_and_remove_modules(names): 87 prefixes = tuple(name + '.' for name in names) 89 if modname in names or modname.startswith(prefixes): 119 *fresh* is an iterable of additional module names that are also removed 123 *blocked* is an iterable of module names that are replaced with None 147 names = {name, *fresh, *blocked} 148 orig_modules = _save_and_remove_modules(names) 162 _save_and_remove_modules(names)
|
/third_party/node/deps/openssl/openssl/crypto/objects/ |
H A D | o_names.c | 307 const OBJ_NAME **names; member 317 d->names[d->n++] = name; in do_all_sorted_fn() 336 d.names = in OBJ_NAME_do_all_sorted() 337 OPENSSL_malloc(sizeof(*d.names) * lh_OBJ_NAME_num_items(names_lh)); in OBJ_NAME_do_all_sorted() 338 /* Really should return an error if !d.names...but its a void function! */ in OBJ_NAME_do_all_sorted() 339 if (d.names != NULL) { in OBJ_NAME_do_all_sorted() 343 qsort((void *)d.names, d.n, sizeof(*d.names), do_all_sorted_cmp); in OBJ_NAME_do_all_sorted() 346 fn(d.names[n], arg); in OBJ_NAME_do_all_sorted() 348 OPENSSL_free((void *)d.names); in OBJ_NAME_do_all_sorted() [all...] |
/third_party/openssl/crypto/objects/ |
H A D | o_names.c | 307 const OBJ_NAME **names; member 317 d->names[d->n++] = name; in do_all_sorted_fn() 336 d.names = in OBJ_NAME_do_all_sorted() 337 OPENSSL_malloc(sizeof(*d.names) * lh_OBJ_NAME_num_items(names_lh)); in OBJ_NAME_do_all_sorted() 338 /* Really should return an error if !d.names...but its a void function! */ in OBJ_NAME_do_all_sorted() 339 if (d.names != NULL) { in OBJ_NAME_do_all_sorted() 343 qsort((void *)d.names, d.n, sizeof(*d.names), do_all_sorted_cmp); in OBJ_NAME_do_all_sorted() 346 fn(d.names[n], arg); in OBJ_NAME_do_all_sorted() 348 OPENSSL_free((void *)d.names); in OBJ_NAME_do_all_sorted() [all...] |
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | __main__.py | 110 names = [d if isinstance(d, str) else d.name 114 data += ', '.join(names[:5]) 115 names = names[5:] 116 while names: 117 data = f'{data}{indent}{", ".join(names[:5])}' 118 names = names[5:]
|
/third_party/openssl/test/ |
H A D | ssl_test.c | 26 /* Currently the section names are of the form test-<number>, e.g. test-15. */ 234 static void print_ca_names(STACK_OF(X509_NAME) *names) in STACK_OF() 238 if (names == NULL || sk_X509_NAME_num(names) == 0) { in STACK_OF() 242 for (i = 0; i < sk_X509_NAME_num(names); i++) { in STACK_OF() 243 X509_NAME_print_ex(bio_err, sk_X509_NAME_value(names, i), 4, in STACK_OF() 251 STACK_OF(X509_NAME) *names) in check_ca_names() 257 if (names == NULL || sk_X509_NAME_num(names) == 0) { in check_ca_names() 262 if (sk_X509_NAME_num(names) ! in check_ca_names() 249 check_ca_names(const char *name, STACK_OF(X509_NAME) *expected_names, STACK_OF(X509_NAME) *names) check_ca_names() argument [all...] |
/third_party/benchmark/src/ |
H A D | perf_counters.h | 111 // Return a PerfCounters object ready to read the counters with the names 120 // names()[i]'s value is (*values)[i] 131 const std::vector<std::string>& names() const { return counter_names_; } in names() function in benchmark::internal::final 155 std::vector<std::string> names() const { return counters_.names(); } in names() function in benchmark::internal::final 177 for (size_t i = 0; i < counters_.names().size(); ++i) { in Stop() 180 measurements.push_back({counters_.names()[i], measurement}); in Stop()
|
/third_party/mbedtls/tests/scripts/ |
H A D | translate_ciphers.py | 21 Translate standard ciphersuite names to GnuTLS, OpenSSL and Mbed TLS standards. 33 Ensure translate_ciphers.py translates and formats ciphersuite names 38 Translate standard ciphersuite names to GnuTLS, OpenSSL and 97 # Replace "_" with "-" to handle ciphersuite names based on Mbed TLS 129 # Replace "_" with "-" to handle ciphersuite names based on Mbed TLS 177 def format_ciphersuite_names(mode, names): 182 return " ".join(c + '=' + t(c) for c in names) 184 def main(target, names): 185 print(format_ciphersuite_names(target, names)) 190 PARSER.add_argument('names', metava [all...] |
/third_party/jinja2/ |
H A D | exceptions.py | 59 If a name in the list of names is :class:`Undefined`, a message 67 names: t.Sequence[t.Union[str, "Undefined"]] = (), 75 for name in names: 84 super().__init__(names[-1] if names else None, message) 85 self.templates = list(names)
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | exceptions.py | 79 If a name in the list of names is :class:`Undefined`, a message 85 def __init__(self, names=(), message=None): 91 for name in names: 100 TemplateNotFound.__init__(self, names and names[-1] or None, message) 101 self.templates = list(names)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | exceptions.py | 72 def __init__(self, names=(), message=None): 75 u', '.join(imap(text_type, names)) 76 TemplateNotFound.__init__(self, names and names[-1] or None, message) 77 self.templates = list(names)
|
/third_party/libevdev/libevdev/ |
H A D | make-event-names.py | 121 names = sorted(list(getattr(bits, prefix).items())) 123 names = names + btn_additional 129 names.append((bits.max_codes[maxname], maxname)) 131 for val, name in sorted(names, key=lambda e: e[1]):
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dump_defines.c | 58 const char **names) in util_dump_enum_continuous() 62 return names[value]; in util_dump_enum_continuous() 95 const char * const *names) in util_dump_flags_continuous() 102 if (i >= (int)num_names || !names[i]) in util_dump_flags_continuous() 106 fputs(names[i], stream); in util_dump_flags_continuous() 56 util_dump_enum_continuous(unsigned value, unsigned num_names, const char **names) util_dump_enum_continuous() argument 94 util_dump_flags_continuous(FILE *stream, unsigned value, unsigned num_names, const char * const *names) util_dump_flags_continuous() argument
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | param_build_set.c | 97 const char *names[], in ossl_param_build_set_multi_key_bn() 105 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 107 if (bn != NULL && !OSSL_PARAM_BLD_push_BN(bld, names[i], bn)) in ossl_param_build_set_multi_key_bn() 113 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 115 p = OSSL_PARAM_locate(params, names[i]); in ossl_param_build_set_multi_key_bn() 96 ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *params, const char *names[], STACK_OF(BIGNUM_const) *stk) ossl_param_build_set_multi_key_bn() argument
|
/third_party/openssl/crypto/ |
H A D | param_build_set.c | 97 const char *names[], in ossl_param_build_set_multi_key_bn() 105 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 106 if (!OSSL_PARAM_BLD_push_BN(bld, names[i], in ossl_param_build_set_multi_key_bn() 113 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 114 p = OSSL_PARAM_locate(params, names[i]); in ossl_param_build_set_multi_key_bn() 96 ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *params, const char *names[], STACK_OF(BIGNUM_const) *stk) ossl_param_build_set_multi_key_bn() argument
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | exceptions.py | 79 If a name in the list of names is :class:`Undefined`, a message 85 def __init__(self, names=(), message=None): 91 for name in names: 100 TemplateNotFound.__init__(self, names and names[-1] or None, message) 101 self.templates = list(names)
|
/third_party/ffmpeg/libavutil/ |
H A D | vulkan_loader.h | 92 const char *names[3]; in ff_vk_load_functions() member 109 for (int j = 0; j < FF_ARRAY_ELEMS(load->names); j++) { in ff_vk_load_functions() 110 const char *name = load->names[j]; in ff_vk_load_functions() 125 "as supported, but got NULL function pointer!\n", load->names[0]); in ff_vk_load_functions()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | SetProperties.cpp | 82 CRecordVector<const wchar_t *> names;
in SetProperties() local 84 names.Add((const wchar_t *)realNames[i]);
in SetProperties() 86 return setProperties->SetProperties(&names.Front(), values.values, names.Size());
in SetProperties()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_exitfunc.py | 59 names = self.sys_import.children[1] 60 if names.type == syms.dotted_as_names: 61 names.append_child(Comma()) 62 names.append_child(Name("atexit", " "))
|
/third_party/toybox/toys/posix/ |
H A D | logger.c | 31 // find str in names[], accepting unambiguous short matches 33 int arrayfind(char *str, char *names[], int len) in arrayfind() argument 42 if (!names[try][i]) return try; in arrayfind() 45 if (!names[try][i]) break; in arrayfind() 46 if (toupper(str[i]) != toupper(names[try][i])) break; in arrayfind()
|