HomeSort by relevance Sort by last modified time
    Searched refs:Errors (Results 1 - 25 of 757) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/internal/
ErrorsException.java 22 * should {@link Errors#merge(Errors) merge} the errors from this exception with their existing
23 * errors.
29 private final Errors errors; field in class:ErrorsException
31 public ErrorsException(Errors errors) {
32 this.errors = errors;
    [all...]
CreationListener.java 23 void notify(Errors errors);
DelayedInitialize.java 28 /** Initializes this binding, throwing any errors if necessary. */
29 void initialize(InjectorImpl injector, Errors errors) throws ErrorsException;
Initializable.java 29 T get(Errors errors) throws ErrorsException;
ErrorHandler.java 22 * Handles errors in the Injector.
31 void handle(Object source, Errors errors);
SingleMemberInjector.java 25 void inject(Errors errors, InternalContext context, Object o);
FailableCache.java 24 * Lazily creates (and caches) values for keys. If creating the value fails (with errors), an
34 Errors errors = new Errors();
37 result = FailableCache.this.create(key, errors);
39 errors.merge(e.getErrors());
41 return errors.hasErrors() ? errors : result;
45 protected abstract V create(K key, Errors errors) throws ErrorsException
    [all...]
Errors.java 65 * considered to have executed successfully only if new errors were not added to this collection.
67 * <p>Errors can be chained to provide additional context. To add context, call {@link #withSource}
68 * to create a new Errors instance that contains additional context. All messages added to the
74 * method with an errors object that includes its context.
78 public final class Errors implements Serializable {
87 * The root errors object. Used to access the list of error messages.
89 private final Errors root;
92 * The parent errors object. Used to obtain the chain of source objects.
94 private final Errors parent;
97 * The leaf source for errors added here
104 private List<Message> errors; \/\/ lazy, use getErrorsForAdd() field in class:Errors
342 Errors errors = addMessage( local
    [all...]
Initializables.java 29 public T get(Errors errors) throws ErrorsException {
InterceptorBindingProcessor.java 29 InterceptorBindingProcessor(Errors errors) {
30 super(errors);
InternalFactory.java 36 T get(Errors errors, InternalContext context, Dependency<?> dependency, boolean linked)
ModuleAnnotatedMethodScannerProcessor.java 28 ModuleAnnotatedMethodScannerProcessor(Errors errors) {
29 super(errors);
  /hardware/qcom/camera/QCamera2/HAL/android/
QCamera2External.h 34 #include <utils/Errors.h>
  /hardware/qcom/camera/QCamera2/HAL3/android/
QCamera3External.h 34 #include <utils/Errors.h>
  /system/core/include/utils/
Functor.h 20 #include <utils/Errors.h>
  /hardware/ti/omap4-aah/libtiutils/
ErrorUtils.h 21 #include <utils/Errors.h>
42 ///Method to convert from POSIX to Android errors
45 ///Method to convert from TI OSAL to Android errors
48 ///Method to convert from OMX to Android errors
  /hardware/ti/omap4xxx/libtiutils/
ErrorUtils.h 21 #include <utils/Errors.h>
39 ///Method to convert from POSIX to Android errors
42 ///Method to convert from TI OSAL to Android errors
45 ///Method to convert from OMX to Android errors
  /system/vold/
Benchmark.h 20 #include <utils/Errors.h>
  /toolchain/binutils/binutils-2.25/gold/
errors.h 0 // errors.h -- handle errors for gold -*- C++ -*-
37 // This class handles errors for gold. There is a single instance
43 class Errors
46 Errors(const char* program_name);
93 // Return the number of errors.
104 Errors(const Errors&);
105 Errors& operator=(const Errors&)
    [all...]
parameters.h 30 class Errors;
40 // 1) An Errors struct. Any part of the code that wants to log an
41 // error can use parameters->errors().
58 set_errors(Errors* errors);
73 Errors*
74 errors() const function in class:gold::Parameters
191 Errors* errors_;
209 set_parameters_errors(Errors* errors);
    [all...]
  /external/doclava/test/doclava/
ApiCheckTest.java 19 import com.google.doclava.Errors;
20 import com.google.doclava.Errors.Error;
21 import com.google.doclava.Errors.ErrorMessage;
31 * Clear all errors and make sure all future errors will be recorded.
34 Errors.clearErrors();
35 for (Errors.Error error : Errors.ERRORS) {
36 Errors.setErrorLevel(error.code, Errors.ERROR)
61 Iterator<ErrorMessage> errors = report.errors().iterator(); local
74 Iterator<ErrorMessage> errors = report.errors().iterator(); local
    [all...]
  /external/clang/include/clang/Frontend/
TextDiagnosticBuffer.h 31 DiagList Errors, Warnings, Remarks, Notes;
33 const_iterator err_begin() const { return Errors.begin(); }
34 const_iterator err_end() const { return Errors.end(); }
  /external/guice/core/src/com/google/inject/
ConfigurationException.java 22 import com.google.inject.internal.Errors;
42 initCause(Errors.getOnlyCause(this.messages));
54 /** Returns messages for the errors that caused this exception. */
72 return Errors.format("Guice configuration errors", messages);
CreationException.java 22 import com.google.inject.internal.Errors;
28 * Thrown when errors occur while creating a {@link Injector}. Includes a list of encountered
29 * errors. Clients should catch this exception, log it, and stop execution.
41 initCause(Errors.getOnlyCause(this.messages));
44 /** Returns messages for the errors that caused this exception. */
50 return Errors.format("Unable to create injector, see the following errors", messages);
ProvisionException.java 22 import com.google.inject.internal.Errors;
42 initCause(Errors.getOnlyCause(this.messages));
54 /** Returns messages for the errors that caused this exception. */
60 return Errors.format("Unable to provision, see the following errors", messages);

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011>>