HomeSort by relevance Sort by last modified time
    Searched refs:image_hash (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_linux.cc 170 scoped_ptr<std::string> image_hash) {
188 base::Passed(&image_hash)));
192 scoped_ptr<std::string> image_hash,
194 DVLOG(1) << "Comparing hashes: " << *image_hash << " vs " << *device_hash;
196 if (*image_hash != *device_hash) {
image_writer_private_api.cc 46 if (params->options.get() && params->options->image_hash.get()) {
47 hash = *params->options->image_hash;
operation.h 126 void VerifyWriteStage2(scoped_ptr<std::string> image_hash);
127 void VerifyWriteCompare(scoped_ptr<std::string> image_hash,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftest_unittest.py 111 """, image=None, image_hash=None, audio=None)
137 """, image=None, image_hash=None, audio=None)
163 max 1120 ms""", image=None, image_hash=None, audio=None)
170 output_with_lines_to_ignore = DriverOutput('', image=None, image_hash=None, audio=None, error="""
197 """, image=None, image_hash=None, audio=None)
226 max 1120 ms""", image=None, image_hash=None, audio=None)
perftest.py 207 return driver.run_test(DriverInput(test_path, time_out_ms, image_hash=None, should_run_pixel_test=should_run_pixel_test, args=[]), stop_when_done=False)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
single_test_runner.py 95 image_hash = None
97 image_hash = self._port.expected_checksum(self._test_name)
111 return DriverInput(test_name, self._timeout, image_hash, self._should_run_pixel_test, args)
279 if driver_output.image_hash is None:
283 elif not expected_driver_output.image_hash:
285 elif driver_output.image_hash != expected_driver_output.image_hash:
309 expected_driver_output = DriverOutput(text=None, image=None, image_hash=None, audio=None)
323 driver_input = DriverInput(reference_test_name, self._timeout, image_hash=None, should_run_pixel_test=True, args=self._port.lookup_virtual_test_args(reference_test_name))
353 if not reference_driver_output.image_hash and not actual_driver_output.image_hash
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver.py 49 def __init__(self, test_name, timeout, image_hash, should_run_pixel_test, args):
52 self.image_hash = image_hash
61 def __init__(self, text, image, image_hash, audio, crash=False,
67 self.image_hash = image_hash
362 assert not driver_input.image_hash or driver_input.should_run_pixel_test
369 if driver_input.image_hash:
370 command += "'" + driver_input.image_hash
mock_drt.py 233 elif test_input.should_run_pixel_test and test_input.image_hash:
269 if test_input.should_run_pixel_test and output.image_hash:
271 self._stdout.write('ActualHash: %s\n' % output.image_hash)
272 self._stdout.write('ExpectedHash: %s\n' % test_input.image_hash)
273 if output.image_hash != test_input.image_hash:
test.py 640 if test.actual_checksum == driver_input.image_hash:

Completed in 2636 milliseconds