Home | History | Annotate | Download | only in jinja2

Lines Matching refs:re

17 import re
29 whitespace_re = re.compile(r'\s+', re.U)
30 string_re = re.compile(r"('([^'\\]*(?:\\.[^'\\]*)*)'"
31 r'|"([^"\\]*(?:\\.[^"\\]*)*)")', re.S)
32 integer_re = re.compile(r'\d+')
39 name_re = re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')
42 name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
45 float_re = re.compile(r'(?<!\.)\d+\.\d+')
46 newline_re = re.compile(r'(\r\n|\r|\n)')
131 operator_re = re.compile('(%s)' % '|'.join(re.escape(x) for x in
188 e = re.escape
404 c = lambda x: re.compile(x, re.M | re.S)
405 e = re.escape