Lines Matching refs:unit
9 <key> <number> <unit>
10 key and unit are optional, but only one number per line is processed.
106 def __init__(self, key, unit):
108 self.unit = unit
144 if not self.unit:
146 return self.unit
171 "id", "avg", "stddev", "min", "max", "unit", widths)
188 def record(self, key, value, unit):
192 self.all[key] = Measurement(key, unit)
231 r'\ ?(?P<unit>[^\d\W]\w*)?[.\s]*\Z')
239 MEASUREMENTS.record(m.group('key'), m.group('value'), m.group('unit'))