Lines Matching refs:compile
327 _ALT_TOKEN_REPLACEMENT_PATTERN = re.compile(
346 _MATCH_ASM = re.compile(r'^\s*(?:asm|_asm|__asm|__asm__)'
354 _RE_SUPPRESSION = re.compile(r'\bNOLINT\b(\([^)]*\))?')
419 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
426 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
921 _RE_PATTERN_CLEANSE_LINE_ESCAPES = re.compile(
924 _RE_PATTERN_CLEANSE_LINE_DOUBLE_QUOTES = re.compile(r'"[^"]*"')
926 _RE_PATTERN_CLEANSE_LINE_SINGLE_QUOTES = re.compile(r"'.'")
935 _RE_PATTERN_CLEANSE_LINE_C_COMMENTS = re.compile(
1364 _RE_PATTERN_INVALID_INCREMENT = re.compile(
2045 _RE_PATTERN_TODO = re.compile(r'^//(\s*)TODO(\(.+?\))?:?(\s|$)?')
2939 _RE_PATTERN_INCLUDE_NEW_STYLE = re.compile(r'#include +"[^/]+\.h"')
2940 _RE_PATTERN_INCLUDE = re.compile(r'^\s*#\s*include\s*([<"])([^>"]*)[>"].*$')
2946 _RE_FIRST_COMPONENT = re.compile(r'^[^-_.]+')
3595 _RE_PATTERN_STRING = re.compile(r'\bstring\b')
3603 (re.compile(r'[^>.]\b' + _template + r'(<.*?>)?\([^\)]'),
3611 (re.compile(r'(\<|\b)' + _template + r'\s*\<'),
3793 _RE_PATTERN_EXPLICIT_MAKEPAIR = re.compile(r'\bmake_pair\s*<')