Lines Matching refs:r
34 process_info_line = re.compile(r"(pid: [0-9]+, tid: [0-9]+.*)")
35 revision_line = re.compile(r"(Revision: '(.*)')")
36 signal_line = re.compile(r"(signal [0-9]+ \(.*\).*)")
37 abort_message_line = re.compile(r"(Abort message: '.*')")
38 thread_line = re.compile(r"(.*)(--- ){15}---")
46 zipinfo_central_directory_line = re.compile(r"Central\s+directory\s+entry")
48 r"^\s*(\S+)$\s*offset of local header from start of archive:\s*(\d+)"
49 r".*^\s*compressed size:\s+(\d+)", re.M | re.S)
50 unreachable_line = re.compile(r"((\d+ bytes in \d+ unreachable allocations)|"
51 r"(\d+ bytes unreachable at [0-9a-f]+)|"
52 r"(referencing \d+ unreachable bytes in \d+ allocation(s)?)|"
53 r"(and \d+ similar unreachable bytes in \d+ allocation(s)?))")
92 r".*" # Random start stuff.
93 r"\#(?P<frame>[0-9]+)" # Frame number.
94 r"[ \t]+..[ \t]+" # (space)pc(space).
95 r"(?P<offset>[0-9a-f]" + self.width + ")[ \t]+" # Offset (hex number given without
97 r"(?P<dso>\[[^\]]+\]|[^\r\n \t]*)" # Library name.
98 …r"( \(offset (?P<so_offset>0x[0-9a-fA-F]+)\))?" # Offset into the file to find the start of …
99 r"(?P<symbolpresent> \((?P<symbol>.*)\))?") # Is the symbol there?
105 r".*" # Random start stuff.
106 r"\#(?P<frame>[0-9]+)" # Frame number.
107 r"[ \t]+0x[0-9a-f]+[ \t]+" # PC, not interesting to us.
108 r"\(" # Opening paren.
109 r"(?P<dso>[^+]+)" # Library name.
110 r"\+" # '+'
111 r"0x(?P<offset>[0-9a-f]+)" # Offset (hex number given with
113 r"\)") # Closing paren.
120 …self.value_line = re.compile(r"(.*)([0-9a-f]" + self.width + r")[ \t]+([0-9a-f]" + self.width + r"…
128 self.code_line = re.compile(r"(.*)[ \t]*[a-f0-9]" + self.width +
129 r"[ \t]*[a-f0-9]" + self.width +
130 r"[ \t]*[a-f0-9]" + self.width +
131 r"[ \t]*[a-f0-9]" + self.width +
132 r"[ \t]*[a-f0-9]" + self.width +
133 r"[ \t]*[ \r\n]") # pylint: disable-msg=C6310