/third_party/python/Lib/ |
H A D | string.py | 37 def capwords(s, sep=None): 38 """capwords(s [,sep]) -> string 42 join. If the optional second argument sep is absent or None, 45 sep is used to split and join the words. 48 return (sep or ' ').join(map(str.capitalize, s.split(sep)))
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | spirv_target_env.cpp | 384 std::string sep = ""; in spvTargetEnvList() local 387 std::string word = sep + name_env.first; in spvTargetEnvList() 398 sep = "|"; in spvTargetEnvList()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | spirv_target_env.cpp | 384 std::string sep = ""; in spvTargetEnvList() local 387 std::string word = sep + name_env.first; in spvTargetEnvList() 398 sep = "|"; in spvTargetEnvList()
|
/third_party/typescript/tests/ts_extra_tests/ |
H A D | run_ts_case.py | 56 print(test_cases.path, test_cases.detail_result, sep='\t')
64 print(test_cases.path, test_cases.detail_result, sep='\t')
222 print("TEST CASE", "FAIL REASON", "FAIL LINE", sep="\t")
|
/third_party/spirv-tools/source/ |
H A D | spirv_target_env.cpp | 405 std::string sep = ""; in spvTargetEnvList() local 408 std::string word = sep + name_env.first; in spvTargetEnvList() 419 sep = "|"; in spvTargetEnvList()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | taxonomy.c | 125 char *sep = (num++ == 0) ? "" : ","; in ie_to_string() local 152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string() 219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id); in ie_to_string()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | taxonomy.c | 125 char *sep = (num++ == 0) ? "" : ","; in ie_to_string() local 152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string() 219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id); in ie_to_string()
|
/third_party/libinput/tools/ |
H A D | libinput-record.c | 1235 const char *sep = ""; in handle_hidraw() local 1265 iprintf(d->fp, I_NONE, "%s\n", sep); in handle_hidraw() 1269 iprintf(d->fp, I_NONE, "%s0x%02x", sep, report[byte]); in handle_hidraw() 1271 sep = ", "; in handle_hidraw() 1605 const char *sep = ""; in print_bits_codes() local 1617 iprintf(fp, I_NONE, "%s%d", sep, code); in print_bits_codes() 1618 sep = ", "; in print_bits_codes() 1638 const char *sep = ""; in print_bits_props() local 1643 iprintf(fp, I_NONE, "%s%d", sep, prop); in print_bits_props() 1644 sep in print_bits_props() 1672 const char *sep = ""; print_hid_report_descriptor() local 1853 const char *sep = ""; print_libinput_description() local [all...] |
/kernel/linux/linux-5.10/arch/um/kernel/ |
H A D | time.c | 444 const char *sep; in time_travel_connect_external() local 448 if ((sep = strchr(socket, ':'))) { in time_travel_connect_external() 450 if (sep - socket > sizeof(buf) - 1) in time_travel_connect_external() 453 memcpy(buf, socket, sep - socket); in time_travel_connect_external() 461 socket = sep + 1; in time_travel_connect_external()
|
/kernel/linux/linux-6.6/arch/um/kernel/ |
H A D | time.c | 527 const char *sep; in time_travel_connect_external() local 531 if ((sep = strchr(socket, ':'))) { in time_travel_connect_external() 533 if (sep - socket > sizeof(buf) - 1) in time_travel_connect_external() 536 memcpy(buf, socket, sep - socket); in time_travel_connect_external() 544 socket = sep + 1; in time_travel_connect_external()
|
/kernel/linux/linux-5.10/drivers/nvdimm/ |
H A D | core.c | 210 static bool is_uuid_sep(char sep) in is_uuid_sep() argument 212 if (sep == '\n' || sep == '-' || sep == ':' || sep == '\0') in is_uuid_sep()
|
/kernel/linux/linux-5.10/mm/kasan/ |
H A D | report.c | 215 const char *sep = strchr(*frame_descr, ' '); in tokenize_frame_descr() local 217 if (sep == NULL) in tokenize_frame_descr() 218 sep = *frame_descr + strlen(*frame_descr); in tokenize_frame_descr() 221 const size_t tok_len = sep - *frame_descr; in tokenize_frame_descr() 234 *frame_descr = sep + 1; in tokenize_frame_descr()
|
/kernel/linux/linux-6.6/tools/lib/perf/ |
H A D | cpumap.c | 139 char sep; in perf_cpu_map__read() local 141 sep = 0; in perf_cpu_map__read() 144 n = fscanf(file, "%u%c", &cpu, &sep); in perf_cpu_map__read() 173 if (n == 2 && sep == '-') in perf_cpu_map__read() 177 if (n == 1 || sep == '\n') in perf_cpu_map__read()
|
/third_party/ffmpeg/libavformat/ |
H A D | network.c | 564 char *sep, *next = NULL; in ff_http_match_no_proxy() local 566 sep = start + strcspn(start, " ,"); in ff_http_match_no_proxy() 567 if (*sep) { in ff_http_match_no_proxy() 568 next = sep + 1; in ff_http_match_no_proxy() 569 *sep = '\0'; in ff_http_match_no_proxy()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
H A D | ICUZDump.java | 41 String sep = System.getProperty("line.separator"); 42 DEFAULT_LINE_SEP = (sep == null) ? "\n" : sep; 79 public void setLineSeparator(String sep) { in setLineSeparator() argument 80 this.linesep = sep; in setLineSeparator() 232 * java -cp icu4j.jar com.ibm.icu.dev.tool.timezone [-j] [-a] [-c[<low_year>,]<high_year>] [-d<dir>] [-l<sep>] [<zone_name> [<zone_name>]] 241 * -l<sep> : New line code type CR/LF/CRLF.
|
/third_party/mbedtls/library/ |
H A D | hmac_drbg.c | 49 unsigned char sep[1]; in mbedtls_hmac_drbg_update() local 53 for (sep[0] = 0; sep[0] < rounds; sep[0]++) { in mbedtls_hmac_drbg_update() 63 sep, 1)) != 0) { in mbedtls_hmac_drbg_update()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
H A D | libbitmask.c | 130 const char *sep = ""; in bitmask_displayhex() local 143 sep, HEXCHARSZ, val); in bitmask_displayhex() 144 sep = ","; in bitmask_displayhex() 205 static const char *nexttoken(const char *q, int sep) in nexttoken() argument 208 q = strchr(q, sep); in nexttoken()
|
/third_party/node/test/parallel/ |
H A D | test-os.js | 201 assert.ok(home.includes(path.sep)); 210 assert.ok(os.homedir().includes(path.sep)); 215 assert.ok(os.homedir().includes(path.sep)); 236 assert(pwd.shell.includes(path.sep)); 244 assert.ok(pwd.homedir.includes(path.sep));
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | srcline.c | 377 char *sep; in filename_split() local 379 sep = strchr(filename, '\n'); in filename_split() 380 if (sep) in filename_split() 381 *sep = '\0'; in filename_split() 386 sep = strchr(filename, ':'); in filename_split() 387 if (sep) { in filename_split() 388 *sep++ = '\0'; in filename_split() 389 *line_nr = strtoul(sep, NULL, 0); in filename_split()
|
/third_party/python/Objects/clinic/ |
H A D | unicodeobject.c.h | 876 "split($self, /, sep=None, maxsplit=-1)\n" 879 "Return a list of the substrings in the string, using sep as the separator string.\n" 881 " sep\n" 899 unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit); 905 static const char * const _keywords[] = {"sep", "maxsplit", NULL}; in unicode_split() 909 PyObject *sep = Py_None; in unicode_split() local 920 sep = args[0]; in unicode_split() 938 return_value = unicode_split_impl(self, sep, maxsplit); in unicode_split() 945 "partition($self, sep, /)\n" 961 "rpartition($self, sep, /)\ 1008 PyObject *sep = Py_None; unicode_rsplit() local [all...] |
/third_party/node/lib/ |
H A D | repl.js | 396 const sep = '\u0000\u0000\u0000'; 397 const regExMatcher = new RegExp(`^${sep}(.*)${sep}(.*)${sep}(.*)${sep}(.*)` + 398 `${sep}(.*)${sep}(.*)${sep}(.*)${sep}(.*)` + 399 `${sep}( [all...] |
/third_party/python/Lib/test/test_importlib/ |
H A D | test_util.py | 675 @unittest.skipUnless(os.sep == '\\' and os.altsep == '/', 678 # Windows path and PEP 3147 where sep is right of altsep. 768 os.path.join(os.path.sep, 'tmp', 'bytecode'), 769 os.path.join(os.path.sep, 'tmp', '\u2603'), # non-ASCII in path! 770 os.path.join(os.path.sep, 'tmp', 'trailing-slash') + os.path.sep, 781 os.path.sep, 'foo', 'bar', 'baz', 'qux.py') 796 pycache_prefix = os.path.join(os.path.sep, 'tmp', 'bytecode') 798 root = os.path.splitdrive(os.getcwd())[0] + os.path.sep 814 pycache_prefix = os.path.join(os.path.sep, 'tm [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_join.c | 93 char *sep, *next, *p; in parse_maps() local 101 if (!(sep = strchr(cur, '-'))) { in parse_maps() 106 *sep++ = 0; in parse_maps() 109 out_ch_idx = av_channel_layout_index_from_string(&s->ch_layout, sep); in parse_maps() 111 av_log(ctx, AV_LOG_ERROR, "Invalid output channel: %s.\n", sep); in parse_maps() 119 "'%s'.\n", sep); in parse_maps()
|
/third_party/libcoap/examples/ |
H A D | oscore-interop-server.c | 552 char *sep = strchr(arg, ','); in cmdline_oscore() local 554 if (sep) in cmdline_oscore() 555 *sep = '\000'; in cmdline_oscore() 558 if (sep) { in cmdline_oscore() 559 sep++; in cmdline_oscore() 560 oscore_seq_save_file = sep; in cmdline_oscore()
|
/third_party/python/Tools/scripts/ |
H A D | freeze_modules.py | 100 ntpath.join(*path.split(os.path.sep)), 101 ntpath.join(*base.split(os.path.sep)), 109 posixpath.join(*path.split(os.path.sep)), 110 posixpath.join(*base.split(os.path.sep)), 355 _modname, sep, match = modname.rpartition('.') 356 if sep:
|