HomeSort by relevance Sort by last modified time
    Searched full:errors (Results 176 - 200 of 9212) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/valgrind/main/memcheck/tests/linux/
sigqueue.stderr.exp 10 For counts of detected and suppressed errors, rerun with: -v
11 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
syscalls-2007.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
syslog-syscall.stderr.exp 10 For counts of detected and suppressed errors, rerun with: -v
11 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/
mallinfo.stderr.exp 10 For counts of detected and suppressed errors, rerun with: -v
11 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
new_override.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
sbfragment.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
error_counts.c 20 fprintf(stderr, "errors: %d\n\n", VALGRIND_COUNT_ERRORS);
28 fprintf(stderr, "errors: %d\n\n", VALGRIND_COUNT_ERRORS);
34 fprintf(stderr, "errors: %d\n\n", VALGRIND_COUNT_ERRORS);
41 fprintf(stderr, "errors: %d\n\n", VALGRIND_COUNT_ERRORS);
55 fprintf(stderr, "errors: %d\n", VALGRIND_COUNT_ERRORS);
  /frameworks/testing/uiautomator/library/
apicheck_msg_current.txt 5 To make these errors go away, you have two choices:
7 errors above.
  /external/chromium/chrome/common/extensions/
extension_manifests_unittest.cc 24 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::kInvalidWebURL
    [all...]
  /external/chromium/chrome/common/
json_schema_validator_unittest.cc 24 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/chromium_org/chrome/browser/extensions/api/image_writer_private/
error_messages.cc 17 // Device listing errors
20 // File errors
23 // Download errors
31 // Unzip errors
35 // Write errors
49 // Verification Errors
error_messages.h 18 // Device listing errors
21 // File errors
24 // Download errors
32 // Unzip errors
36 // Write errors
50 // Verification Errors
  /external/clang/test/PCH/
