Home | History | Annotate | Download | only in tools

Lines Matching refs:Item

90 class Item(object):
121 return flatten([item.fieldrefs() for item in self.items])
124 return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items])
153 for field in flatten([item.fieldrefs() for item in plot]):
161 for item in subplot.items:
162 if item.axis == x1y2 or item.axis == x2y2:
198 for item in plot:
199 script.append(item.to_gnuplot(context))
238 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
239 Item('Marking', 'mark', lc = 'purple'),
240 Item('Sweep', 'sweep', lc = 'blue'),
241 Item('External', 'external', lc = '#489D43'),
242 Item('Other', other_scope, lc = 'grey'),
243 Item('IGC Steps', 'stepstook', lc = '#FF6347'))
249 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
250 Item('Marking', 'mark', lc = 'purple'),
251 Item('Sweep', 'sweep', lc = 'blue'),
252 Item('External', 'external', lc = '#489D43'),
253 Item('Other', other_scope, lc = '#ADD8E6'),
254 Item('External', 'external', lc = '#D3D3D3'))
258 Plot(Item('Mutator', real_mutator, lc = 'black', style = 'lines'))
263 Plot(Item('Heap Size (before GC)', 'total_size_before', x1y2,
266 Item('Total holes (after GC)', 'holes_size_before', x1y2,
269 Item('GC Time', ['i', 'pause'], style = 'lines', lc = 'red'))
274 Plot(Item('Heap Size (after GC)', 'total_size_after', x1y2,
277 Item('Total holes (after GC)', 'holes_size_after', x1y2,
280 Item('GC Time', ['i', 'pause'],
287 Plot(Item('Allocated', 'allocated'),
288 Item('Reclaimed', reclaimed_bytes),
289 Item('Promoted', 'promoted', style = 'lines', lc = 'black'))