• Home
  • Raw
  • Download

Lines Matching refs:match

96         match = re.search(compute_match, line)
97 if match is not None:
104 match = re.search(gmem_start_match, line)
105 if match is not None:
112 gmem.cleared = match.group(1)
113 gmem.gmem_reason = match.group(2)
114 gmem.num_draws = match.group(3)
115 gmem.samples = match.group(4)
118 match = re.search(gmem_match, line)
119 if match is not None:
120 gmem.width = int(match.group(1))
121 gmem.height = int(match.group(2))
122 gmem.nbinx = int(match.group(3))
123 gmem.nbiny = int(match.group(4))
126 match = re.search(gmem_surf_match, line)
127 if match is not None:
128 gmem.formats.append(match.group(1))
131 match = re.search(gmem_lrz_clear_match, line)
132 if match is not None:
133 gmem.lrz_clear_time += int(match.group(1))
136 match = re.search(gmem_binning_match, line)
137 if match is not None:
138 gmem.binning_time += int(match.group(1))
141 match = re.search(gmem_restore_clear_match, line)
142 if match is not None:
143 gmem.restore_clear_time += int(match.group(1))
146 match = re.search(gmem_draw_match, line)
147 if match is not None:
148 gmem.draw_time += int(match.group(1))
151 match = re.search(gmem_resolve_match, line)
152 if match is not None:
153 gmem.resolve_time += int(match.group(1))
157 match = re.search(sysmem_match, line)
158 if match is not None:
165 match = re.search(blit_match, line)
166 if match is not None:
173 match = re.search(eof_match, line)
174 if match is not None:
175 frame_nr = int(match.group(1))
195 match = re.search(elapsed_match, line)
196 if match is not None:
197 time = int(match.group(1))