Searched refs:isbytes (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Modules/ |
D | _sre.c | 400 int isbytes, charsize; in state_init() local 414 ptr = getstring(string, &length, &isbytes, &charsize, &state->buffer); in state_init() 418 if (isbytes && pattern->isbytes == 0) { in state_init() 423 if (!isbytes && pattern->isbytes > 0) { in state_init() 440 state->isbytes = isbytes; in state_init() 480 getslice(int isbytes, const void *ptr, in getslice() argument 483 if (isbytes) { in getslice() 516 return getslice(state->isbytes, state->beginning, string, i, j); in state_getslice() 777 item = getslice(state.isbytes, state.beginning, in _sre_SRE_Pattern_findall_impl() 928 item = getslice(state.isbytes, state.beginning, in _sre_SRE_Pattern_split_impl() [all …]
|
D | sre.h | 36 int isbytes; /* pattern type (1 - bytes, 0 - string, -1 - None) */ member 72 int isbytes; member
|
/external/python/cpython3/Lib/ |
D | os.py | 479 def _fwalk(topfd, toppath, isbytes, topdown, onerror, follow_symlinks): argument 490 if isbytes: 527 yield from _fwalk(dirfd, dirpath, isbytes,
|