Home
last modified time | relevance | path

Searched refs:seps (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Dntpath.py78 seps = b'\\/'
82 seps = '\\/'
90 if p_path and p_path[0] in seps:
105 if result_path and result_path[-1] not in seps:
109 if (result_path and result_path[0] not in seps and
205 seps = _get_bothseps(p)
209 while i and p[i-1] not in seps:
213 head = head.rstrip(seps) or head
285 seps = _get_bothseps(path)
288 if root and root[0] in seps:
[all …]
Dlocale.py203 seps = 0
206 parts[0], seps = _group(parts[0], monetary=monetary)
210 if seps:
211 formatted = _strip_padding(formatted, seps)
213 seps = 0
215 formatted, seps = _group(formatted, monetary=monetary)
216 if seps:
217 formatted = _strip_padding(formatted, seps)
/external/python/cpython2/Lib/
Dlocale.py207 seps = 0
210 parts[0], seps = _group(parts[0], monetary=monetary)
214 if seps:
215 formatted = _strip_padding(formatted, seps)
217 seps = 0
219 formatted, seps = _group(formatted, monetary=monetary)
220 if seps:
221 formatted = _strip_padding(formatted, seps)
/external/selinux/libsemanage/src/
Dutilities.c75 const char *seps = "\f\n\r\t\v "; in semanage_split_on_space() local
82 off = strspn(str, seps); in semanage_split_on_space()
83 off += strcspn(str + off, seps); in semanage_split_on_space()
84 off += strspn(str + off, seps); in semanage_split_on_space()
/external/python/cpython2/Lib/distutils/command/
Dsdist.py350 seps = r'/|\\'
352 seps = '/'
356 vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
/external/python/cpython3/Lib/distutils/command/
Dsdist.py329 seps = r'/|\\'
331 seps = '/'
335 vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
/external/freetype/src/bdf/
Dbdflib.c420 char seps[32]; in _bdf_list_split() local
449 FT_MEM_ZERO( seps, 32 ); in _bdf_list_split()
459 setsbit( seps, *sp ); in _bdf_list_split()
467 for ( ; *ep && !sbitset( seps, *ep ); ep++ ) in _bdf_list_split()
487 for ( ; *ep && sbitset( seps, *ep ); ep++ ) in _bdf_list_split()
/external/python/cpython2/Lib/test/
Dtest_zipfile.py1642 self.seps = ('\r', '\r\n', '\n')
1644 for n, s in enumerate(self.seps):