HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 1 - 25 of 1189) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libbrillo/brillo/streams/
stream_errors.h 11 namespace errors { namespace in namespace:brillo
14 // Error domain for generic stream-based errors.
24 } // namespace errors
  /prebuilts/go/darwin-x86/src/errors/
errors.go 5 // Package errors implements functions to manipulate errors.
6 package errors package
  /prebuilts/go/linux-x86/src/errors/
errors.go 5 // Package errors implements functions to manipulate errors.
6 package errors package
  /external/e2fsprogs/lib/ext2fs/
tst_byteswap.c 51 int errors = 0; local
61 errors++;
66 errors++;
79 errors++;
84 errors++;
89 if (!errors)
90 printf("No errors found in the byteswap implementation!\n");
92 return errors;
  /external/python/cpython3/Lib/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
43 errors.append("%s appeared to hang" % name)
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
ErrorsTest.java 28 Errors errors = new Errors(); local
29 assertTrue(errors.isEmpty());
30 assertFalse(errors.hasError());
31 assertFalse(errors.hasFatal());
33 errors.addWarning("Hello");
34 assertFalse(errors.isEmpty());
35 assertFalse(errors.hasError());
36 assertFalse(errors.hasFatal())
43 Errors errors = new Errors(); local
58 Errors errors = new Errors(); local
73 Errors errors = new Errors(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
TimingsTraceLogTest.java 46 final List<String> errors = new ArrayList<>(); local
51 errors.add("traceBegin should fail on a different thread");
56 errors.add("traceEnd should fail on a different thread");
67 assertTrue(errors.toString(), errors.isEmpty());
  /cts/hostsidetests/incident/apps/errorsapp/src/com/android/server/cts/errors/
ExceptionActivity.java 17 package com.android.server.cts.errors;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /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...]
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...]
  /external/libbrillo/brillo/errors/
error_codes.h 11 #include <brillo/errors/error.h>
14 namespace errors { namespace in namespace:brillo
40 } // namespace errors
  /external/python/cpython2/Lib/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /external/vboot_reference/tests/tpm_lite/
tpmtest_timing.c 32 errors++; \
48 int errors = 0; local
61 if (time_limit_exceeded || errors > 0) {
  /external/wpa_supplicant_8/src/common/
ctrl_iface_common.h 25 int errors; member in struct:wpa_ctrl_dst
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /prebuilts/go/darwin-x86/test/intrinsic.dir/
main.go 15 var errors int var
18 errors++
20 if errors > 100 { // 100 is enough spewage
21 panic("100 errors is plenty is enough")
  /prebuilts/go/linux-x86/test/intrinsic.dir/
main.go 15 var errors int var
18 errors++
20 if errors > 100 { // 100 is enough spewage
21 panic("100 errors is plenty is enough")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 5 # is appended to the module-global `errors` list. That list remains empty
15 errors = [] variable
42 errors.append("%s appeared to hang" % name)
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProvideUtils.java 22 import com.google.inject.internal.Errors;
46 Errors errors = new Errors(rawType); local
51 errors.addMessage("%s has more than one constructor annotated with @ThrowingInject. "
57 errors, cxtor, ((AnnotatedElement) cxtor).getAnnotations());
59 errors.misplacedBindingAnnotation(cxtor, misplacedBindingAnnotation);
65 errors.addMessage(
69 for (Message msg : errors.getMessages()) {
75 /** Adds errors to the binder if the exceptions aren't valid. *
    [all...]
  /external/junit/src/main/java/org/junit/experimental/categories/
CategoryValidator.java 21 * Validates that there are no errors in the use of the {@code Category}
23 * of errors.
34 * Adds to {@code errors} a throwable for each problem detected. Looks for
45 List<Exception> errors = new ArrayList<Exception>(); local
50 addErrorMessage(errors, clazz);
54 return unmodifiableList(errors);
57 private void addErrorMessage(List<Exception> errors, Class<?> clazz) {
60 errors.add(new Exception(message));
  /external/junit/src/main/java/org/junit/runners/model/
NoGenericTypeParametersValidator.java 18 void validate(List<Throwable> errors) {
20 validateNoTypeParameterOnType(each, errors);
24 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) {
26 errors.add(new Exception("Method " + method.getName()
29 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors);
31 validateNoTypeParameterOnWildcardType((WildcardType) type, errors);
33 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors);
38 List<Throwable> errors) {
40 validateNoTypeParameterOnType(each, errors);
45 List<Throwable> errors) {
56 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors); local
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 29 private final List errors = new ArrayList(); field in class:DOMErrorMonitor
44 errors.add(new DOMErrorImpl(error));
49 * Gets list of errors
51 * @return return errors
54 return new ArrayList(errors);
58 Iterator iter = errors.iterator();

Completed in 561 milliseconds

1 2 3 4 5 6 7 8 91011>>