/third_party/node/deps/cares/src/lib/ |
H A D | ares_getaddrinfo.c | 192 struct servent *sep; in lookup_service() local 210 sep = &se; in lookup_service() 214 &sep) != 0) { in lookup_service() 215 sep = NULL; /* LCOV_EXCL_LINE: buffer large so this never fails */ in lookup_service() 218 sep = getservbyname_r(service, proto, &se, (void *)tmpbuf, sizeof(tmpbuf)); in lookup_service() 221 sep = NULL; in lookup_service() 225 sep = getservbyname(service, proto); in lookup_service() 230 sep = getservbyname(service, (char *)proto); in lookup_service() 232 sep = getservbyname(service, proto); in lookup_service() 235 return (sep in lookup_service() [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | pfm.c | 41 const char *sep; in parse_libpfm_events_option() local 56 sep = p ? str + (p - p_orig - 1) : ""; in parse_libpfm_events_option() 57 if (*sep == '{') { in parse_libpfm_events_option() 68 if (*sep == '}') { in parse_libpfm_events_option() 110 if (*sep == '}') { in parse_libpfm_events_option()
|
/third_party/curl/tests/ |
H A D | test1173.pl | 276 my $sep = $separators[$l]; 277 if($sep ne ",") { 279 $sepline[$l], $sep; 284 my $sep = $separators[$#separators]; 285 if($sep eq ",") {
|
/third_party/ffmpeg/libavformat/ |
H A D | icecast.c | 134 char *sep = strchr(auth, ':'); in icecast_open() local 135 if (sep) { in icecast_open() 136 *sep = 0; in icecast_open() 137 sep++; in icecast_open() 142 if (!(s->pass = av_strdup(sep))) { in icecast_open()
|
H A D | librtmp.c | 128 char *sep, *p = ctx->conn; in rtmp_open() local 134 sep = strchr(p, ' '); in rtmp_open() 135 if (sep) in rtmp_open() 136 *sep = '\0'; in rtmp_open() 139 if (sep) in rtmp_open() 140 p = sep + 1; in rtmp_open()
|
/third_party/googletest/googletest/src/hwext/ |
H A D | gtest-ext.cc | 93 const char sep = TestDefInfo::kNamingSepchar;
in matchNaming() local 103 return strstr(a, b) == a && a[len_b] == sep;
in matchNaming() 107 if (a[i - 1] == sep&&a[i + len_b] == sep&&strstr(a + i, b) == a + i) {
in matchNaming() 114 return len_a > len_b&&a[len_a - len_b - 1] == sep&&strcmp(a + len_a - len_b, b) == 0;
in matchNaming()
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | gen_vk_gl_cts_build.py | 72 return path.replace(os.sep, "_") 179 filesToCopy += templateFilesToCopy.format(dataFile=dataFile.replace(os.sep, '/')) 185 destDir=destDir.replace(os.sep, '/')) 207 if dataDirectory + os.sep in dataFile: 210 os.sep, '/'))
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | i915_mitigations.c | 32 char *str, *sep, *tok; in mitigations_set() local 42 for (sep = str; (tok = strsep(&sep, ","));) { in mitigations_set()
|
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | scsi_debugfs.c | 20 bool sep = false; in scsi_flags_show() local 24 if (sep) in scsi_flags_show() 26 sep = true; in scsi_flags_show()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_mitigations.c | 33 char *str, *sep, *tok; in mitigations_set() local 43 for (sep = str; (tok = strsep(&sep, ","));) { in mitigations_set()
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | generate_spirv_corpus.py | 49 input_dir: str = os.path.abspath(sys.argv[1].rstrip(os.sep)) 68 out_file = os.path.splitext(corpus_dir + os.sep + 70 .replace(os.sep, '_'))[0] + ".spv"
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | datafiles.py | 35 for row in _tables.read_table(infile, columns, sep='\t', fix='-'): 43 _tables.write_table(outfile, columns, rows, sep='\t', fix='-') 107 for row in _tables.read_table(infile, columns, sep='\t'): 138 sep='\t',
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_util.py | 28 self.sep = os.sep 49 os.sep = self.sep 174 os.sep = '/' 183 os.sep = '\\'
|
/third_party/python/Objects/stringlib/ |
H A D | split.h | 147 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, in split() 158 return STRINGLIB(split_char)(str_obj, str, str_len, sep[0], maxcount); in split() 166 pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in split() 289 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, in rsplit() 300 return STRINGLIB(rsplit_char)(str_obj, str, str_len, sep[0], maxcount); in rsplit() 308 pos = FASTSEARCH(str, j, sep, sep_len, -1, FAST_RSEARCH); in rsplit() 145 split(PyObject* str_obj, const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, Py_ssize_t maxcount) split() argument 287 rsplit(PyObject* str_obj, const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, Py_ssize_t maxcount) rsplit() argument
|
/third_party/musl/src/string/ |
H A D | strsep.c | 4 char *strsep(char **str, const char *sep) in strsep() argument 8 end = s + strcspn(s, sep); in strsep()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | strsep.c | 4 char *strsep(char **str, const char *sep) in strsep() argument 8 end = s + strcspn(s, sep); in strsep()
|
/kernel/linux/linux-6.6/rust/alloc/ |
H A D | slice.rs | 578 pub fn join<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in join() 582 Join::join(self, sep) in join() 598 pub fn connect<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in connect() 602 Join::join(self, sep) in connect() 704 fn join(slice: &Self, sep: Separator) -> Self::Output; in join() 727 fn join(slice: &Self, sep: &T) -> Vec<T> { in join() 738 result.push(sep.clone()); in join() 750 fn join(slice: &Self, sep: &[T]) -> Vec<T> { in join() 757 slice.iter().map(|v| v.borrow().len()).sum::<usize>() + sep.len() * (slice.len() - 1); in join() 762 result.extend_from_slice(sep); in join() [all...] |
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | TransliteratorIDParser.java | 472 int sep = id.indexOf(TARGET_SEP); in IDtoSTV() 479 if (sep < 0) { in IDtoSTV() 483 } else if (sep < var) { in IDtoSTV() 485 if (sep > 0) { in IDtoSTV() 486 source = id.substring(0, sep); in IDtoSTV() 489 target = id.substring(++sep, var); in IDtoSTV() 497 variant = id.substring(var, sep++); in IDtoSTV() 498 target = id.substring(sep); in IDtoSTV()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TransliteratorIDParser.java | 473 int sep = id.indexOf(TARGET_SEP); in IDtoSTV() 480 if (sep < 0) { in IDtoSTV() 484 } else if (sep < var) { in IDtoSTV() 486 if (sep > 0) { in IDtoSTV() 487 source = id.substring(0, sep); in IDtoSTV() 490 target = id.substring(++sep, var); in IDtoSTV() 498 variant = id.substring(var, sep++); in IDtoSTV() 499 target = id.substring(sep); in IDtoSTV()
|
/third_party/python/Modules/clinic/ |
H A D | binascii.c.h | 292 "b2a_hex($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n" 297 " sep\n" 318 binascii_b2a_hex_impl(PyObject *module, Py_buffer *data, PyObject *sep, 325 static const char * const _keywords[] = {"data", "sep", "bytes_per_sep", NULL}; in binascii_b2a_hex() 330 PyObject *sep = NULL; in binascii_b2a_hex() local 348 sep = args[1]; in binascii_b2a_hex() 358 return_value = binascii_b2a_hex_impl(module, &data, sep, bytes_per_sep); in binascii_b2a_hex() 370 "hexlify($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n" 375 " sep\n" 388 binascii_hexlify_impl(PyObject *module, Py_buffer *data, PyObject *sep, 400 PyObject *sep = NULL; binascii_hexlify() local [all...] |
/third_party/libuv/src/ |
H A D | strtok.c | 25 char* uv__strtok(char* str, const char* sep, char** itr) { in uv__strtok() argument 39 sep_itr = sep; in uv__strtok()
|
/third_party/node/test/parallel/ |
H A D | test-fs-make-callback.js | 7 const { sep } = require('path'); 15 fs.mkdtemp(`${tmpdir.path}${sep}`, {}, cb);
|
/third_party/ninja/src/ |
H A D | string_piece_util.h | 23 std::vector<StringPiece> SplitStringPiece(StringPiece input, char sep); 25 std::string JoinStringPiece(const std::vector<StringPiece>& list, char sep);
|
/third_party/node/deps/uv/src/ |
H A D | strtok.c | 25 char* uv__strtok(char* str, const char* sep, char** itr) { in uv__strtok() argument 39 sep_itr = sep; in uv__strtok()
|
/third_party/python/Include/internal/ |
H A D | pycore_strhex.h | 25 PyObject* sep, 30 PyObject* sep,
|