/third_party/nghttp2/src/ |
H A D | shrpx_tls_test.cc | 80 constexpr StringRef names[] = { in test_shrpx_tls_create_lookup_tree() local 86 num = array_size(names); in test_shrpx_tls_create_lookup_tree() 90 tree->add_cert(names[idx], idx); in test_shrpx_tls_create_lookup_tree() 93 CU_ASSERT((ssize_t)i == tree->lookup(names[i])); in test_shrpx_tls_create_lookup_tree()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ucmndata.cpp | 124 offsetTOCPrefixBinarySearch(const char *s, const char *names, in offsetTOCPrefixBinarySearch() argument 141 * At the same time, we find if s is one of the start and (limit-1) names, in offsetTOCPrefixBinarySearch() 144 if(0==strcmpAfterPrefix(s, names+toc[0].nameOffset, &startPrefixLength)) { in offsetTOCPrefixBinarySearch() 149 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, &limitPrefixLength)) { in offsetTOCPrefixBinarySearch() 155 int32_t cmp=strcmpAfterPrefix(s, names+toc[i].nameOffset, &prefixLength); in offsetTOCPrefixBinarySearch() 186 * At the same time, we find if s is one of the start and (limit-1) names, in pointerTOCPrefixBinarySearch()
|
/third_party/musl/libc-test/src/functionalext/unittest/ |
H A D | unit_test_ldso_ns_config.c | 495 sections.names = (char**)calloc(sections.size, sizeof *sections.names); in ns_config_test_0320() 499 if (sections.names){ in ns_config_test_0320() 500 free(sections.names); in ns_config_test_0320()
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | info.py | 168 names = set(super().__dir__()) 169 names.update(self._extra) 170 names.remove('_locked') 171 return sorted(names)
|
/third_party/python/Lib/ |
H A D | cmd.py | 310 names = self.get_names() 314 for name in names: 317 names.sort() 320 for name in names:
|
H A D | pyclbr.py | 11 is a dictionary. The keys of the dictionary are the names of the 27 The 'children' attribute is a dictionary mapping names to objects. 36 methods -- mapping of method names to beginning line numbers. 202 elif len(names := name.split(".")) > 1: 205 *_, module, class_ = names 237 for module in node.names: 259 for name in node.names:
|
H A D | enum.py | 352 Track enum member order and ensure member names are not reused. 354 EnumType will use the names found in self._member_names as the 355 enumeration member names. 371 Single underscore (sunder) names are reserved. 391 '_sunder_ names, such as %r, are reserved for future Enum use' 409 '_ignore_ cannot specify already set names: %r' 511 # grab member names 514 # check for illegal enum names (any others?) 685 def __call__(cls, value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None): 691 (i.e. Color = Enum('Color', names [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucmndata.cpp | 124 offsetTOCPrefixBinarySearch(const char *s, const char *names, in offsetTOCPrefixBinarySearch() argument 141 * At the same time, we find if s is one of the start and (limit-1) names, in offsetTOCPrefixBinarySearch() 144 if(0==strcmpAfterPrefix(s, names+toc[0].nameOffset, &startPrefixLength)) { in offsetTOCPrefixBinarySearch() 149 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, &limitPrefixLength)) { in offsetTOCPrefixBinarySearch() 155 int32_t cmp=strcmpAfterPrefix(s, names+toc[i].nameOffset, &prefixLength); in offsetTOCPrefixBinarySearch() 186 * At the same time, we find if s is one of the start and (limit-1) names, in pointerTOCPrefixBinarySearch()
|
/third_party/selinux/libselinux/src/ |
H A D | booleans.c | 38 int security_get_boolean_names(char ***names, int *len) in security_get_boolean_names() argument 45 if (!len || names == NULL) { in security_get_boolean_names() 75 *names = n; in security_get_boolean_names() 382 int security_get_boolean_names(char ***names __attribute__((unused)), in security_get_boolean_names()
|
/third_party/vulkan-loader/loader/ |
H A D | cJSON.c | 789 char **entries = 0, **names = 0; in print_object() local 863 /* Allocate space for the names and the objects */ in print_object() 866 names = (char **)cJSON_malloc(item->pAllocator, numentries * sizeof(char *)); in print_object() 867 if (!names) { in print_object() 872 memset(names, 0, sizeof(char *) * numentries); in print_object() 879 names[i] = str = print_string_ptr(item->pAllocator, child->string, 0); in print_object() 895 if (names[i]) cJSON_Free(item->pAllocator, names[j]); in print_object() 898 cJSON_Free(item->pAllocator, names); in print_object() 911 tmplen = strlen(names[ in print_object() [all...] |
/third_party/alsa-utils/aplay/ |
H A D | aplay.c | 214 "-L, --list-pcms list device names\n" in usage() 3369 static void playbackv_go(int* fds, unsigned int channels, size_t loaded, off_t count, int rtype, char **names) argument 3377 header(rtype, names[0]); 3396 perror(names[0]); 3401 perror(names[channel]); 3423 static void capturev_go(int* fds, unsigned int channels, off_t count, int rtype, char **names) argument 3431 header(rtype, names[0]); 3450 perror(names[channel]); 3460 static void playbackv(char **names, unsigned int count) argument 3471 size_t len = strlen(names[ 3513 capturev(char **names, unsigned int count) global() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 104 names = zipfp.namelist() 105 self.assertEqual(len(names), 4) 106 self.assertIn(TESTFN, names) 107 self.assertIn("another.name", names) 108 self.assertIn("strfile", names) 109 self.assertIn("written-open-w", names) 113 names = [i.filename for i in infos] 114 self.assertEqual(len(names), 4) 115 self.assertIn(TESTFN, names) 116 self.assertIn("another.name", names) [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ccapitst.c | 1148 * alias names and the alias table integrity. Make sure each 1300 * back to predermined converter names. in TestAlias() 1674 static const char *const names[] = { in TestConvertSafeClone() local 1698 int32_t actualSizes[UPRV_LENGTHOF(names)]; in TestConvertSafeClone() 1728 cnv = ucnv_open(names[0], &err); in TestConvertSafeClone() 1813 for (idx = 0; idx < UPRV_LENGTHOF(names); idx++) in TestConvertSafeClone() 1816 cnv = ucnv_open(names[idx], &err); in TestConvertSafeClone() 1818 log_data_err("ucnv_open(\"%s\") failed - %s\n", names[idx], u_errorName(err)); in TestConvertSafeClone() 1828 maxName = names[idx]; in TestConvertSafeClone() 1843 log_err("ucnv_safeClone(%s) did a heap clone although the buffer was large enough\n", names[id in TestConvertSafeClone() 1912 static const char *const names[] = { TestConvertClone() local 3640 compareNames(const char **names) compareNames() argument 3825 static const char *const names[] = { TestGetName() local 3850 static const char *const names[] = { TestUTFBOM() local [all...] |
/third_party/node/lib/internal/bootstrap/ |
H A D | realm.js | 252 * Exported names for the ESM imports. 364 const names = this.exportKeys; 366 for (let i = 0; i < names.length; i++) { 367 const exportName = names[i];
|
/third_party/mesa3d/src/mapi/new/ |
H A D | genCommon.py | 109 names = set() 120 names.add(commandElem.get("name")) 121 return names 145 Returns a string with the types and names of the arguments, as you 156 Returns a string with the names of the arguments, as you would use in a
|
/third_party/mesa3d/src/util/ |
H A D | u_debug.h | 333 debug_dump_enum(const struct debug_named_value *names, 337 debug_dump_enum_noprefix(const struct debug_named_value *names, 346 debug_dump_flags(const struct debug_named_value *names,
|
/third_party/skia/tests/ |
H A D | FontNamesTest.cpp | 94 } names[10]; member 124 strcmp(test.names[nameIndex].name, record.name.c_str()) == 0, in test_synthetic() 128 strcmp(test.names[nameIndex].language, record.language.c_str()) == 0, in test_synthetic() 138 REPORTER_ASSERT(reporter, nameIndex == test.nameCount, "Fewer names than expected."); in test_synthetic() 140 REPORTER_ASSERT(reporter, !iter.next(record), "More names than expected."); in test_synthetic()
|
/third_party/elfutils/src/ |
H A D | elfcompress.c | 287 /* String table (and symbol table), if section names need adjusting. */ in process_file() 288 Dwelf_Strtab *names = NULL; in process_file() local 293 /* Section data from names. */ in process_file() 375 /* Whether we need to adjust any section names (going to/from GNU in process_file() 401 names change and whether there is a symbol table that might need in process_file() 414 any section references (names) and adjust the layout based on the in process_file() 480 /* We need a buffer this large if we change the names. */ in process_file() 530 names = dwelf_strtab_init (true); in process_file() 531 if (names == NULL) in process_file() 647 sections, collect names o in process_file() [all...] |
/third_party/littlefs/scripts/ |
H A D | stack.py | 341 names = list(table.keys() | diff_table.keys()) 344 names.sort() 346 names.sort(key=lambda n: tuple( 354 names.sort( 437 for name in names: 467 # find the best widths, note that column 0 contains the names and column -1 489 line_table = {n: l for n, l in zip(names, lines[1:-1])} 520 [n for n in names if n in children], 527 recurse(names, depth)
|
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 311 asdl_alias_seq *names; member 316 asdl_alias_seq *names; member 321 asdl_identifier_seq *names; member 325 asdl_identifier_seq *names; member 704 stmt_ty _PyAST_Import(asdl_alias_seq * names, int lineno, int col_offset, int 706 stmt_ty _PyAST_ImportFrom(identifier module, asdl_alias_seq * names, int level, 709 stmt_ty _PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset, 711 stmt_ty _PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int
|
/third_party/curl/lib/ |
H A D | socks_sspi.c | 85 SecPkgCredentials_Names names; in Curl_SOCKS5_gssapi_negotiate() local 326 &names); in Curl_SOCKS5_gssapi_negotiate() 330 s_pSecFn->FreeContextBuffer(names.sUserName); in Curl_SOCKS5_gssapi_negotiate() 336 char *user_utf8 = curlx_convert_tchar_to_UTF8(names.sUserName); in Curl_SOCKS5_gssapi_negotiate() 341 s_pSecFn->FreeContextBuffer(names.sUserName); in Curl_SOCKS5_gssapi_negotiate()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UCharacterSurrogateTest.java | 31 String[] names = {"Latin-1 Supplement", in TestUnicodeBlockForName() 40 for (int i = 0; i < names.length; ++i) { in TestUnicodeBlockForName() 43 .forName(names[i]); in TestUnicodeBlockForName() 44 logln("found: " + b + " for name: " + names[i]); in TestUnicodeBlockForName() 46 errln("could not find block for name: " + names[i]); in TestUnicodeBlockForName()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UCharacterSurrogateTest.java | 28 String[] names = {"Latin-1 Supplement", in TestUnicodeBlockForName() 37 for (int i = 0; i < names.length; ++i) { in TestUnicodeBlockForName() 40 .forName(names[i]); in TestUnicodeBlockForName() 41 logln("found: " + b + " for name: " + names[i]); in TestUnicodeBlockForName() 43 errln("could not find block for name: " + names[i]); in TestUnicodeBlockForName()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/ |
H A D | TransliteratorInputMethod.java | 667 final String[] names = { in toString() 671 if (id < names.length) { in toString() 672 return names[id]; in toString() 674 return names[id] + "-" + (id/names.length); in toString()
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_container.c | 98 /* DXC doesn't de-duplicate arbitrary semantic names until validator 1.7, only SVs. */ in get_semantic_name_offset() 164 struct _mesa_string_buffer *names = in dxil_container_add_io_signature() local 168 names, fixed_size, in dxil_container_add_io_signature() 188 /* write all names */ in dxil_container_add_io_signature() 190 if (!blob_write_bytes(&c->parts, names->buf, names->length)) in dxil_container_add_io_signature() 194 _mesa_string_buffer_destroy(names); in dxil_container_add_io_signature()
|