Lines Matching refs:r
20 func_line_regex = re.compile(r"\s*"
21 r"(?P<line>"
22 r"(?P<func>[a-zA-Z_0-9]+)"
23 r"\s*"
24 r";"
25 r"\s*"
26 r"(?P<comment>#.+)?"
27 r")"
28 r"\s*"
29 r"$")
32 section_begin_regex = re.compile(r"\s*"
33 r"(?P<version>[a-zA-Z0-9_\.]+)"
34 r"\s*"
35 r"{"
36 r"\s*"
37 r"$")
41 section_end_regex = re.compile(r"\s*"
42 r"}"
43 r"\s*"
44 r"(?P<parent>[a-zA-Z0-9_\.]+)?"
45 r"\s*"
46 r";"
47 r"\s*"
48 r"$")
183 if not re.match(r"\d{1,2}\.\d{1,2}", parsed.abi_version):