Home | History | Annotate | Download | only in metrics

Lines Matching full:area

185     assert total_area > 0.0, 'Total paint event area must be greater than 0.'
197 for time, area in sorted(time_area_dict.items()):
198 completeness += float(area) / total_area
232 """Make a dict from time to adjusted area value for events at that time.
234 The adjusted area value of each paint event is determined by how many paint
236 "Adjusted area" can also be thought of as "points" of visual completeness --
246 adjusted area that the paint event is worth.
252 """Returns rectangle area clipped to viewport size."""
262 # The area points for each rectangle are divided up among the paint
264 area = ClippedArea(rectangle)
266 adjusted_area = float(area) / update_count
268 # Paint events for the largest-area rectangle are counted as 50%.
269 if area == fullscreen_area: