Home | History | Annotate | Download | only in skpdiff

Lines Matching refs:json

7 import json
45 'json': 'application/json'
133 expected-results.json. Note that this only work with bitmap-64bitMD5 hash
205 are in the format of expected-results.json.
245 'skpdiff_output.json')
320 self.skpdiff_records = json.load(skpdiff_output_file)['records']
459 # Handle skpdiff_output.json manually because it is was processed by the
461 if file_path == 'skpdiff_output.json':
463 self.send_header('Content-type', MIME_TYPE_MAP['json'])
466 # Add JSONP padding to the JSON because the web page expects it. It
468 # server. Without a web server, the only way to load JSON is with
472 json.dump({'records': skpdiff_records}, self.wfile)
492 request_data = json.loads(self.rfile.read(content_length))
496 self.send_header('Content-type', 'application/json')
540 default='expected-results.json',
541 help='the file name of the expectations JSON; ' +
547 default='updated-results.json',
548 help='the file name of the updated expectations JSON;' +