/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/python/Lib/ |
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/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()
|
/kernel/linux/linux-5.10/sound/pci/oxygen/ |
H A D | xonar_wm87x6.c | 569 const char *const *names; in wm8776_field_enum_info() local 574 names = hld; in wm8776_field_enum_info() 579 names = atk_lim; in wm8776_field_enum_info() 581 names = atk_alc; in wm8776_field_enum_info() 584 names = dcy_lim; in wm8776_field_enum_info() 586 names = dcy_alc; in wm8776_field_enum_info() 590 names = tranwin; in wm8776_field_enum_info() 595 return snd_ctl_enum_info(info, 1, max + 1, names); in wm8776_field_enum_info() 849 static const char *const names[3] = { in wm8776_level_control_info() local 853 return snd_ctl_enum_info(info, 1, 3, names); in wm8776_level_control_info() 935 static const char *const names[2] = { hpf_info() local [all...] |
/kernel/linux/linux-6.6/sound/pci/oxygen/ |
H A D | xonar_wm87x6.c | 569 const char *const *names; in wm8776_field_enum_info() local 574 names = hld; in wm8776_field_enum_info() 579 names = atk_lim; in wm8776_field_enum_info() 581 names = atk_alc; in wm8776_field_enum_info() 584 names = dcy_lim; in wm8776_field_enum_info() 586 names = dcy_alc; in wm8776_field_enum_info() 590 names = tranwin; in wm8776_field_enum_info() 595 return snd_ctl_enum_info(info, 1, max + 1, names); in wm8776_field_enum_info() 849 static const char *const names[3] = { in wm8776_level_control_info() local 853 return snd_ctl_enum_info(info, 1, 3, names); in wm8776_level_control_info() 935 static const char *const names[2] = { hpf_info() local [all...] |
/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...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | locking.c | 46 .names[level] = "btrfs-" stem "-0" #level, 61 char names[BTRFS_MAX_LEVEL][24]; member 93 lockdep_set_class_and_name(&eb->lock, &ks->keys[level], ks->names[level]); in btrfs_set_buffer_lockdep_class()
|
/kernel/linux/linux-6.6/drivers/pmdomain/sunxi/ |
H A D | sun20i-ppu.c | 39 const char *const *names; member 152 pd->genpd.name = desc->names[i]; in sun20i_ppu_probe() 181 .names = sun20i_d1_ppu_pd_names,
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-reg.c | 126 * @names: array of %num strings describing each GPIO signal or %NULL 141 const char *const *names, struct irq_domain *irqdom, const int *irqs) in gpio_reg_init() 167 r->gc.names = names; in gpio_reg_init() 139 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/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/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...] |
H A D | ucnvseltst.c | 61 log_err("unable to allocate memory for %ld available converter names\n", in getAvailableNames() 80 const char **names; in getEncodings() local 87 names = (const char **)uprv_malloc(count * sizeof(char *)); in getEncodings() 88 if (names == NULL) { in getEncodings() 97 names[i] = gAvailableNames[start]; in getEncodings() 102 return names; in getEncodings()
|
/kernel/linux/linux-5.10/security/apparmor/ |
H A D | lib.c | 221 void aa_audit_perm_names(struct audit_buffer *ab, const char * const *names, in aa_audit_perm_names() argument 230 audit_log_format(ab, fmt, names[i]); in aa_audit_perm_names() 240 u32 chrsmask, const char * const *names, u32 namesmask) in aa_audit_perm_mask() 252 if ((mask & namesmask) && names) in aa_audit_perm_mask() 253 aa_audit_perm_names(ab, names, mask & namesmask); in aa_audit_perm_mask() 239 aa_audit_perm_mask(struct audit_buffer *ab, u32 mask, const char *chrs, u32 chrsmask, const char * const *names, u32 namesmask) aa_audit_perm_mask() argument
|
/test/testfwk/arkxtest/uitest/record/ |
H A D | ui_record.cpp | 365 std::vector<std::string> names = GetFrontAbility(); in RecordInitEnv() local 366 std::cout << "Current ForAbility :" << names[ZERO] << ", " << names[ONE] << std::endl; in RecordInitEnv() 374 outFile << names[ZERO] << ','; in RecordInitEnv() local 375 outFile << names[ONE] << ',' << std::endl; in RecordInitEnv()
|
/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()
|