Lines Matching refs:re
38 import re
86 parent_process_regex = re.compile('^Parent Process:\s*(.*)\[(\d+)\]');
87 thread_state_regex = re.compile('^Thread ([0-9]+) crashed with')
88 thread_regex = re.compile('^Thread ([0-9]+)([^:]*):(.*)')
89 frame_regex = re.compile('^([0-9]+) +([^ ]+) *\t?(0x[0-9a-fA-F]+) +(.*)')
90 image_regex_uuid = re.compile('(0x[0-9a-fA-F]+)[- ]+(0x[0-9a-fA-F]+) +[+]?([^ ]+) +([^<]+)<([-0-9a-fA-F]+)> (.*)');
91 image_regex_no_uuid = re.compile('(0x[0-9a-fA-F]+)[- ]+(0x[0-9a-fA-F]+) +[+]?([^ ]+) +([^/]+)/(.*)');
92 empty_line_regex = re.compile('^$')
151 dwarfdump_uuid_regex = re.compile('UUID: ([-0-9a-fA-F]+) \(([^\(]+)\) .*')
262 matched_pair = re.search("(.+)\((.+)\)", version_string)
353 reg_values = re.findall ('([a-zA-Z0-9]+: 0[Xx][0-9a-fA-F]+) *', stripped_line);