/external/libunwind/tests/ |
Gtest-nomalloc.c | 34 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);
|
Ltest-nocalloc.c | 113 int i, num_errors; local 127 num_errors = num_mallocs + num_callocs; 128 if (num_errors > 0) 132 num_errors, num_errors > 1 ? "s" : "",
|
Gtest-trace.c | 48 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);
|
check-namespace.sh.in | 11 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"
|
Gtest-bt.c | 49 int num_errors; variable 111 ++num_errors; 248 if (num_errors > 0) 250 fprintf (stderr, "FAILURE: detected %d errors\n", num_errors);
|
/external/lldb/source/Expression/ |
ClangUtilityFunction.cpp | 114 unsigned num_errors = parser.Parse (error_stream); local 116 if (num_errors) 118 error_stream.Printf ("error: %d errors parsing expression\n", num_errors);
|
ClangExpressionParser.cpp | 408 int num_errors = 0; local 415 num_errors = 0; 421 num_errors++; 430 if (!num_errors) 435 num_errors++; 439 return num_errors;
|
ClangFunction.cpp | 113 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;
|
ClangUserExpression.cpp | 522 unsigned num_errors = parser.Parse (error_stream); local 524 if (num_errors) 526 error_stream.Printf ("error: %d errors parsing expression\n", num_errors); [all...] |
/external/chromium_org/chrome/test/telemetry/ |
run_cros_tests | 19 sys.exit(min(ret + runner.result.num_errors, 255))
|
/external/chromium_org/native_client_sdk/src/tools/lib/tests/ |
quote_test.py | 118 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/ |
com_err.h | 58 int num_errors,
|
com_right.c | 88 int num_errors, 104 tab->n_msgs = num_errors;
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
Errors.py | 116 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
|
Main.py | 293 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...] |
Pipeline.py | 21 if Errors.num_errors != 0: 337 if Errors.num_errors == 0:
|
FusedNode.py | 234 num_errors = Errors.num_errors 239 if Errors.num_errors > num_errors:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
printer.py | 41 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))
|
main.py | 178 return not self.printer.num_errors and not self.printer.num_failures
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_oauth2_token_service_unittest.cc | 168 void AssertConsumerTokensAndErrors(int num_tokens, int num_errors); 237 int num_errors) { 239 EXPECT_EQ(num_errors, consumer_.number_of_errors_);
|
/external/chromium_org/third_party/cython/src/Cython/Build/ |
BuildExecutable.py | 88 if result.num_errors > 0:
|
/external/chromium_org/dbus/ |
end_to_end_async_unittest.cc | 200 void WaitForErrors(size_t num_errors) { 201 while (error_names_.size() < num_errors) {
|
/art/test/701-easy-div-rem/src/ |
Main.java | 18 public static int num_errors = 0; field in class:Main 21 if (num_errors == 10) { 23 } else if (num_errors < 10) { 26 num_errors += 1; [all...] |
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/ |
nacltest.js | 175 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/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
AppleObjCRuntimeV2.cpp | 1772 unsigned num_errors = m_get_class_info_function->CompileFunction(errors); local 2023 unsigned num_errors = m_get_shared_cache_class_info_function->CompileFunction(errors); local [all...] |