Home | History | Annotate | Download | only in valgrind

Lines Matching refs:re

17 import re
44 LOAD_LIB_RE = re.compile('--[0-9]+-- ([^(:]*) \((0x[0-9a-f]+)\)')
45 TSAN_LINE_RE = re.compile('==[0-9]+==\s*[#0-9]+\s*'
111 if re.search("{{{", self.line_):
112 while not re.search('}}}', self.line_):
119 if re.match('-+ suppression -+', self.line_):
124 while not re.match('-+ end suppression -+', self.line_):
168 while re.search(TsanAnalyzer.RACE_VERIFIER_LINE, self.line_):
171 while re.search(TsanAnalyzer.THREAD_CREATION_STR, self.line_):
173 if re.search(TsanAnalyzer.TSAN_RACE_DESCRIPTION, self.line_):
176 elif (re.search(TsanAnalyzer.TSAN_WARNING_DESCRIPTION, self.line_) and
184 if re.search(TsanAnalyzer.TSAN_ASSERTION, self.line_):
189 match = re.search("used_suppression:\s+([0-9]+)\s(.*)", self.line_)