HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 351 - 375 of 682) sorted by null

<<11121314151617181920>>

  /external/freetype/src/base/
ftrfork.c 363 FT_Error *errors )
372 errors[i] = FT_Stream_Seek( stream, 0 );
374 errors[i] = FT_Err_Ok;
376 if ( errors[i] )
379 errors[i] = (FT_RACCESS_GUESS_TABLE_GET[i].func)( library,
819 /* Dummy function; just sets errors */
828 FT_Error *errors )
841 errors[i] = FT_Err_Unimplemented_Feature;
  /external/valgrind/main/none/tests/
cmdline2.stdout.exp 21 --vgdb-error=<number> invoke gdbserver after <number> errors [999999999]
30 user options for Valgrind tools that report errors:
38 --error-limit=no|yes stop showing new errors if too many? [yes]
39 --error-exitcode=<number> exit code to return if errors found [0=disable]
41 --suppressions=<filename> suppress errors described in <filename>
42 --gen-suppressions=no|yes|all print suppressions for errors? [no]
43 --db-attach=no|yes start debugger when errors detected? [no]
140 debugging options for Valgrind tools that report errors
  /external/webkit/Source/WebCore/inspector/front-end/
inspector.js 226 get errors()
231 set errors(x)
262 if (!this.errors && !this.warnings) {
271 if (this.errors) {
274 errorElement.textContent = this.errors;
285 if (this.errors) {
287 if (this.errors == 1) {
289 errorWarningElement.title = WebInspector.UIString("%d error, %d warning", this.errors, this.warnings);
291 errorWarningElement.title = WebInspector.UIString("%d error, %d warnings", this.errors, this.warnings);
293 errorWarningElement.title = WebInspector.UIString("%d errors, %d warning", this.errors, this.warnings)
    [all...]
  /external/stressapptest/src/
worker.cc 125 // A struct to hold captured errors, for later reporting.
702 // Print errors on mismatches.
710 int errors = 0; local
711 int overflowerrors = 0; // Count of overflowed errors.
715 recorded[kErrorLimit]; // Queued errors for later printing.
736 if (errors < kErrorLimit) {
737 recorded[errors].actual = actual;
738 recorded[errors].expected = expected;
739 recorded[errors].vaddr = &memblock[i];
740 errors++
895 int errors = 0; local
1193 int errors = 0; local
1337 int errors = 0; local
1923 int errors = CrcCheckPage(&dst); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 75 * stdout and stderr. This doesn't trap errors from running antlr.
147 /** Return true if all is ok, no errors */
173 if ( equeue.errors.size()>0 ) {
175 System.err.println("antlr reports errors from "+options);
176 for (int i = 0; i < equeue.errors.size(); i++) {
177 Message msg = (Message) equeue.errors.get(i);
438 System.out.println(equeue.errors);
439 assertTrue("number of errors mismatch", n, equeue.errors.size());
442 for (int i = 0; i < equeue.errors.size(); i++)
    [all...]
TestDFAConversion.java 122 // no warnings/errors
376 // No errors with k=1; don't try k=* first
409 // No errors with k=2; don't try k=* first
557 assertEquals(1, equeue.errors.size());
558 Message msg = (Message)equeue.errors.get(0);
586 assertEquals(1, equeue.errors.size());
587 Message msg = (Message)equeue.errors.get(0);
617 assertEquals(1, equeue.errors.size());
618 Message msg = (Message)equeue.errors.get(0);
    [all...]
  /external/valgrind/main/coregrind/
m_errormgr.c 57 /* After this many different unsuppressed errors have been observed,
61 /* After this many different unsuppressed errors have been observed,
62 stop collecting errors at all, and tell the user their program is
66 /* After this many total errors have been observed, stop collecting
67 errors at all. Counterpart to M_COLLECT_NO_ERRORS_AFTER_SHOWN. */
71 Initially empty, and grows as errors are detected. */
72 static Error* errors = NULL; variable
79 /* Running count of unsuppressed errors detected. */
82 /* Running count of suppressed errors detected. */
85 /* Running count of errors shown. *
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 198 boolean errors = false;
202 errors = true;
206 if (errors) {
413 Option verboseErrorsOption = OptionBuilder.withLongOpt("verbose-errors")
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 67 int errors; field in class:GrammarReport.ReportData
245 data.errors = ErrorManager.getErrorState().errors;
464 buf.append("Number of errors: ");
465 buf.append(data.errors);
  /external/bison/src/
state.h 68 states should explicitly be errors (for implementing %nonassoc).
69 For each state, the tokens that are errors for this reason are
243 void state_errs_set (state *s, int num, symbol **errors);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 813 errors: 0
820 results.errors += test.errors;
833 url += "errors=" + results.errors;
870 return new DrNicTest.Template('#{tests} tests, #{assertions} assertions, #{failures} failures, #{errors} errors').evaluate(this.getResult());
890 DrNicTest.Unit.Testcase.prototype.errors = 0;
919 var msg = '#{assertions} assertions, #{failures} failures, #{errors} errors\n'
    [all...]
  /external/chromium/chrome/common/
json_schema_validator.h 102 // Errors will result in CHECK at runtime; this constructor should not be used
112 // and valid. Errors will result in CHECK at runtime; this constructor should
134 // Returns any errors from the last call to to Validate().
135 const std::vector<Error>& errors() const { function in class:JSONSchemaValidator
140 // otherwise. If false is returned any errors are available from the errors()
206 // Errors accumulated since the last call to Validate().
  /external/junit/src/junit/framework/
TestResult.java 12 * The test framework distinguishes between <i>failures</i> and <i>errors</i>.
13 * A failure is anticipated and checked for with assertions. Errors are
37 * Adds an error to the list of errors. The passed in exception
82 * Gets the number of detected errors.
88 * Returns an Enumeration for the errors
90 public synchronized Enumeration<TestFailure> errors() { method in class:TestResult
  /external/junit/src/junit/textui/
ResultPrinter.java 49 printDefects(result.errors(), result.errorCount(), "error");
93 ", Errors: "+result.errorCount());
  /external/v8/test/mjsunit/regress/
regress-1145.js 32 // compiled functions with syntax errors into early errors).
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 102 for error in err.errors:
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 36 int errors; member in struct:wpa_ctrl_dst
391 dst->errors++;
392 if (dst->errors > 10) {
398 dst->errors = 0;
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part1.c 38 static int errors; variable
    [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_06_part1.c 38 static int errors; variable
    [all...]
  /external/skia/gm/
gmmain.cpp 264 // Records an error in fFailedTests, if we want to record errors
372 * errors.
870 ErrorBitfield errors = generate_image(gm, gRec, context, rt, bitmap, local
916 ErrorBitfield errors = ERROR_NONE; local
942 ErrorBitfield errors = ERROR_NONE; local
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state.h 85 // Counters for various errors that can occur repeatedly during a sync session.
94 // Number of commits hitting transient errors since the last successful
99 // transient errors. When any of these succeed, this counter is reset.
114 const ErrorCounters& errors,
132 const ErrorCounters errors; member in struct:browser_sync::sessions::SyncSessionSnapshot
  /external/libxslt/libxslt/
attrvt.c 70 if (style != NULL) style->errors++;
186 style->errors++;
262 style->errors++;
281 style->errors++;
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 214 // Errors: In the first form of the call, errors are reported with
224 vector<string> *errors);
234 // The second call stores its errors in a supplied string vector.
235 // If the string vector pointer is NULL, it reports the errors with LOG().
243 vector<string> *errors);
  /external/protobuf/src/google/protobuf/
text_format_unittest.cc 684 // An error collector which simply concatenates all its errors into a big
990 vector<string> errors; local
1007 vector<string> errors; local
    [all...]
  /external/valgrind/main/drd/tests/
bar_bad.stderr.exp 49 ERROR SUMMARY: 7 errors from 6 contexts (suppressed: 0 from 0)

Completed in 2068 milliseconds

<<11121314151617181920>>