Searched defs:errors (Results 151 - 175 of 315) sorted by relevance

1234567891011>>

/external/junit/src/org/junit/runners/
H A DParentRunner.java105 * Adds to {@code errors} a throwable for each problem noted with the test class (available from {@link #getTestClass()}).
110 protected void collectInitializationErrors(List<Throwable> errors) { argument
111 validatePublicVoidNoArgMethods(BeforeClass.class, true, errors);
112 validatePublicVoidNoArgMethods(AfterClass.class, true, errors);
113 validateClassRules(errors);
117 * Adds to {@code errors} if any method in this class is annotated with
127 boolean isStatic, List<Throwable> errors) {
131 eachTestMethod.validatePublicVoidNoArg(isStatic, errors);
134 private void validateClassRules(List<Throwable> errors) { argument
135 CLASS_RULE_VALIDATOR.validate(getTestClass(), errors);
126 validatePublicVoidNoArgMethods(Class<? extends Annotation> annotation, boolean isStatic, List<Throwable> errors) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dvirtio_blk.h120 __u32 errors; member in struct:virtio_scsi_inhdr
/external/lldb/source/Expression/
H A DClangFunction.cpp107 ClangFunction::CompileFunction (Stream &errors) argument
177 errors.Printf("Could not determine type of input value %lu.", i);
228 num_errors = m_parser->Parse (errors);
232 errors.Printf("no process - unable to inject function");
245 ClangFunction::WriteFunctionWrapper (ExecutionContext &exe_ctx, Stream &errors) argument
284 ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors) argument
286 return WriteFunctionArguments(exe_ctx, args_addr_ref, m_function_addr, m_arg_values, errors);
296 Stream &errors)
302 errors.Printf("Argument information was not correctly parsed, so the function cannot be called.");
348 errors
292 WriteFunctionArguments(ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Address function_address, ValueList &arg_values, Stream &errors) argument
378 InsertFunction(ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors) argument
397 GetThreadPlanToCallFunction(ExecutionContext &exe_ctx, lldb::addr_t func_addr, lldb::addr_t &args_addr, Stream &errors, bool stop_others, bool unwind_on_error, bool ignore_breakpoints, lldb::addr_t *this_arg, lldb::addr_t *cmd_arg) argument
483 ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, Value &results) argument
489 ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, bool stop_others, Value &results) argument
499 ExecuteFunction( ExecutionContext &exe_ctx, Stream &errors, uint32_t timeout_usec, bool try_all_threads, Value &results) argument
515 ExecuteFunction( ExecutionContext &exe_ctx, lldb::addr_t function_address, lldb::addr_t &void_arg, bool stop_others, bool try_all_threads, bool unwind_on_error, bool ignore_breakpoints, uint32_t timeout_usec, Stream &errors, lldb::addr_t *this_arg) argument
575 ExecuteFunction( ExecutionContext &exe_ctx, lldb::addr_t *args_addr_ptr, Stream &errors, bool stop_others, uint32_t timeout_usec, bool try_all_threads, bool unwind_on_error, bool ignore_breakpoints, Value &results) argument
[all...]
/external/lldb/source/Target/
H A DThreadPlanStepOut.cpp435 StreamString errors; local
436 if (!step_through_inline_plan_ptr->ValidatePlan(&errors))
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c58 uint errors; member in struct:sanity_check_ctx
165 ctx->errors++;
512 if (ctx->errors || ctx->warnings)
513 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings );
552 ctx.errors = 0;
563 return ctx.errors == 0;
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc954 vector<string> errors; local
959 errors = error_log.GetMessages(ERROR);
962 ASSERT_EQ(1, errors.size());
964 "A protocol message was rejected because it was too big", errors[0]);
1082 vector<string> errors; local
1090 errors = error_log.GetMessages(ERROR);
1094 EXPECT_EQ(0, errors.size());
H A Dtokenizer_unittest.cc153 // An error collector which simply concatenates all its errors into a big
281 // There should be no errors.
311 // There should be no errors.
452 // There should be no errors.
486 // There should be no errors.
620 const char* errors; member in struct:google::protobuf::io::__anon28990::ErrorCase
629 // String errors.
639 // Integer errors.
643 // Hex/octal errors.
655 // Float errors
[all...]
/external/protobuf/src/google/protobuf/
H A Dmessage.cc95 void Message::FindInitializationErrors(vector<string>* errors) const {
96 return ReflectionOps::FindInitializationErrors(*this, "", errors);
100 vector<string> errors; local
101 FindInitializationErrors(&errors);
102 return JoinStrings(errors, ", ");
H A Dtext_format_unittest.cc684 // An error collector which simply concatenates all its errors into a big
990 vector<string> errors; local
996 errors = log.GetMessages(ERROR);
999 ASSERT_EQ(1, errors.size());
1003 errors[0]);
1007 vector<string> errors; local
1013 errors = log.GetMessages(ERROR);
1016 ASSERT_EQ(1, errors.size());
1019 errors[0]);
H A Dwire_format_unittest.cc806 vector<string> errors; local
810 errors = log.GetMessages(ERROR);
813 ASSERT_EQ(1, errors.size());
817 errors[0]);
820 ASSERT_EQ(0, errors.size());
829 vector<string> errors; local
833 errors = log.GetMessages(ERROR);
836 ASSERT_EQ(1, errors.size());
840 errors[0]);
843 ASSERT_EQ(0, errors
850 vector<string> errors; local
864 vector<string> errors; local
878 vector<string> errors; local
892 vector<string> errors; local
[all...]
/external/skia/tests/
H A DCachedDecodingPixelRefTest.cpp232 int errors = 0; local
236 ++errors;
240 REPORTER_ASSERT(reporter, 0 == errors);
H A DPathOpsCubicLineIntersectionIdeas.cpp45 /* last output : errors=3121
142 int errors = 0; local
237 ++errors;
239 SkDebugf("errors=%d avgIter=%1.9g", errors, (double) iters / errors);
/external/strace/
H A Dcount.c42 int calls, errors; member in struct:call_counts
70 cc->errors++;
170 "calls", "errors", "syscall");
189 error_cum += counts[i].errors;
204 if (cc->errors)
205 sprintf(error_str, "%u", cc->errors);
/external/stressapptest/src/
H A Dos.h93 // Polls for errors. This implementation is optional.
94 // This will poll once for errors and return zero iff no errors were found.
100 // Report errors. This implementation is mandatory.
113 // Flushes cacheline. Used to distinguish read or write errors.
218 // Causes false errors for unittesting.
219 // Setting to "true" causes errors to be injected.
220 void set_error_injection(bool errors) { error_injection_ = errors; } argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c40 int errors; member in struct:wpa_ctrl_dst
486 dst->errors++;
487 if (dst->errors > 10) {
493 dst->errors = 0;
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_api.c1018 ** errors - receive error codes
1021 int PORT_SendError (UINT16 handle, UINT8 errors) argument
1025 RFCOMM_TRACE_API ("PORT_SendError() handle:%d errors:0x%x", handle, errors);
1044 RFCOMM_LineStatusReq (p_port->rfc.p_mcb, p_port->dlci, errors);
/external/chromium_org/base/memory/
H A Dshared_memory_unittest.cc640 int errors = 0; local
649 errors++;
653 errors++;
662 errors++;
667 return errors;
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_launcher_browsertest.cc74 std::vector<std::string> errors; local
75 errors.push_back(requirements_error_);
76 OnRequirementsCheckDone(sequence_number, errors);
/external/chromium_org/chrome/browser/extensions/error_console/
H A Derror_console_browsertest.cc115 false, // manifest errors are never from incognito.
133 // A helper class in order to wait for the proper number of errors to be
135 // number of errors are observed.
139 // <Cause three errors...>
169 // Spin until the appropriate number of errors have been observed.
189 // cause any errors.
197 // Do nothing (errors will be caused by a background script,
206 // errors. This should be enabled on any channel <= Dev, but let's make
233 // |expected_errors| errors. Populate |extension| with a pointer to the loaded
269 // We should only have errors fo
299 const ErrorList& errors = local
378 const ErrorList& errors = local
436 const ErrorList& errors = local
475 const ErrorList& errors = local
514 const ErrorList& errors = local
559 const ErrorList& errors = local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_browsertest.cc526 const std::vector<base::string16>* errors = local
528 for (std::vector<base::string16>::const_iterator iter = errors->begin();
529 iter != errors->end(); ++iter)
H A Dextension_install_checker_unittest.cc52 std::vector<std::string> errors; local
54 errors.push_back(requirements_error_);
55 OnRequirementsCheckDone(sequence_number, errors);
91 // Dummy errors for testing.
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_menu_model.cc660 // how update the menu if new errors are added.
667 const GlobalErrorService::GlobalErrorList& errors = local
668 GlobalErrorServiceFactory::GetForProfile(browser_->profile())->errors();
670 it = errors.begin(); it != errors.end(); ++it) {
/external/chromium_org/chromeos/network/
H A Dshill_property_handler_unittest.cc119 int errors() { return errors_; } function in class:chromeos::__anon6227::TestListener
315 EXPECT_EQ(0, listener_->errors());
346 EXPECT_EQ(0, listener_->errors());
370 EXPECT_EQ(0, listener_->errors());
422 EXPECT_EQ(0, listener_->errors());
/external/chromium_org/components/sync_driver/
H A Ddata_type_manager_impl.cc98 std::map<syncer::ModelType, syncer::SyncError> errors; local
99 errors[type.Get()] = error;
100 data_type_status_table_.UpdateFailedDataTypes(errors);
174 // 1. Get the failed types (due to fatal, crypto, and unready errors).
189 // Types with persistence errors are only purged/resynced when they're
195 // Types with unready errors do not count as unready if they've been disabled.
238 // Check for new or resolved data type crypto errors.
355 // Persistence errors are reset after each backend configuration attempt
370 DataTypeStatusTable::TypeErrorMap errors; local
378 errors[ite
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Duts46test.cpp118 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s",
145 errln("N.labelToASCII(label-with-dot) failed with errors %04lx - %s",
218 errln("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %04lx string %s",
232 errln("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %04lx string %s",
242 uint32_t errors; member in struct:TestCase
468 // hyphen errors and empty-label errors
600 // ToUnicode does not set length errors.
601 uint32_t uniErrors=testCase.errors&~
608 errln("N.nameToUnicode([%d] %s) unexpected errors
[all...]

Completed in 1163 milliseconds

1234567891011>>