HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 26 - 50 of 1103) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/internal/
MembersInjectorImpl.java 60 Errors errors = new Errors(typeLiteral); local
62 injectAndNotify(instance, errors, null, null, typeLiteral, false);
64 errors.merge(e.getErrors());
67 errors.throwProvisionExceptionIfErrorsExist();
71 final Errors errors,
86 provisionCallback.provision(errors, context, new ProvisionCallback<T>() {
88 injectMembers(instance, errors, context, toolableOnly)
    [all...]
AbstractBindingProcessor.java 60 AbstractBindingProcessor(Errors errors, ProcessedBindingData bindingData) {
61 super(errors);
75 errors.cannotBindToGuiceType(rawType.getSimpleName());
85 errors.bindingAlreadySet(key, original.getSource());
89 errors.errorCheckingDuplicateBinding(key, original.getSource(), t);
95 errors.jitBindingAlreadySet(key);
131 key.getTypeLiteral().getRawType(), source, errors); local
153 scoping = Scoping.makeInjectable(scoping, injector, errors);
160 binding.getInjector().initializeBinding(binding, errors.withSource(source))
    [all...]
ProviderToInternalFactoryAdapter.java 38 final Errors errors = new Errors(); local
46 return internalFactory.get(errors, context, dependency, true);
49 errors.throwIfNewErrors(0);
52 throw new ProvisionException(errors.merge(e.getErrors()).getMessages());
ScopeBindingProcessor.java 34 ScopeBindingProcessor(Errors errors) {
35 super(errors);
43 errors.missingScopeAnnotation(annotationType);
44 // Go ahead and bind anyway so we don't get collateral errors.
48 errors.missingRuntimeRetention(annotationType);
49 // Go ahead and bind anyway so we don't get collateral errors.
55 errors.duplicateScopes(existing, annotationType, scope);
  /external/junit/src/main/java/org/junit/rules/
ErrorCollector.java 35 private List<Throwable> errors = new ArrayList<Throwable>(); field in class:ErrorCollector
39 MultipleFailureException.assertEmpty(errors);
46 errors.add(error);
  /external/libbrillo/brillo/streams/
stream_errors.cc 8 namespace errors { namespace in namespace:brillo
20 } // namespace errors
  /external/libexif/test/
test-integers.c 43 errors++; \
55 unsigned int errors = 0; local
63 return (errors>0)?1:0;
  /hardware/interfaces/tests/pointer/1.0/default/
Graph.h 34 std::vector<std::string> errors; member in struct:android::hardware::tests::pointer::V1_0::implementation::Graph
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
Logger.h 44 // missing/TBD functionalities, warnings, and errors.
57 void error(const std::string& e) { errors.push_back(e); }
60 // TBD functionalities, missing functionalities, warnings, errors.
69 std::vector<std::string> errors; member in class:spv::SpvBuildLogger
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
Logger.h 44 // missing/TBD functionalities, warnings, and errors.
57 void error(const std::string& e) { errors.push_back(e); }
60 // TBD functionalities, missing functionalities, warnings, errors.
69 std::vector<std::string> errors; member in class:spv::SpvBuildLogger
  /external/junit/src/main/java/org/junit/internal/runners/
MethodValidator.java 24 private final List<Throwable> errors = new ArrayList<Throwable>(); field in class:MethodValidator
39 errors.add(new Exception("No runnable methods"));
52 return errors;
56 if (!errors.isEmpty()) {
57 throw new InitializationError(errors);
65 errors.add(new Exception("Test class should have public zero-argument constructor", e));
76 errors.add(new Exception("Method " + each.getName() + "() "
80 errors.add(new Exception("Class " + each.getDeclaringClass().getName()
84 errors.add(new Exception("Method " + each.getName()
88 errors.add(new Exception("Method " + each.getName(
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
ErrorQueue.java 39 List errors = new LinkedList(); field in class:ErrorQueue
47 errors.add(msg);
55 errors.add(msg);
59 return infos.size() + errors.size() + warnings.size();
64 "errors: "+errors+
  /external/fec/
dtest.c 29 int errors = 0; local
94 errors++;
97 printf("dtest: %d errors\n",errors);
exercise.c 7 #define FLAG_ERASURE 1 /* Randomly flag 50% of errors as erasures */
47 int errors; local
57 for(errors=0;errors <= NROOTS/2;errors++){
69 /* Make temp copy, seed with errors */
74 for(i=0;i<errors;i++){
99 if(derrors != errors){
101 printf(" decoder says %d errors, true number is %d\n",derrors,errors);
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/googletest/googletest/src/
gtest-typed-test.cc 67 Message errors; local
74 errors << "Test " << name << " is listed more than once.\n";
91 errors << "No test named " << name
100 errors << "You forgot to list test " << it->first << ".\n";
104 const std::string& errors_str = errors.GetString();
  /external/icu/icu4c/source/common/unicode/
idna.h 98 * The label might be modified according to the types of errors.
99 * Labels with severe errors will be left in (or turned into) their Unicode form.
121 * The label might be modified according to the types of errors.
144 * The domain name might be modified according to the types of errors.
145 * Labels with severe errors will be left in (or turned into) their Unicode form.
167 * The domain name might be modified according to the types of errors.
264 * Output container for IDNA processing errors.
274 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
276 * Were there IDNA processing errors?
277 * @return TRUE if there were processing errors
316 uint32_t errors, labelErrors; member in class:IDNAInfo
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/statements/
RunAfters.java 25 List<Throwable> errors = new ArrayList<Throwable>(); local
29 errors.add(e);
35 errors.add(e);
39 MultipleFailureException.assertEmpty(errors);
  /external/junit-params/src/test/java/junitparams/
RulesTest.java 25 public ErrorCollector errors = new ErrorCollector(); field in class:RulesTest
  /external/libbrillo/brillo/dbus/
utils.cc 11 #include <brillo/errors/error_codes.h>
34 if (error->GetDomain() == errors::dbus::kDomain) {
40 // Append any inner errors to the error message.
56 std::vector<std::tuple<std::string, std::string, std::string>> errors; local
68 errors.emplace_back(domain, code, message);
70 colon_pos == std::string::npos && errors.empty()) {
73 errors.emplace_back(errors::dbus::kDomain, dbus_error_name, part);
78 errors.clear(); // Remove any errors accumulated so far
    [all...]
  /external/libcups/cups/
testlang.c 33 int errors = 0; /* Number of errors */ local
66 errors ++;
101 errors ++;
115 errors ++;
124 errors ++;
133 errors ++;
145 return (errors > 0);
  /external/libunwind/tests/
test-proc-info.c 41 int errors; variable
44 { ++errors; fprintf (stderr, args); return -1; }
102 ++errors;
  /external/libvorbis/test/
test.c 40 int errors = 0 ; local
63 errors ++ ;
73 if (errors)
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-typed-test.cc 67 Message errors; local
74 errors << "Test " << name << " is listed more than once.\n";
91 errors << "No test named " << name
100 errors << "You forgot to list test " << it->first << ".\n";
104 const std::string& errors_str = errors.GetString();
  /external/llvm/utils/unittest/googletest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();

Completed in 1749 milliseconds

12 3 4 5 6 7 8 91011>>