Home | History | Annotate | Download | only in instrumentation

Lines Matching defs:json

6 """A helper module for parsing JSON objects from perf tests results."""
8 import json
12 """Summarizes TraceEvent JSON data for performance metrics.
14 Example JSON Inputs (More tags can be added but these are required):
46 json_data: A list of dictonaries each representing a JSON object.
47 name: The 'name' tag to filter on in the JSON file.
135 """Returns the results from GetAverageRunInfo using a JSON string.
138 json_string: The string containing JSON.
139 name: The 'name' tag to filter on in the JSON file.
144 return GetAverageRunInfo(json.loads(json_string), name)
148 """Returns the results from GetAverageRunInfo using a JSON file.
151 json_file: The path to a JSON file.
152 name: The 'name' tag to filter on in the JSON file.
159 perf = json.loads(data)