HomeSort by relevance Sort by last modified time
    Searched refs:expectations (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/chromium_org/content/test/gpu/gpu_tests/
gpu_process_expectations.py 5 from telemetry.page import test_expectations as expectations namespace
21 class GpuProcessExpectations(expectations.TestExpectations):
hardware_accelerated_feature_expectations.py 5 from telemetry.page import test_expectations as expectations namespace
21 class HardwareAcceleratedFeatureExpectations(expectations.TestExpectations):
gpu_process.py 4 import gpu_process_expectations as expectations namespace
41 return expectations.GpuProcessExpectations()
hardware_accelerated_feature.py 4 import hardware_accelerated_feature_expectations as expectations namespace
44 return expectations.HardwareAcceleratedFeatureExpectations()
  /external/skia/dm/
DMExpectationsTask.cpp 7 const Expectations& expectations,
11 , fExpectations(expectations)
DMExpectations.h 9 struct Expectations {
10 virtual ~Expectations() {}
16 class NoExpectations : public Expectations {
22 class JsonExpectations : public Expectations {
29 const skiagm::Expectations expectations = fGMExpectations.get(filename.c_str()); variable
31 if (expectations.ignoreFailure() || expectations.empty()) {
37 return expectations.match(digest);
DM.cpp 26 DEFINE_string2(expectations, r, "",
28 "If a file, compare generated images against JSON expectations at this path.");
53 const DM::Expectations& expectations,
78 (name, reporter, tasks, expectations, gms[i], __VA_ARGS__))); \
130 SkAutoTDelete<DM::Expectations> expectations(SkNEW(DM::NoExpectations));
134 expectations.reset(SkNEW_ARGS(DM::WriteTask::Expectations, (path)));
136 expectations.reset(SkNEW_ARGS(DM::JsonExpectations, (path)))
    [all...]
  /external/chromium_org/chrome/browser/extensions/
startup_helper_browsertest.cc 33 std::vector<std::pair<base::FilePath, bool> > expectations; local
34 expectations.push_back(
36 expectations.push_back(
38 expectations.push_back(
40 expectations.push_back(
44 expectations.begin();
45 i != expectations.end(); ++i) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerMeasurementTestActivity.java 61 * axis that the sensor data collects. It then compares it against the test expectations that
66 * and the expectations are set are different.
75 private void verifyMeasurements(double ... expectations) throws Throwable {
82 expectations,
90 double ... expectations) throws Throwable {
97 verifyMeasurements(expectations);
103 private void verifyMeasurements(String message, double ... expectations) throws Throwable {
108 verifyMeasurements(expectations);
GyroscopeMeasurementTestActivity.java 75 * axis that the sensor data collects. It then compares it against the test expectations that
92 int ... expectations) throws Throwable {
103 expectations,
  /external/chromium_org/base/mac/
libdispatch_task_runner_unittest.cc 31 // VerifyTaskOrder takes the expectations from TaskOrderMarkers and compares
33 void VerifyTaskOrder(const char* const expectations[],
39 EXPECT_LE(i, actual_size) << "Expected " << expectations[i];
43 EXPECT_EQ(expectations[i], task_order_[i]);
94 const char* const expectations[] = { local
98 VerifyTaskOrder(expectations, arraysize(expectations));
108 const char* const expectations[] = { local
114 VerifyTaskOrder(expectations, arraysize(expectations));
124 const char* const expectations[] = { local
142 const char* const expectations[] = { local
167 const char* const expectations[] = { local
193 const char* const expectations[] = { local
217 const char* const expectations[] = { local
    [all...]
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 78 std::map<std::string, std::string> expectations; local
79 expectations[MetadataParser::kPropertyFilesize] = test_file_size();
80 expectations[MetadataParser::kPropertyTitle] = test_file_str();
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
96 EXPECT_TRUE(expectations.empty());
  /external/chromium_org/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 78 std::map<std::string, std::string> expectations; local
79 expectations[MetadataParser::kPropertyFilesize] = test_file_size();
80 expectations[MetadataParser::kPropertyTitle] = test_file_str();
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
96 EXPECT_TRUE(expectations.empty());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
flakytests.py 42 expectations = BotTestExpectationsFactory().expectations_for_port(full_port_name)
43 print TestExpectations.list_to_string(expectations.expectation_lines())
  /external/skia/gm/viewer/
module.js 59 var expectations = response['expected-results'][imageName]['allowed-digests'];
60 if (expectations != null) {
61 thisResult.expectedHashType = expectations[0][0];
62 thisResult.expectedHashValue = expectations[0][1];
  /external/chromium_org/chrome/browser/password_manager/
password_form_data.cc 49 // if we use expectations(first.begin(), first.end()) to copy a vector
52 SetOfForms expectations;
53 std::copy(first.begin(), first.end(), std::inserter(expectations,
54 expectations.begin()));
58 for (SetOfForms::iterator it = expectations.begin();
59 it != expectations.end(); ++it) {
63 expectations.erase(it);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
bot_test_expectations_unittest.py 45 expectations = bot_test_expectations.BotTestExpectations(results_json)
47 num_actual_results = len(expectations._flaky_types_in_results(length_encoded, only_ignore_very_flaky=True))
83 expectations = bot_test_expectations.BotTestExpectations(results_json)
84 self.assertEqual(expectations.flakes_by_path(only_ignore_very_flaky), expectations_string)
88 expectations = bot_test_expectations.BotTestExpectations(results_json)
89 self.assertEqual(expectations.unexpected_results_by_path(), expectations_string)
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 78 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
82 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); local
83 if (expectations == null) {
84 expectations = new HashMap<String, byte[]>();
85 EXPECTATIONS.put(algorithm, expectations);
87 expectations.put(inputName, expected);
91 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm) local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 48 categories = set(['test/expectations'])
70 expectations = parser.parse('expectations', expectations_str)
73 for expectation_line in expectations:
75 self._handle_style_error(expectation_line.line_numbers, 'test/expectations', level, warning)
81 expectations = '\n'.join(lines)
83 self.check_test_expectations(expectations_str=expectations, tests=None)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations_unittest.py 79 def parse_exp(self, expectations, overrides=None, is_lint_mode=False):
81 expectations_dict['expectations'] = expectations
94 def assert_bad_expectations(self, expectations, overrides=None):
95 self.assertRaises(ParseError, self.parse_exp, expectations, is_lint_mode=True, overrides=overrides)
150 # expectations and that known test part of a test category is
151 # present in the expectations.
190 warnings = ("expectations:1 Unrecognized specifier 'foo' failures/expected/text.html\n"
191 "expectations:2 Path does not exist. non-existent-test.html")
259 """Test that expectations are merged rather than overridden when using flaky option 'unexpected'.""
    [all...]
test_expectations.py 29 """A helper class for reading in and dealing with tests expectations
104 def _create_expectation_line(self, test_name, expectations, file_name):
109 expectation_line.expectations = expectations
112 def expectation_line_for_test(self, test_name, expectations):
113 expectation_line = self._create_expectation_line(test_name, expectations, '<Bot TestExpectations>')
122 expectation_line.expectations = [TestExpectationParser.SKIP_MODIFIER, TestExpectationParser.WONTFIX_MODIFIER]
153 expectations = [expectation.lower() for expectation in expectation_line.expectations]
154 if not expectation_line.bugs and self.WONTFIX_MODIFIER not in expectations
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 50 expectations = test_expectations.TestExpectations()
60 results = page_runner.Run(Test('RunTest'), ps, expectations, options)
67 expectations = test_expectations.TestExpectations()
89 results = page_runner.Run(test, ps, expectations, options)
96 expectations = test_expectations.TestExpectations()
97 expectations.Fail('chrome://crash')
108 Test('RunTest'), ps, expectations, options)
115 expectations = test_expectations.TestExpectations()
136 results = page_runner.Run(Measurement(), ps, expectations, options)
142 results = page_runner.Run(Measurement(), ps, expectations, options
    [all...]
page_measurement_unittest_base.py 30 expectations=test_expectations.TestExpectations(),
48 return page_runner.Run(measurement, ps, expectations, options)
  /external/chromium_org/chrome/installer/util/
installation_validator.h 107 SwitchExpectations* expectations) const = 0;
110 SwitchExpectations* expectations) const = 0;
121 SwitchExpectations* expectations) const OVERRIDE;
124 SwitchExpectations* expectations) const OVERRIDE;
134 SwitchExpectations* expectations) const OVERRIDE;
137 SwitchExpectations* expectations) const OVERRIDE;
147 SwitchExpectations* expectations) const OVERRIDE;
150 SwitchExpectations* expectations) const OVERRIDE;
160 SwitchExpectations* expectations) const OVERRIDE;
163 SwitchExpectations* expectations) const OVERRIDE
    [all...]
  /external/chromium_org/chromeos/process_proxy/
process_output_watcher_unittest.cc 37 void Init(const std::vector<TestCase>& expectations) {
40 for (size_t i = 0; i < expectations.size(); i++) {
41 out_expectations_.append(expectations[i].str);
42 if (expectations[i].should_send_terminating_null)
75 const std::vector<TestCase>& expectations) {
76 expectations_.Init(expectations);

Completed in 395 milliseconds

1 2 3 4