/third_party/skia/tools/skqp/ |
H A D | make_apk_list.py | 123 assert '/' in [os.sep, os.altsep] and '..' == os.pardir
|
/third_party/skia/experimental/tools/ |
H A D | get_examples.py | 25 assert os.pardir == '..' and '/' in [os.sep, os.altsep]
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | symbol.c | 624 char *sep, *endptr; in modules__parse() local 642 sep = strrchr(line, 'x'); in modules__parse() 643 if (sep == NULL) in modules__parse() 646 hex2u64(sep + 1, &start); in modules__parse() 648 sep = strchr(line, ' '); in modules__parse() 649 if (sep == NULL) in modules__parse() 652 *sep = '\0'; in modules__parse() 656 size = strtoul(sep + 1, &endptr, 0); in modules__parse()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | TimeZoneFormat.java | 1718 Character sep = isBasic ? null : ':'; in formatOffsetISO8601() 1760 if (sep != null && idx != 0) { in formatOffsetISO8601() 1761 buf.append(sep); in formatOffsetISO8601() 2124 String sep = ":"; in expandOffsetPattern() 2127 sep = offsetHM.substring(idx_H + 1, idx_mm); in expandOffsetPattern() 2129 return offsetHM.substring(0, idx_mm + 2) + sep + "ss" + offsetHM.substring(idx_mm + 2); in expandOffsetPattern() 2923 * @param sep The separator character 2928 private static int parseAsciiOffsetFields(String text, ParsePosition pos, char sep, in parseAsciiOffsetFields() argument 2935 if (c == sep) { in parseAsciiOffsetFields()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TimeZoneFormat.java | 1648 Character sep = isBasic ? null : ':'; in formatOffsetISO8601() 1690 if (sep != null && idx != 0) { in formatOffsetISO8601() 1691 buf.append(sep); in formatOffsetISO8601() 2054 String sep = ":"; in expandOffsetPattern() 2057 sep = offsetHM.substring(idx_H + 1, idx_mm); in expandOffsetPattern() 2059 return offsetHM.substring(0, idx_mm + 2) + sep + "ss" + offsetHM.substring(idx_mm + 2); in expandOffsetPattern() 2853 * @param sep The separator character 2858 private static int parseAsciiOffsetFields(String text, ParsePosition pos, char sep, in parseAsciiOffsetFields() argument 2865 if (c == sep) { in parseAsciiOffsetFields()
|
/third_party/mbedtls/library/ |
H A D | x509_crt.c | 1667 ret = mbedtls_snprintf(p, n, "%s" i, sep); \ 1669 sep = ", "; \ 1694 const char *sep = ""; in x509_info_ext_key_usage() local 1701 ret = mbedtls_snprintf(p, n, "%s%s", sep, desc); in x509_info_ext_key_usage() 1704 sep = ", "; in x509_info_ext_key_usage() 1723 const char *sep = ""; in x509_info_cert_policies() local 1730 ret = mbedtls_snprintf(p, n, "%s%s", sep, desc); in x509_info_cert_policies() 1733 sep = ", "; in x509_info_cert_policies()
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 1519 def partition(self, sep): 1520 return self.data.partition(sep) 1540 def rpartition(self, sep): 1541 return self.data.rpartition(sep) 1546 def split(self, sep=None, maxsplit=-1): 1547 return self.data.split(sep, maxsplit) 1549 def rsplit(self, sep=None, maxsplit=-1): 1550 return self.data.rsplit(sep, maxsplit)
|
/third_party/python/Lib/test/ |
H A D | string_tests.py | 454 self.checkequal(['a', 'b', 'c', 'd'], 'a|b|c|d', 'split', sep='|') 458 'a|b|c|d', 'split', sep='|', maxsplit=1) 460 'a|b|c|d', 'split', maxsplit=1, sep='|') 529 self.checkequal(['a', 'b', 'c', 'd'], 'a|b|c|d', 'rsplit', sep='|') 530 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'rsplit', sep=None) 532 'a b c d', 'rsplit', sep=None, maxsplit=1) 536 'a|b|c|d', 'rsplit', sep='|', maxsplit=1) 538 'a|b|c|d', 'rsplit', maxsplit=1, sep='|')
|
/third_party/python/Python/ |
H A D | bltinmodule.c | 1974 sep: object(c_default="Py_None") = ' ' 1988 builtin_print_impl(PyObject *module, PyObject *args, PyObject *sep, in builtin_print_impl() argument 2008 if (sep == Py_None) { in builtin_print_impl() 2009 sep = NULL; in builtin_print_impl() 2011 else if (sep && !PyUnicode_Check(sep)) { in builtin_print_impl() 2013 "sep must be None or a string, not %.200s", in builtin_print_impl() 2014 Py_TYPE(sep)->tp_name); in builtin_print_impl() 2029 if (sep == NULL) { in builtin_print_impl() 2033 err = PyFile_WriteObject(sep, fil in builtin_print_impl() [all...] |
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/resctrl/ |
H A D | rdtgroup.c | 926 bool sep = false; in rdt_bit_usage_show() local 932 if (sep) in rdt_bit_usage_show() 985 sep = true; in rdt_bit_usage_show() 1378 bool sep; in rdtgroup_size_show() local 1408 sep = false; in rdtgroup_size_show() 1411 if (sep) in rdtgroup_size_show() 1429 sep = true; in rdtgroup_size_show() 1495 bool sep = false; in mbm_config_show() local 1500 if (sep) in mbm_config_show() 1508 sep in mbm_config_show() [all...] |
/third_party/curl/lib/vtls/ |
H A D | schannel.c | 391 TCHAR *sep; in get_cert_location() local 395 sep = _tcschr(path, TEXT('\\')); in get_cert_location() 396 if(!sep) in get_cert_location() 399 store_name_len = sep - path; in get_cert_location() 423 store_path_start = sep + 1; in get_cert_location() 425 sep = _tcschr(store_path_start, TEXT('\\')); in get_cert_location() 426 if(!sep) in get_cert_location() 429 *thumbprint = sep + 1; in get_cert_location() 433 *sep = TEXT('\0'); in get_cert_location() 435 *sep in get_cert_location() [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | dynamic_debug.c | 1273 char *sep; in ddebug_dyndbg_param_cb() local 1275 sep = strchr(param, '.'); in ddebug_dyndbg_param_cb() 1276 if (sep) { in ddebug_dyndbg_param_cb() 1278 *sep = '\0'; in ddebug_dyndbg_param_cb() 1280 param = sep + 1; in ddebug_dyndbg_param_cb()
|
/third_party/icu/icu4c/source/common/ |
H A D | locdspnm.cpp | 456 UnicodeString sep; in initialize() local 457 langData.getNoFallback("localeDisplayPattern", "separator", sep); in initialize() 458 if (sep.isBogus()) { in initialize() 459 sep = UnicodeString("{0}, {1}", -1, US_INV); in initialize() 462 separatorFormat.applyPatternMinMaxArguments(sep, 2, 2, status); in initialize()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | locdspnm.cpp | 456 UnicodeString sep; in initialize() local 457 langData.getNoFallback("localeDisplayPattern", "separator", sep); in initialize() 458 if (sep.isBogus()) { in initialize() 459 sep = UnicodeString("{0}, {1}", -1, US_INV); in initialize() 462 separatorFormat.applyPatternMinMaxArguments(sep, 2, 2, status); in initialize()
|
/third_party/mesa3d/src/util/ |
H A D | xmlconfig.c | 619 char *sep; in parseRange() local 620 sep = strchr(cp, ':'); in parseRange() 621 if (!sep) { in parseRange() 626 *sep = '\0'; in parseRange() 628 !parseValue(&info->range.end, info->type, sep+1)) { in parseRange()
|
/third_party/python/Tools/demo/ |
H A D | spreadsheet.py | 184 sep = "" 186 if sep: 187 sep += "+" 188 sep += "-"*colwidth[x] 200 print(sep)
|
/third_party/python/Modules/ |
H A D | _operator.c | 1665 PyObject *argreprs, *repr = NULL, *sep, *joinedargreprs; in methodcaller_repr() local 1719 sep = PyUnicode_FromString(", "); in methodcaller_repr() 1720 if (sep == NULL) in methodcaller_repr() 1723 joinedargreprs = PyUnicode_Join(sep, argreprs); in methodcaller_repr() 1724 Py_DECREF(sep); in methodcaller_repr()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locdspnm.cpp | 456 UnicodeString sep; in initialize() local 457 langData.getNoFallback("localeDisplayPattern", "separator", sep); in initialize() 458 if (sep.isBogus()) { in initialize() 459 sep = UnicodeString("{0}, {1}", -1, US_INV); in initialize() 462 separatorFormat.applyPatternMinMaxArguments(sep, 2, 2, status); in initialize()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | interworking.c | 822 const char *sep, *msin; in build_root_nai() local 837 sep = os_strchr(imsi, '-'); in build_root_nai() 838 if (sep) { in build_root_nai() 839 plmn_len = sep - imsi; in build_root_nai() 840 msin = sep + 1; in build_root_nai() 2008 char *sep; in interworking_credentials_available_3gpp() local 2036 sep = os_strchr(cred->imsi, '-'); in interworking_credentials_available_3gpp() 2037 if (sep == NULL || in interworking_credentials_available_3gpp() 2038 (sep - cred->imsi != 5 && sep in interworking_credentials_available_3gpp() [all...] |
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | kernel_abi.py | 105 srctree + os.sep + "scripts",
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | cpu.h | 139 D(sep, 11)
|
/third_party/ffmpeg/fftools/ |
H A D | cmdutils.h | 234 const char *sep; member
|
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 27 print(*files_to_skip, sep=", SKIP\n", end=", SKIP\n")
|
/third_party/node/deps/v8/tools/ |
H A D | generate-header-include-checks.py | 107 prefix = header_dir.replace(os.path.sep, '-')
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | match.py | 56 if 'Include' not in decl.filename.split(os.path.sep):
|