Home | History | Annotate | Download | only in scripts

Lines Matching refs:match

101     # should be removed or the regular expresssions will fail to match.
186 if self.trace_line.match(line):
188 match = self.trace_line.match(line)
190 code_addr, area, symbol_present, symbol_name) = match.groups()
226 if self.code_line.match(line):
230 if self.value_line.match(line):
232 match = self.value_line.match(line)
233 (unused_, addr, value, area, symbol_present, symbol_name) = match.groups()