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

1 2 3 4 5 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/internal/
ErrorsException.java 21 * should {@link Errors#merge(Errors) merge} the errors from this exception with their existing
22 * errors.
30 private final Errors errors; field in class:ErrorsException
32 public ErrorsException(Errors errors) {
33 this.errors = errors;
    [all...]
CreationListener.java 23 void notify(Errors errors);
  /external/curl/src/
tool_dirhie.h 26 CURLcode create_dir_hierarchy(const char *outfile, FILE *errors);
  /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...]
  /external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
run_tests.py 24 errors = 0
25 errors += TestMojom('data_tests.py', ['--test'])
26 errors += TestMojom('module_tests.py', ['--test'])
27 errors += TestMojom('pack_tests.py', ['--test'])
29 if errors:
31 return min(errors, 127) # Make sure the return value doesn't "wrap".
pack_tests.py 18 errors = 0
24 errors += EXPECT_EQ(2, len(ps.packed_fields))
25 errors += EXPECT_EQ('testfield2', ps.packed_fields[0].field.name)
26 errors += EXPECT_EQ('testfield1', ps.packed_fields[1].field.name)
28 return errors
31 errors = 0
34 errors += EXPECT_EQ(0, len(ps.packed_fields))
35 return errors
39 errors = 0
43 errors += EXPECT_EQ(1, len(ps.packed_fields)
    [all...]
  /external/e2fsprogs/lib/e2p/
pe.c 2 * pe.c - Print a second extended filesystem errors behavior
24 void print_fs_errors (FILE * f, unsigned short errors)
26 switch (errors)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
bz2_codec.py 15 def bz2_encode(input,errors='strict'):
20 errors defines the error handling to apply. It defaults to
25 assert errors == 'strict'
29 def bz2_decode(input,errors='strict'):
38 errors defines the error handling to apply. It defaults to
43 assert errors == 'strict'
49 def encode(self, input, errors='strict'):
50 return bz2_encode(input, errors)
51 def decode(self, input, errors='strict'):
52 return bz2_decode(input, errors)
    [all...]
zlib_codec.py 14 def zlib_encode(input,errors='strict'):
19 errors defines the error handling to apply. It defaults to
24 assert errors == 'strict'
28 def zlib_decode(input,errors='strict'):
37 errors defines the error handling to apply. It defaults to
42 assert errors == 'strict'
48 def encode(self, input, errors='strict'):
49 return zlib_encode(input, errors)
50 def decode(self, input, errors='strict'):
51 return zlib_decode(input, errors)
    [all...]
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
bz2_codec.py 15 def bz2_encode(input,errors='strict'):
20 errors defines the error handling to apply. It defaults to
25 assert errors == 'strict'
29 def bz2_decode(input,errors='strict'):
38 errors defines the error handling to apply. It defaults to
43 assert errors == 'strict'
49 def encode(self, input, errors='strict'):
50 return bz2_encode(input, errors)
51 def decode(self, input, errors='strict'):
52 return bz2_decode(input, errors)
    [all...]
zlib_codec.py 14 def zlib_encode(input,errors='strict'):
19 errors defines the error handling to apply. It defaults to
24 assert errors == 'strict'
28 def zlib_decode(input,errors='strict'):
37 errors defines the error handling to apply. It defaults to
42 assert errors == 'strict'
48 def encode(self, input, errors='strict'):
49 return zlib_encode(input, errors)
50 def decode(self, input, errors='strict'):
51 return zlib_decode(input, errors)
    [all...]
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping)
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/
InitializationError.java 22 public InitializationError(List<Throwable> errors) {
23 this.fErrors = errors;
26 public InitializationError(Throwable... errors) {
27 this(Arrays.asList(errors));
  /external/python/cpython2/Lib/encodings/
bz2_codec.py 15 def bz2_encode(input,errors='strict'):
20 errors defines the error handling to apply. It defaults to
25 assert errors == 'strict'
29 def bz2_decode(input,errors='strict'):
38 errors defines the error handling to apply. It defaults to
43 assert errors == 'strict'
49 def encode(self, input, errors='strict'):
50 return bz2_encode(input, errors)
51 def decode(self, input, errors='strict'):
52 return bz2_decode(input, errors)
    [all...]
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping
    [all...]
  /external/python/cpython3/Lib/encodings/
bz2_codec.py 15 def bz2_encode(input, errors='strict'):
16 assert errors == 'strict'
19 def bz2_decode(input, errors='strict'):
20 assert errors == 'strict'
24 def encode(self, input, errors='strict'):
25 return bz2_encode(input, errors)
26 def decode(self, input, errors='strict'):
27 return bz2_decode(input, errors)
30 def __init__(self, errors='strict'):
31 assert errors == 'strict
    [all...]
zlib_codec.py 13 def zlib_encode(input, errors='strict'):
14 assert errors == 'strict'
17 def zlib_decode(input, errors='strict'):
18 assert errors == 'strict'
22 def encode(self, input, errors='strict'):
23 return zlib_encode(input, errors)
24 def decode(self, input, errors='strict'):
25 return zlib_decode(input, errors)
28 def __init__(self, errors='strict'):
29 assert errors == 'strict
    [all...]
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping
    [all...]
  /external/v8/infra/testing/
PRESUBMIT.py 50 errors = []
53 errors += error_msg('Key "%s" must be one of %s' % (key, supported_keys))
54 return errors
81 errors = []
83 errors += _check_int_range(
85 errors += _check_int_range(
87 errors += _check_int_range(
89 return errors
93 errors = []
94 errors += _check_properties
    [all...]
  /external/python/cpython3/Lib/distutils/tests/
test_log.py 15 for errors in ('strict', 'backslashreplace', 'surrogateescape',
17 with self.subTest(errors=errors):
19 encoding='cp437', errors=errors)
21 encoding='cp437', errors=errors)
33 'D?bug\tM?ss?ge' if errors == 'replace' else
34 'D?bug\tMssge' if errors == 'ignore' else
38 'F?tal\t?rr?r' if errors == 'replace' els
    [all...]
  /external/autotest/client/site_tests/platform_CheckErrorsInLog/
platform_CheckErrorsInLog.py 17 Check system logs for errors.
27 integer: number of errors found.
29 errors = 0
36 errors += 1
40 return errors
44 errors = 0
50 errors += self.search_log(logfile)
54 if errors:
55 raise error.TestFail('%d failures found in logs' % errors)
  /external/selinux/mcstrans/share/util/
mlscolor-test 7 errors = 0
25 errors += 1
30 errors += 1
35 errors += 1
40 if errors == 1:
42 print("mlscolor-test done with %d error%s" % (errors, s))
44 sys.exit(errors)
  /external/junit/src/main/java/org/junit/rules/
TestWatcher.java 51 List<Throwable> errors = new ArrayList<Throwable>();
53 startingQuietly(description, errors);
56 succeededQuietly(description, errors);
58 errors.add(e);
59 skippedQuietly(e, description, errors);
61 errors.add(e);
62 failedQuietly(e, description, errors);
64 finishedQuietly(description, errors);
67 MultipleFailureException.assertEmpty(errors);
73 List<Throwable> 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.sErrors) {
36 Errors.setErrorLevel(error.code, Errors.ERROR)
61 Iterator<ErrorMessage> errors = report.errors().iterator(); local
74 Iterator<ErrorMessage> errors = report.errors().iterator(); local
    [all...]

Completed in 899 milliseconds

1 2 3 4 5 6 7 8 91011>>