Lines Matching refs:compile
323 _ALT_TOKEN_REPLACEMENT_PATTERN = re.compile(
342 _MATCH_ASM = re.compile(r'^\s*(?:asm|_asm|__asm|__asm__)'
350 _RE_SUPPRESSION = re.compile(r'\bNOLINT\b(\([^)]*\))?')
415 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
422 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
895 _RE_PATTERN_CLEANSE_LINE_ESCAPES = re.compile(
898 _RE_PATTERN_CLEANSE_LINE_DOUBLE_QUOTES = re.compile(r'"[^"]*"')
900 _RE_PATTERN_CLEANSE_LINE_SINGLE_QUOTES = re.compile(r"'.'")
909 _RE_PATTERN_CLEANSE_LINE_C_COMMENTS = re.compile(
1338 _RE_PATTERN_INVALID_INCREMENT = re.compile(
2019 _RE_PATTERN_TODO = re.compile(r'^//(\s*)TODO(\(.+?\))?:?(\s|$)?')
2913 _RE_PATTERN_INCLUDE_NEW_STYLE = re.compile(r'#include +"[^/]+\.h"')
2914 _RE_PATTERN_INCLUDE = re.compile(r'^\s*#\s*include\s*([<"])([^>"]*)[>"].*$')
2920 _RE_FIRST_COMPONENT = re.compile(r'^[^-_.]+')
3569 _RE_PATTERN_STRING = re.compile(r'\bstring\b')
3577 (re.compile(r'[^>.]\b' + _template + r'(<.*?>)?\([^\)]'),
3585 (re.compile(r'(\<|\b)' + _template + r'\s*\<'),
3767 _RE_PATTERN_EXPLICIT_MAKEPAIR = re.compile(r'\bmake_pair\s*<')