Searched refs:errors (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.stdout.exp1 No errors.
/external/valgrind/main/drd/tests/
H A Dpth_barrier2.stderr.exp1 ERROR SUMMARY: 32 errors
H A Dpth_barrier3.stderr.exp1 ERROR SUMMARY: 31 errors
H A Domp_matinv_racy.stderr.exp1 ERROR SUMMARY: 76 errors from 7 contexts
H A Domp_prime_racy.stderr.exp1 ERROR SUMMARY: 3 errors from 3 contexts
H A Dpth_barrier.stderr.exp1 ERROR SUMMARY: 1 errors from 1 contexts
H A Dpth_once.stderr.exp1 ERROR SUMMARY: 0 errors from 0 contexts
H A Dtc05_simple_race.stderr.exp1 ERROR SUMMARY: 2 errors from 2 contexts
H A Dtc06_two_races.stderr.exp1 ERROR SUMMARY: 4 errors from 4 contexts
H A Dthreaded-fork.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_hbefore.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_rwlock.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_smart_pointer.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_static.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dbar_trivial.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dboost_thread.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Derrorrules.py22 from closure_linter import errors namespace
27 'Whether to report errors for missing JsDoc.')
34 True for all errors except missing documentation errors. For these,
38 errors.MISSING_PARAMETER_DOCUMENTATION,
39 errors.MISSING_RETURN_DOCUMENTATION,
40 errors.MISSING_MEMBER_DOCUMENTATION,
41 errors.MISSING_PRIVATE,
42 errors.MISSING_JSDOC_TAG_THIS)
/external/junit/src/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java18 void validate(List<Throwable> errors) { argument
20 validateNoTypeParameterOnType(each, errors);
23 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { argument
25 errors.add(new Exception("Method " + fMethod.getName()
28 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors);
30 validateNoTypeParameterOnWildcardType((WildcardType) type, errors);
32 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors);
36 List<Throwable> errors) {
38 validateNoTypeParameterOnType(each, errors);
42 List<Throwable> errors) {
35 validateNoTypeParameterOnParameterizedType(ParameterizedType parameterized, List<Throwable> errors) argument
41 validateNoTypeParameterOnWildcardType(WildcardType wildcard, List<Throwable> errors) argument
49 validateNoTypeParameterOnGenericArrayType( GenericArrayType arrayType, List<Throwable> errors) argument
[all...]
H A DMultipleFailureException.java17 public MultipleFailureException(List<Throwable> errors) { argument
18 fErrors= new ArrayList<Throwable>(errors);
28 String.format("There were %d errors:", fErrors.size()));
41 * @param errors list to check
45 public static void assertEmpty(List<Throwable> errors) throws Throwable { argument
46 if (errors.isEmpty())
48 if (errors.size() == 1)
49 throw errors.get(0);
58 throw new org.junit.internal.runners.model.MultipleFailureException(errors);
/external/e2fsprogs/lib/e2p/
H A Dpe.c2 * pe.c - Print a second extended filesystem errors behavior
23 void print_fs_errors (FILE * f, unsigned short errors) argument
25 switch (errors)
/external/junit/src/org/junit/internal/runners/
H A DInitializationError.java15 public InitializationError(List<Throwable> errors) { argument
16 fErrors= errors;
19 public InitializationError(Throwable... errors) { argument
20 this(Arrays.asList(errors));
/external/junit/src/org/junit/internal/runners/rules/
H A DRuleFieldValidator.java15 * {@code TestClass} are written to a list of errors.
43 * for rejecting the class to a list of errors.
45 * @param errors the list of errors.
47 public void validate(TestClass target, List<Throwable> errors) { argument
50 validateField(each, errors);
53 private void validateField(FrameworkField field, List<Throwable> errors) { argument
54 optionallyValidateStatic(field, errors);
55 validatePublic(field, errors);
56 validateTestRuleOrMethodRule(field, errors);
59 optionallyValidateStatic(FrameworkField field, List<Throwable> errors) argument
65 validatePublic(FrameworkField field, List<Throwable> errors) argument
70 validateTestRuleOrMethodRule(FrameworkField field, List<Throwable> errors) argument
86 addError(List<Throwable> errors, FrameworkField field, String suffix) argument
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dhandleerror02.js85 * @param errors Value from value attribute of nested var element
88 function DOMErrorHandlerN10053(errors) {
89 this.errors = errors;
105 var errors = errorHandler.errors;
113 errors[errors.length] = error;
122 Use an error handler to continue from errors and check that more than one
143 var errors
[all...]
/external/doclava/test/doclava/
H A DApiCheckTest.java31 * Clear all errors and make sure all future errors will be recorded.
44 assertEquals(report.errors().size(), 0);
51 assertEquals(1, report.errors().size());
52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error());
59 assertEquals(2, report.errors().size());
61 Iterator<ErrorMessage> errors = report.errors().iterator();
62 ErrorMessage m1 = errors.next();
63 ErrorMessage m2 = errors
[all...]
/external/junit/src/org/junit/internal/runners/model/
H A DMultipleFailureException.java9 public MultipleFailureException(List<Throwable> errors) { argument
10 super(errors);

Completed in 395 milliseconds

1234567891011>>