Searched refs:errors (Results 76 - 100 of 543) sorted by relevance

1234567891011>>

/external/v8/tools/
H A Drun-valgrind.py50 errors = process.stderr.readlines(); variable
54 sys.stderr.writelines(errors)
63 for line in errors:
67 sys.stderr.writelines(errors)
72 sys.stderr.writelines(errors)
/external/e2fsprogs/lib/ext2fs/
H A Dtst_byteswap.c50 int errors = 0; local
60 errors++;
65 errors++;
78 errors++;
83 errors++;
88 if (!errors)
89 printf("No errors found in the byteswap implementation!\n");
91 return errors;
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest_unittest.cc124 EXPECT_FALSE(parser.errors().empty());
128 EXPECT_FALSE(parser.errors().empty());
132 EXPECT_FALSE(parser.errors().empty());
136 EXPECT_FALSE(parser.errors().empty());
140 EXPECT_FALSE(parser.errors().empty());
144 EXPECT_TRUE(parser.errors().empty());
155 EXPECT_TRUE(parser.errors().empty());
157 EXPECT_TRUE(parser.errors().empty());
162 EXPECT_TRUE(parser.errors().empty());
169 EXPECT_TRUE(parser.errors()
[all...]
H A Dextension_manifests_unittest.cc24 namespace errors = extension_manifest_errors;
161 errors::kInvalidWebURLs);
165 errors::kInvalidWebURL,
167 errors::kExpectString));
172 errors::kInvalidWebURL,
180 errors::kInvalidWebURL,
182 errors::kNoWildCardsInPaths));
187 errors::kInvalidWebURL,
189 errors::kCannotClaimAllURLsInExtent));
194 errors
[all...]
/external/junit/src/org/junit/internal/runners/statements/
H A DRunAfters.java28 List<Throwable> errors = new ArrayList<Throwable>();
32 errors.add(e);
38 errors.add(e);
41 MultipleFailureException.assertEmpty(errors);
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dpython_unittest.py47 errors = []
52 errors.append(error)
60 self.assertEquals(len(errors), 1)
61 self.assertEquals(errors[0],
/external/wpa_supplicant_6/wpa_supplicant/tests/
H A Dtest_md4.c68 int errors = 0; local
78 errors++;
90 errors++;
98 return errors;
H A Dtest_md5.c68 int errors = 0; local
78 errors++;
90 errors++;
98 return errors;
/external/junit/src/org/junit/runners/model/
H A DInitializationError.java15 * errors {@code errors} as causes
17 public InitializationError(List<Throwable> errors) { argument
18 fErrors= errors;
H A DFrameworkMethod.java58 * Adds to {@code errors} if this method:
66 public void validatePublicVoidNoArg(boolean isStatic, List<Throwable> errors) { argument
67 validatePublicVoid(isStatic, errors);
69 errors.add(new Exception("Method " + fMethod.getName() + " should have no parameters"));
74 * Adds to {@code errors} if this method:
81 public void validatePublicVoid(boolean isStatic, List<Throwable> errors) { argument
84 errors.add(new Exception("Method " + fMethod.getName() + "() " + state + " be static"));
87 errors.add(new Exception("Class " + fMethod.getDeclaringClass().getName() + " should be public"));
89 errors.add(new Exception("Method " + fMethod.getName() + "() should be public"));
91 errors
94 validateNoTypeParametersOnArgs(List<Throwable> errors) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_ignore_read.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_order_1.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_order_2.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_order_3.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_spinlock.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Drwlock_test.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dtc17_sembar.stderr.exp5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/main/helgrind/tests/
H A Drwlock_test.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dtc17_sembar.stderr.exp5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/chromium/chrome/common/
H A Djson_schema_validator_unittest.cc24 for (size_t i = 0; i < validator.errors().size(); ++i) {
26 << validator.errors()[i].path << ": "
27 << validator.errors()[i].message;
42 ASSERT_EQ(1u, validator.errors().size()) << test_source;
43 EXPECT_EQ(expected_error_path, validator.errors()[0].path) << test_source;
44 EXPECT_EQ(expected_error_message, validator.errors()[0].message)
/external/mesa3d/src/glsl/glcpp/tests/
H A Dglcpp-test3 trap 'rm $test.valgrind-errors; exit 1' INT QUIT
30 valgrind --error-exitcode=31 --log-file=$test.valgrind-errors ../glcpp < $test >/dev/null 2>&1
33 cat $test.valgrind-errors
37 rm $test.valgrind-errors
/external/chromium/chrome/browser/net/
H A Durl_request_mock_net_error_job.cc25 std::vector<int> errors,
28 errors(errors),
32 std::vector<int> errors; member in struct:URLRequestMockNetErrorJob::MockInfo
39 const std::vector<int>& errors,
46 url_mock_info_map_[url] = MockInfo(base, errors, ssl_cert);
79 return new URLRequestMockNetErrorJob(request, mock_info.errors,
85 const std::vector<int>& errors, net::X509Certificate* cert,
88 errors_(errors),
24 MockInfo(std::wstring base, std::vector<int> errors, net::X509Certificate* ssl_cert) argument
37 AddMockedURL(const GURL& url, const std::wstring& base, const std::vector<int>& errors, net::X509Certificate* ssl_cert) argument
84 URLRequestMockNetErrorJob(net::URLRequest* request, const std::vector<int>& errors, net::X509Certificate* cert, const FilePath& file_path) argument
/external/chromium/testing/gtest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
/external/gtest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
/external/llvm/utils/unittest/googletest/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();

Completed in 408 milliseconds

1234567891011>>