Searched refs:seps (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/ |
H A D | ntpath.py | 111 seps = b'\\/' 115 seps = '\\/' 123 if p_path and p_path[0] in seps: 138 if result_path and result_path[-1] not in seps: 142 if (result_path and result_path[0] not in seps and 214 seps = _get_bothseps(p) 218 while i and p[i-1] not in seps: 222 head = head.rstrip(seps) or head 294 seps = _get_bothseps(path) 297 if root and root[0] in seps [all...] |
H A D | locale.py | 196 seps = 0 199 parts[0], seps = _group(parts[0], monetary=monetary) 203 if seps: 204 formatted = _strip_padding(formatted, seps) 206 seps = 0 208 formatted, seps = _group(formatted, monetary=monetary) 209 if seps: 210 formatted = _strip_padding(formatted, seps)
|
/third_party/python/Lib/distutils/command/ |
H A D | sdist.py | 368 seps = r'/|\\' 370 seps = '/' 374 vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
|
/third_party/mbedtls/tests/scripts/ |
H A D | check_files.py | 61 seps = os.path.sep 63 seps += os.path.altsep 64 return '/'.join(filepath.split(seps))
|
/third_party/skia/third_party/externals/freetype/src/bdf/ |
H A D | bdflib.c | 417 char seps[32]; in _bdf_list_split() local 446 FT_MEM_ZERO( seps, 32 ); in _bdf_list_split() 456 setsbit( seps, *sp ); in _bdf_list_split() 464 for ( ; *ep && !sbitset( seps, *ep ); ep++ ) in _bdf_list_split() 484 for ( ; *ep && sbitset( seps, *ep ); ep++ ) in _bdf_list_split()
|
/third_party/backends/backend/ |
H A D | bh.c | 1373 const char *seps = "x+:"; in section_parse() local 1398 w = strtok(buf, seps); in section_parse() 1399 if (w) l = strtok(NULL, seps); in section_parse() 1400 if (l) x = strtok(NULL, seps); in section_parse() 1401 if (x) y = strtok(NULL, seps); in section_parse() 1402 if (y) f = strtok(NULL, seps); in section_parse() 1453 f = strtok(NULL, seps); in section_parse()
|
Completed in 11 milliseconds