Lines Matching refs:match
87 # This returns a list of just symbols. The indices will match up with the
107 while not thread_re.match(line):
140 while line_re.match(line) or in_stack:
142 matches = line_re.match(line)
167 matches = re.match(regex, line)
195 while user_thread_re.match(line) or in_user_stack or in_kernel_stack:
197 matches = user_thread_re.match(line)
237 matches = re.match(regex_a, line)
247 # If pattern A didn't match (which it will most of the time), try B.
248 matches = re.match(regex_b, line)
267 # Create a regex to match the lines of format:
279 # Match the line to the regex.
280 match = image_re.match(line)
281 if match:
285 address_range = (int(match.group(1), 0), int(match.group(2), 0))
286 self._binary_images[match.group(3)] = address_range
352 indices must match for this to succeed."""
354 print 'symbols do not match'
362 symbol_parts = line_regex.match(symbols[i])