Searched refs:num_errors (Results 1 - 25 of 34) sorted by relevance

12

/external/libunwind/tests/
H A DGtest-nomalloc.c34 int num_errors; variable
46 num_errors++;
74 ++num_errors;
104 if (num_errors > 0)
106 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors);
H A DLtest-nocalloc.c113 int i, num_errors; local
127 num_errors = num_mallocs + num_callocs;
128 if (num_errors > 0)
132 num_errors, num_errors > 1 ? "s" : "",
H A DGtest-trace.c48 int num_errors; variable
83 ++num_errors;
111 ++num_errors;
117 ++num_errors;
127 ++num_errors;
137 ++num_errors;
262 if (num_errors > 0)
264 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors);
H A Dcheck-namespace.sh.in11 num_errors=0
52 num_errors=`expr $num_errors + 1`
303 num_errors=`expr $num_errors + 1`
322 if [ $num_errors -gt 0 ]; then
323 echo "FAILURE: Detected $num_errors errors"
H A DGtest-bt.c49 int num_errors; variable
111 ++num_errors;
248 if (num_errors > 0)
250 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors);
/external/stlport/test/unit/cppunit/
H A Dtest_main.cpp113 int num_errors; local
115 num_errors = CPPUNIT_NS::TestCase::run(reporter, xtestName, true);
117 num_errors = CPPUNIT_NS::TestCase::run(reporter, testName);
123 return num_errors;
/external/lldb/source/Expression/
H A DClangUtilityFunction.cpp114 unsigned num_errors = parser.Parse (error_stream); local
116 if (num_errors)
118 error_stream.Printf ("error: %d errors parsing expression\n", num_errors);
H A DClangExpressionParser.cpp408 int num_errors = 0; local
415 num_errors = 0;
421 num_errors++;
430 if (!num_errors)
435 num_errors++;
439 return num_errors;
H A DClangFunction.cpp113 unsigned num_errors = 0; local
228 num_errors = m_parser->Parse (errors);
233 num_errors = 1;
236 m_compiled = (num_errors == 0);
239 return num_errors;
241 return num_errors;
/external/chromium_org/chrome/test/telemetry/
H A Drun_cros_tests19 sys.exit(min(ret + runner.result.num_errors, 255))
/external/chromium_org/native_client_sdk/src/tools/lib/tests/
H A Dquote_test.py118 num_errors = 0
132 # update num_errors here.
139 num_errors += 1
140 if num_errors > 0:
141 sys.stderr.write('[ FAILED ] %d test failures\n' % num_errors)
142 return num_errors
/external/e2fsprogs/lib/et/
H A Dcom_err.h58 int num_errors,
H A Dcom_right.c88 int num_errors,
104 tab->n_msgs = num_errors;
86 initialize_error_table_r(struct et_list **list, const char **messages, int num_errors, long base) argument
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DErrors.py116 num_errors = 0 variable
122 global listing_file, num_errors, echo_file
131 num_errors = 0
143 global num_errors
160 num_errors = num_errors + 1
H A DMain.py293 num_errors = Errors.num_errors
332 if Errors.num_errors > num_errors:
368 result.num_errors = Errors.num_errors
369 if result.num_errors > 0:
520 num_errors integer Number of compilation errors
541 num_errors integer Total number of compilation errors
544 num_errors variable in class:CompilationResultSet
[all...]
H A DPipeline.py21 if Errors.num_errors != 0:
337 if Errors.num_errors == 0:
/external/valgrind/main/tests/
H A Dcheck_headers_and_includes86 my $num_errors = 0;
103 my $rc = ($num_errors == 0) ? 0 : 1;
283 ++$num_errors;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dprinter.py41 self.num_errors = 0
134 self.num_errors += 1
180 if self.num_failures or self.num_errors:
181 write('FAILED (failures=%d, errors=%d)\n' % (self.num_failures, self.num_errors))
/external/valgrind/main/none/tests/s390x/
H A Dcu21.c244 int num_errors, i; local
253 num_errors = 0;
255 if (buff[i] != fill_byte) ++num_errors;
256 if (num_errors)
H A Dcu21_1.c244 int num_errors, i; local
253 num_errors = 0;
255 if (buff[i] != fill_byte) ++num_errors;
256 if (num_errors)
H A Dcu41.c233 int num_errors, i; local
242 num_errors = 0;
244 if (((unsigned char *)buff)[i] != fill_byte) ++num_errors;
245 if (num_errors)
H A Dcu42.c210 int num_errors, i; local
219 num_errors = 0;
221 if (((unsigned char *)buff)[i] != fill_byte) ++num_errors;
222 if (num_errors)
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_oauth2_token_service_unittest.cc168 void AssertConsumerTokensAndErrors(int num_tokens, int num_errors);
237 int num_errors) {
239 EXPECT_EQ(num_errors, consumer_.number_of_errors_);
235 AssertConsumerTokensAndErrors( int num_tokens, int num_errors) argument
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
H A Dnacltest.js175 this.num_errors = 0;
180 if (this.num_passed == 0 && this.num_failed == 0 && this.num_errors == 0) {
186 full_message += ', ' + this.num_errors + ' errors';
206 this.num_errors += 1;
260 this.num_errors += 1;
/external/chromium_org/third_party/cython/src/Cython/Build/
H A DBuildExecutable.py88 if result.num_errors > 0:

Completed in 6946 milliseconds

12