cxx-constexpr.cpp 1 // RUN: %clang_cc1 -pedantic-errors -std=c++98 -emit-pch %s -o %t
2 // RUN: %clang_cc1 -pedantic-errors -std=c++98 -include-pch %t -verify %s
4 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t-cxx11
5 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t-cxx11 -verify %s
7 // RUN: %clang_cc1 -pedantic-errors -std=c++98 -emit-pch %s -o %t -fmodules
8 // RUN: %clang_cc1 -pedantic-errors -std=c++98 -include-pch %t -verify %s -fmodules
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 29 private final List errors = new ArrayList(); field in class:DOMErrorMonitor
44 errors.add(new DOMErrorImpl(error));
49 * Gets list of errors
51 * @return return errors
54 return new ArrayList(errors);
58 Iterator iter = errors.iterator();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threadedtempfile.py 34 self.errors = StringIO.StringIO()
42 print_exc(file=self.errors)
60 errors = []
65 errors.append(str(t.getName()) + str(t.errors.getvalue()))
69 msg = "Errors: errors %d ok %d\n%s" % (len(errors), ok,
70 '\n'.join(errors))
71 self.assertEqual(errors, [], msg
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threadedtempfile.py 34 self.errors = StringIO.StringIO()
42 print_exc(file=self.errors)
60 errors = []
65 errors.append(str(t.getName()) + str(t.errors.getvalue()))
69 msg = "Errors: errors %d ok %d\n%s" % (len(errors), ok,
70 '\n'.join(errors))
71 self.assertEqual(errors, [], msg
    [all...]
  /external/chromium_org/chrome/browser/extensions/error_console/
error_console.h 34 // The ErrorConsole is a central object to which all extension errors are
35 // reported. This includes errors detected in extensions core, as well as
36 // runtime Javascript errors.
63 // Get a collection of weak pointers to all errors relating to the extension
67 // Add or remove observers of the ErrorConsole to be notified of any errors
73 const ErrorMap& errors() const { return errors_; } function in class:extensions::ErrorConsole
79 // subscribing to the appropriate notifications and fetching manifest errors.
82 // removing all current errors.
90 // Add manifest errors from an extension's install warnings.
93 // Remove all errors which happened while incognito; we have to do this onc
    [all...]
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service_unittest.cc 14 // Error base class that keeps track of the number of errors that exist.
71 // Test adding errors to the global error service.
74 EXPECT_EQ(0u, service->errors().size());
78 EXPECT_EQ(1u, service->errors().size());
79 EXPECT_EQ(error1, service->errors()[0]);
83 EXPECT_EQ(2u, service->errors().size());
84 EXPECT_EQ(error1, service->errors()[0]);
85 EXPECT_EQ(error2, service->errors()[1]);
93 // Test removing errors from the global error service.
101 EXPECT_EQ(2u, service->errors().size())
    [all...]
  /external/chromium_org/ppapi/generators/
idl_propertynode.py 83 errors = 0
88 errors += ExpectProp(top, 'Left', 'Top')
89 errors += ExpectProp(top, 'Right', 'Top')
91 errors += ExpectProp(left, 'Left', 'Left')
92 errors += ExpectProp(left, 'Right', 'Top')
94 errors += ExpectProp(right, 'Left', 'Top')
95 errors += ExpectProp(right, 'Right', 'Right')
97 if not errors:
99 return errors
103 errors =
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
sonet.h 10 __HANDLE_ITEM(section_bip); /* section parity errors (B1) */ \
11 __HANDLE_ITEM(line_bip); /* line parity errors (B2) */ \
12 __HANDLE_ITEM(path_bip); /* path parity errors (B3) */ \
13 __HANDLE_ITEM(line_febe); /* line parity errors at remote */ \
14 __HANDLE_ITEM(path_febe); /* path parity errors at remote */ \
15 __HANDLE_ITEM(corr_hcs); /* correctable header errors */ \
16 __HANDLE_ITEM(uncorr_hcs); /* uncorrectable header errors */ \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
sonet.h 10 __HANDLE_ITEM(section_bip); /* section parity errors (B1) */ \
11 __HANDLE_ITEM(line_bip); /* line parity errors (B2) */ \
12 __HANDLE_ITEM(path_bip); /* path parity errors (B3) */ \
13 __HANDLE_ITEM(line_febe); /* line parity errors at remote */ \
14 __HANDLE_ITEM(path_febe); /* path parity errors at remote */ \
15 __HANDLE_ITEM(corr_hcs); /* correctable header errors */ \
16 __HANDLE_ITEM(uncorr_hcs); /* uncorrectable header errors */ \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
sonet.h 10 __HANDLE_ITEM(section_bip); /* section parity errors (B1) */ \
11 __HANDLE_ITEM(line_bip); /* line parity errors (B2) */ \
12 __HANDLE_ITEM(path_bip); /* path parity errors (B3) */ \
13 __HANDLE_ITEM(line_febe); /* line parity errors at remote */ \
14 __HANDLE_ITEM(path_febe); /* path parity errors at remote */ \
15 __HANDLE_ITEM(corr_hcs); /* correctable header errors */ \
16 __HANDLE_ITEM(uncorr_hcs); /* uncorrectable header errors */ \
  /external/doclava/src/com/google/doclava/
TodoFile.java 59 public int errors; field in class:TodoFile.PackageStats
83 String base = classBase + ".errors.";
84 int errors = 0; local
88 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
89 errors++;
98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
103 errors++;
112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
117 errors++;
127 setHDF(data, base + errors, f.position(), f.name(), MISSING)
    [all...]
  /external/chromium_org/chrome/common/extensions/api/file_handlers/
file_handlers_manifest_unittest.cc 12 namespace errors = extensions::manifest_errors;
24 errors::kInvalidFileHandlers),
26 errors::kInvalidFileHandlerType),
28 errors::kInvalidFileHandlerExtension),
30 errors::kInvalidFileHandlerNoTypeOrExtension),
32 errors::kInvalidFileHandlerTitle),
34 errors::kInvalidFileHandlerTypeElement),
36 errors::kInvalidFileHandlerExtensionElement),
38 errors::kInvalidFileHandlersTooManyTypesAndExtensions),
  /external/clang/test/Misc/
diag-mapping.c 12 // Mapping unrelated diags to errors doesn't affect this one.
18 // This should emit an error with -pedantic-errors.
19 // RUN: not %clang_cc1 %s -pedantic-errors 2>&1 | grep "error:"
22 // RUN: %clang_cc1 %s -pedantic-errors -Wextra-tokens 2>&1 | grep "warning:"
25 // RUN: %clang_cc1 %s -pedantic-errors -Wno-extra-tokens 2>&1 | not grep diagnostic

Completed in 304 milliseconds

1 2 3 4 5 6 78 91011>>