Home
last modified time | relevance | path

Searched refs:SRE_FLAG_VERBOSE (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/
Dsre_constants.py210 SRE_FLAG_VERBOSE = 64 # ignore whitespace and comments variable
253 f.write("#define SRE_FLAG_VERBOSE %d\n" % SRE_FLAG_VERBOSE)
Dsre_parse.py61 "x": SRE_FLAG_VERBOSE,
798 if (state.flags & SRE_FLAG_VERBOSE) and not verbose:
814 sub_verbose = ((verbose or (add_flags & SRE_FLAG_VERBOSE)) and
815 not (del_flags & SRE_FLAG_VERBOSE))
930 p = _parse_sub(source, pattern, flags & SRE_FLAG_VERBOSE, 0)
935 pattern.flags = flags | SRE_FLAG_VERBOSE
Dre.py150 VERBOSE = sre_compile.SRE_FLAG_VERBOSE # ignore whitespace and comments
/external/python/cpython2/Lib/
Dsre_constants.py213 SRE_FLAG_VERBOSE = 64 # ignore whitespace and comments variable
256 f.write("#define SRE_FLAG_VERBOSE %d\n" % SRE_FLAG_VERBOSE)
Dsre_parse.py60 "x": SRE_FLAG_VERBOSE,
436 if state.flags & SRE_FLAG_VERBOSE:
749 if not (flags & SRE_FLAG_VERBOSE) and p.pattern.flags & SRE_FLAG_VERBOSE:
Dre.py126 X = VERBOSE = sre_compile.SRE_FLAG_VERBOSE # ignore whitespace and comments
/external/python/cpython2/Modules/
Dsre_constants.h83 #define SRE_FLAG_VERBOSE 64 macro
/external/python/cpython3/Modules/
Dsre_constants.h92 #define SRE_FLAG_VERBOSE 64 macro
D_sre.c1244 {"re.VERBOSE", SRE_FLAG_VERBOSE}, in pattern_repr()