Lines Matching refs:Item
60 class Item(object):
91 return flatten([item.fieldrefs() for item in self.items])
94 return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items])
123 for field in flatten([item.fieldrefs() for item in plot]):
131 for item in subplot.items:
132 if item.axis == x1y2 or item.axis == x2y2:
168 for item in plot:
169 script.append(item.to_gnuplot(context))
208 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
209 Item('Marking', 'mark', lc = 'purple'),
210 Item('Sweep', 'sweep', lc = 'blue'),
211 Item('External', 'external', lc = '#489D43'),
212 Item('Other', other_scope, lc = 'grey'),
213 Item('IGC Steps', 'steps_took', lc = '#FF6347'))
219 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
220 Item('Marking', 'mark', lc = 'purple'),
221 Item('Sweep', 'sweep', lc = 'blue'),
222 Item('External', 'external', lc = '#489D43'),
223 Item('Other', other_scope, lc = '#ADD8E6'),
224 Item('External', 'external', lc = '#D3D3D3'))
228 Plot(Item('Mutator', real_mutator, lc = 'black', style = 'lines'))
233 Plot(Item('Heap Size (before GC)', 'total_size_before', x1y2,
236 Item('Total holes (after GC)', 'holes_size_before', x1y2,
239 Item('GC Time', ['i', 'pause'], style = 'lines', lc = 'red'))
244 Plot(Item('Heap Size (after GC)', 'total_size_after', x1y2,
247 Item('Total holes (after GC)', 'holes_size_after', x1y2,
250 Item('GC Time', ['i', 'pause'],
257 Plot(Item('Allocated', 'allocated'),
258 Item('Reclaimed', reclaimed_bytes),
259 Item('Promoted', 'promoted', style = 'lines', lc = 'black'))