Searched refs:errors (Results 151 - 175 of 594) sorted by relevance

1234567891011>>

/external/valgrind/memcheck/tests/ppc64/
H A Dpower_ISA2_05.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dpower_ISA2_07.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/memcheck/tests/
H A Dsbfragment.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dsem.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Daccounting.stderr.exp13 For counts of detected and suppressed errors, rerun with: -v
14 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dbug155125.stderr.exp14 For counts of detected and suppressed errors, rerun with: -v
15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/selinux/libsepol/src/
H A Dassertion.c70 unsigned long errors = 0; local
82 errors++;
90 errors++;
95 return errors;
105 unsigned long errors = 0; local
140 errors += check_assertion_helper
147 errors += check_assertion_helper
154 if (errors)
155 ERR(handle, "%lu neverallow failures occurred", errors);
159 return errors
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/
H A Dfiletestcase.py17 """Test case that runs a checker on a file, matching errors against annotations.
19 Runs the given checker on the given file, accumulating all errors. The list
20 of errors is then matched against those annotated in the file. Based heavily
100 errors = erroraccumulator.ErrorAccumulator()
101 self._runner.Run([filename], errors)
103 errors = errors.GetErrors()
106 error_msgs = [(error.token.line_number, error.code) for error in errors]
/external/icu/icu4c/source/common/unicode/
H A Didna.h96 * The label might be modified according to the types of errors.
97 * Labels with severe errors will be left in (or turned into) their Unicode form.
119 * The label might be modified according to the types of errors.
142 * The domain name might be modified according to the types of errors.
143 * Labels with severe errors will be left in (or turned into) their Unicode form.
165 * The domain name might be modified according to the types of errors.
262 * Output container for IDNA processing errors.
272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
274 * Were there IDNA processing errors?
275 * @return TRUE if there were processing errors
314 uint32_t errors, labelErrors; member in class:IDNAInfo
[all...]
/external/libxml2/python/tests/
H A Dthread2.py18 self.errors = []
23 self.errors.append(str)
55 ec = len(eh.errors)
57 print("FAILED: should have obtained errors")
70 if len(eh.errors) != ec+THREADS_COUNT*ec:
71 print("FAILED: did not obtain the correct number of errors")
85 if len(eh.errors) != ec+THREADS_COUNT*ec*2:
86 print("FAILED: did not obtain the correct number of errors")
/external/valgrind/none/tests/
H A Dioctl_moans.stderr.exp2 This could cause spurious value errors to appear.
5 This could cause spurious value errors to appear.
8 This could cause spurious value errors to appear.
11 This could cause spurious value errors to appear.
14 This could cause spurious value errors to appear.
17 This could cause spurious value errors to appear.
20 This could cause spurious value errors to appear.
23 This could cause spurious value errors to appear.
26 This could cause spurious value errors to appear.
29 This could cause spurious value errors t
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
H A Decmalintrules.py29 from closure_linter import errors namespace
61 Can be used to find common style errors in JavaScript, ActionScript and other
102 """Handle errors associated with a parameter missing a @param tag."""
161 self._HandleError(errors.LINE_TOO_LONG,
165 """Checks the given type for style errors.
176 self._HandleError(errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL,
183 self._HandleError(errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
189 self._HandleError(errors.MISSING_BRACES_AROUND_TYPE,
207 errors.MISSING_SPACE,
239 """Checks a token, given the current parser_state, for warnings and errors
[all...]
H A Dnot_strict_test.py19 Tests errors that can be thrown by gjslint when not in strict mode.
32 from closure_linter import errors namespace
70 errors.ByName))
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dcalc.rb71 errors = parser.reported_errors
72 return [ value, errors ]
87 parser_value, errors = evaluate( expression )
93 val, errors = evaluate "6 - (2*1"
95 errors.should have( 1 ).thing
96 errors.first.should =~ /mismatched/
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DIDNA.java158 * The label might be modified according to the types of errors.
159 * Labels with severe errors will be left in (or turned into) their Unicode form.
172 * The label might be modified according to the types of errors.
186 * The domain name might be modified according to the types of errors.
187 * Labels with severe errors will be left in (or turned into) their Unicode form.
200 * The domain name might be modified according to the types of errors.
211 * Output container for IDNA processing errors.
221 errors=EnumSet.noneOf(Error.class);
228 * Were there IDNA processing errors?
229 * @return true if there were processing errors
262 private EnumSet<Error> errors, labelErrors; field in class:IDNA.Info
284 hasCertainErrors(Info info, EnumSet<Error> errors) argument
292 hasCertainLabelErrors(Info info, EnumSet<Error> errors) argument
[all...]
/external/selinux/policycoreutils/scripts/
H A Dchcat49 errors = 0
86 errors += 1
88 return errors
97 errors = 0
124 errors += 1
125 return errors
128 errors = 0
164 errors += 1
165 return errors
174 errors
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt015calc.py10 def _evaluate(self, expr, expected, errors=[]):
17 assert len(parser.reportedErrors) == len(errors), parser.reportedErrors
39 # FIXME: most parse errors result in TypeErrors in action code, because
/external/valgrind/drd/tests/
H A Dannotate_hb_race.stderr.exp8 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dannotate_ignore_rw.stderr.exp9 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dannotate_publish_hg.stderr.exp7 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dpth_uninitialized_cond.stderr.exp10 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dstd_thread2.stderr.exp9 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/valgrind/helgrind/tests/
H A Dcond_timedwait_invalid.stderr.exp15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/chromium-trace/trace-viewer/build/
H A Dchecklicenses.py83 errors = []
112 errors.append({'filename': filename, 'license': license})
114 if errors:
115 for error in errors:
/external/v8/tools/
H A Dandroid-run.py44 def Check(output, errors):
62 errors = file(errname).read()
66 sys.stderr.write(errors)
67 return exit_code or Check(output, errors)

Completed in 709 milliseconds

1234567891011>>