Lines Matching refs:key
86 key = ''
94 key = re_result.search(line).group(1).strip(string.whitespace)
95 if key.startswith('performance.'):
96 key = key[len('performance.'):]
99 result_dict[key] = float(val)
101 result_dict[key] = val
103 result_dict[key] = val
106 key = 'code'
108 result_dict[key] = val
111 key = 'INSTRUMENTATION_ABORTED'
113 result_dict[key] = val
115 result_dict[key] += '\n' + line
146 key, value = (field.group('key').strip(), field.group('value').strip())
147 if key.startswith('performance.'):
148 key = key[len('performance.'):]
149 self._fields_map[key] = value