Lines Matching refs:r
34 BASE_CONFIG_RE = re.compile(r'\b{}\b'.format(BASE_CONFIG_NAME))
36 BASE_CMAKE_CONFIG_RE = re.compile(r'\b{}\b'.format(BASE_CMAKE_CONFIG_NAME))
38 BASE_BUILD_DEFINE_RE = re.compile(r'\b{}\b'.format(BASE_BUILD_DEFINE_NAME))
40 CONFIG_RE = re.compile(r'//\s+{}:\s+(\w+),\s+([^,]+)(?:,\s+(.*))?$'.format(BASE_CONFIG_NAME))
41 DEFINE_RE = re.compile(r'#define\s+(\w+)\s+(.+?)(\s*///.*)?$')
68 m = re.match(r'^(\d+)e(\d+)$', value.lower())
78 m = re.match(r'^(\d+)e(\d+)$', value.lower())
89 m = re.match(r'^(\d+)e(\d+)$', value.lower())
170 … _attrs = re.sub(r'(\(.+\))', lambda m: m.group(1).replace(',', '\0'), _attrs)
211 m = re.match(r'^((0x)?\d+)u$', value.lower())
216 m = re.match(r'^_u\(((0x)?\d+)\)$', value.lower())