/external/tcpdump/tests/ |
D | sflow_multiple_counter_30_pdus.out | 8 In errors 0, unknown protos 0 10 Out errors 0, promisc mode 2 12 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 14 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 20 In errors 0, unknown protos 0 22 Out errors 0, promisc mode 2 24 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 26 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 32 In errors 0, unknown protos 0 34 Out errors 0, promisc mode 2 [all …]
|
/external/doclava/test/doclava/ |
D | ApiCheckTest.java | 44 assertEquals(report.errors().size(), 0); in testEquivalentApi() 51 assertEquals(1, report.errors().size()); in testMethodReturnTypeChanged() 52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error()); in testMethodReturnTypeChanged() 59 assertEquals(2, report.errors().size()); in testMethodParameterChanged() 61 Iterator<ErrorMessage> errors = report.errors().iterator(); in testMethodParameterChanged() local 62 ErrorMessage m1 = errors.next(); in testMethodParameterChanged() 63 ErrorMessage m2 = errors.next(); in testMethodParameterChanged() 73 assertEquals(2, report.errors().size()); in testConstructorParameterChanged() 74 Iterator<ErrorMessage> errors = report.errors().iterator(); in testConstructorParameterChanged() local 75 ErrorMessage m1 = errors.next(); in testConstructorParameterChanged() [all …]
|
/external/python/cpython3/Modules/clinic/ |
D | _codecsmodule.c.h | 62 const char *errors); 72 const char *errors = NULL; in _codecs_encode() local 75 &obj, &encoding, &errors)) { in _codecs_encode() 78 return_value = _codecs_encode_impl(module, obj, encoding, errors); in _codecs_encode() 101 const char *errors); 111 const char *errors = NULL; in _codecs_decode() local 114 &obj, &encoding, &errors)) { in _codecs_decode() 117 return_value = _codecs_decode_impl(module, obj, encoding, errors); in _codecs_decode() 160 const char *errors); 167 const char *errors = NULL; in _codecs_escape_decode() local [all …]
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | 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 …]
|
D | test_support.py | 126 errors = 0 128 errors += EXPECT_EQ('test', module.name) 129 errors += EXPECT_EQ('testspace', module.namespace) 130 errors += EXPECT_EQ(1, len(module.structs)) 131 errors += EXPECT_EQ('teststruct', module.structs[0].name) 132 errors += EXPECT_EQ(2, len(module.structs[0].fields)) 133 errors += EXPECT_EQ('testfield1', module.structs[0].fields[0].name) 134 errors += EXPECT_EQ(mojom.INT32, module.structs[0].fields[0].kind) 135 errors += EXPECT_EQ('testfield2', module.structs[0].fields[1].name) 136 errors += EXPECT_EQ(mojom.Array, module.structs[0].fields[1].kind.__class__) [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | errors_test.py | 28 from tensorflow.python.framework import errors 51 (errors.CANCELLED, errors_impl.CancelledError), 52 (errors.UNKNOWN, errors_impl.UnknownError), 53 (errors.INVALID_ARGUMENT, errors_impl.InvalidArgumentError), 54 (errors.DEADLINE_EXCEEDED, errors_impl.DeadlineExceededError), 55 (errors.NOT_FOUND, errors_impl.NotFoundError), 56 (errors.ALREADY_EXISTS, errors_impl.AlreadyExistsError), 57 (errors.PERMISSION_DENIED, errors_impl.PermissionDeniedError), 58 (errors.UNAUTHENTICATED, errors_impl.UnauthenticatedError), 59 (errors.RESOURCE_EXHAUSTED, errors_impl.ResourceExhaustedError), [all …]
|
/external/python/cpython3/Modules/ |
D | _codecsmodule.c | 104 const char *errors) in _codecs_encode_impl() argument 111 return PyCodec_Encode(obj, encoding, errors); in _codecs_encode_impl() 131 const char *errors) in _codecs_decode_impl() argument 138 return PyCodec_Decode(obj, encoding, errors); in _codecs_decode_impl() 181 const char *errors) in _codecs_escape_decode_impl() argument 185 errors, 0, NULL); in _codecs_escape_decode_impl() 198 const char *errors) in _codecs_escape_encode_impl() argument 262 const char *errors) in _codecs_unicode_internal_decode_impl() argument 278 _PyUnicode_DecodeUnicodeInternal(view.buf, view.len, errors), in _codecs_unicode_internal_decode_impl() 295 const char *errors, int final) in _codecs_utf_7_decode_impl() argument [all …]
|
/external/python/cpython2/Modules/ |
D | _codecsmodule.c | 91 const char *errors = NULL; in codec_encode() local 94 if (!PyArg_ParseTuple(args, "O|ss:encode", &v, &encoding, &errors)) in codec_encode() 108 return PyCodec_Encode(v, encoding, errors); in codec_encode() 125 const char *errors = NULL; in codec_decode() local 128 if (!PyArg_ParseTuple(args, "O|ss:decode", &v, &encoding, &errors)) in codec_decode() 142 return PyCodec_Decode(v, encoding, errors); in codec_decode() 164 const char *errors = NULL; in escape_decode() local 169 &data, &size, &errors)) in escape_decode() 171 return codec_tuple(PyString_DecodeEscape(data, size, errors, 0, NULL), in escape_decode() 180 const char *errors = NULL; in escape_encode() local [all …]
|
/external/v8/infra/testing/ |
D | 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/chromium-trace/catapult/common/eslint/tests/ |
D | catapult-camelcase.js | 95 errors: [ property 104 errors: [ property 113 errors: [ property 122 errors: [ property 131 errors: [ property 140 errors: [ property 149 errors: [ property 158 errors: [ property 167 errors: [ property 176 errors: [ property [all …]
|
/external/wpa_supplicant_8/src/utils/ |
D | utils_module_tests.c | 51 int errors = 0; in printf_encode_decode_tests() local 66 errors++; in printf_encode_decode_tests() 74 errors++; in printf_encode_decode_tests() 82 errors++; in printf_encode_decode_tests() 91 errors++; in printf_encode_decode_tests() 96 errors++; in printf_encode_decode_tests() 99 errors++; in printf_encode_decode_tests() 102 errors++; in printf_encode_decode_tests() 105 errors++; in printf_encode_decode_tests() 114 errors++; in printf_encode_decode_tests() [all …]
|
/external/junit/src/main/java/org/junit/rules/ |
D | TestWatcher.java | 51 List<Throwable> errors = new ArrayList<Throwable>(); in apply() 53 startingQuietly(description, errors); in apply() 56 succeededQuietly(description, errors); in apply() 58 errors.add(e); in apply() 59 skippedQuietly(e, description, errors); in apply() 61 errors.add(e); in apply() 62 failedQuietly(e, description, errors); in apply() 64 finishedQuietly(description, errors); in apply() 67 MultipleFailureException.assertEmpty(errors); in apply() 73 List<Throwable> errors) { [all …]
|
/external/python/cpython2/Lib/encodings/ |
D | bz2_codec.py | 15 def bz2_encode(input,errors='strict'): argument 25 assert errors == 'strict' 29 def bz2_decode(input,errors='strict'): argument 43 assert errors == 'strict' 49 def encode(self, input, errors='strict'): argument 50 return bz2_encode(input, errors) 51 def decode(self, input, errors='strict'): argument 52 return bz2_decode(input, errors) 55 def __init__(self, errors='strict'): argument 56 assert errors == 'strict' [all …]
|
D | zlib_codec.py | 14 def zlib_encode(input,errors='strict'): argument 24 assert errors == 'strict' 28 def zlib_decode(input,errors='strict'): argument 42 assert errors == 'strict' 48 def encode(self, input, errors='strict'): argument 49 return zlib_encode(input, errors) 50 def decode(self, input, errors='strict'): argument 51 return zlib_decode(input, errors) 54 def __init__(self, errors='strict'): argument 55 assert errors == 'strict' [all …]
|
D | utf_8_sig.py | 14 def encode(input, errors='strict'): argument 15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], len(input)) 17 def decode(input, errors='strict'): argument 22 (output, consumed) = codecs.utf_8_decode(input, errors, True) 26 def __init__(self, errors='strict'): argument 27 codecs.IncrementalEncoder.__init__(self, errors) 33 return codecs.BOM_UTF8 + codecs.utf_8_encode(input, self.errors)[0] 35 return codecs.utf_8_encode(input, self.errors)[0] 48 def __init__(self, errors='strict'): argument 49 codecs.BufferedIncrementalDecoder.__init__(self, errors) [all …]
|
D | utf_16.py | 15 def decode(input, errors='strict'): argument 16 return codecs.utf_16_decode(input, errors, True) 19 def __init__(self, errors='strict'): argument 20 codecs.IncrementalEncoder.__init__(self, errors) 25 result = codecs.utf_16_encode(input, self.errors)[0] 31 return self.encoder(input, self.errors)[0] 54 def __init__(self, errors='strict'): argument 55 codecs.BufferedIncrementalDecoder.__init__(self, errors) 58 def _buffer_decode(self, input, errors, final): argument 61 codecs.utf_16_ex_decode(input, errors, 0, final) [all …]
|
/external/python/cpython3/Lib/encodings/ |
D | bz2_codec.py | 15 def bz2_encode(input, errors='strict'): argument 16 assert errors == 'strict' 19 def bz2_decode(input, errors='strict'): argument 20 assert errors == 'strict' 24 def encode(self, input, errors='strict'): argument 25 return bz2_encode(input, errors) 26 def decode(self, input, errors='strict'): argument 27 return bz2_decode(input, errors) 30 def __init__(self, errors='strict'): argument 31 assert errors == 'strict' [all …]
|
D | zlib_codec.py | 13 def zlib_encode(input, errors='strict'): argument 14 assert errors == 'strict' 17 def zlib_decode(input, errors='strict'): argument 18 assert errors == 'strict' 22 def encode(self, input, errors='strict'): argument 23 return zlib_encode(input, errors) 24 def decode(self, input, errors='strict'): argument 25 return zlib_decode(input, errors) 28 def __init__(self, errors='strict'): argument 29 assert errors == 'strict' [all …]
|
D | utf_8_sig.py | 14 def encode(input, errors='strict'): argument 15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], 18 def decode(input, errors='strict'): argument 23 (output, consumed) = codecs.utf_8_decode(input, errors, True) 27 def __init__(self, errors='strict'): argument 28 codecs.IncrementalEncoder.__init__(self, errors) 35 codecs.utf_8_encode(input, self.errors)[0] 37 return codecs.utf_8_encode(input, self.errors)[0] 50 def __init__(self, errors='strict'): argument 51 codecs.BufferedIncrementalDecoder.__init__(self, errors) [all …]
|
/external/python/cpython2/Lib/ |
D | codecs.py | 132 def encode(self, input, errors='strict'): argument 151 def decode(self, input, errors='strict'): argument 180 def __init__(self, errors='strict'): argument 188 self.errors = errors 220 def __init__(self, errors='strict'): argument 221 IncrementalEncoder.__init__(self, errors) 224 def _buffer_encode(self, input, errors, final): argument 232 (result, consumed) = self._buffer_encode(data, self.errors, final) 253 def __init__(self, errors='strict'): argument 261 self.errors = errors [all …]
|
/external/python/cpython3/Lib/ |
D | codecs.py | 138 def encode(self, input, errors='strict'): argument 157 def decode(self, input, errors='strict'): argument 186 def __init__(self, errors='strict'): argument 194 self.errors = errors 226 def __init__(self, errors='strict'): argument 227 IncrementalEncoder.__init__(self, errors) 231 def _buffer_encode(self, input, errors, final): argument 239 (result, consumed) = self._buffer_encode(data, self.errors, final) 260 def __init__(self, errors='strict'): argument 268 self.errors = errors [all …]
|
/external/libcups/cups/ |
D | testi18n.c | 121 errors; /* Error count */ in main() local 198 errors = 0; in main() 219 errors ++; in main() 244 errors ++; in main() 267 errors ++; in main() 286 errors ++; in main() 293 errors ++; in main() 298 errors ++; in main() 312 errors ++; in main() 321 errors ++; in main() [all …]
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_string_ops.py | 35 errors="replace", argument 80 unicode_encode(input_tensor.flat_values, output_encoding, errors, 85 unicode_encode(input_tensor.values, output_encoding, errors, 94 errors=errors, 101 errors, replacement_char) 109 errors, replacement_char) 122 errors, replacement_char) 130 errors="replace", argument 169 return _unicode_decode(input, input_encoding, errors, replacement_char, 176 errors="replace", argument [all …]
|
/external/junit/src/main/java/org/junit/runners/model/ |
D | NoGenericTypeParametersValidator.java | 18 void validate(List<Throwable> errors) { in validate() argument 20 validateNoTypeParameterOnType(each, errors); in validate() 24 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { in validateNoTypeParameterOnType() argument 26 errors.add(new Exception("Method " + method.getName() in validateNoTypeParameterOnType() 29 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors); in validateNoTypeParameterOnType() local 31 validateNoTypeParameterOnWildcardType((WildcardType) type, errors); in validateNoTypeParameterOnType() local 33 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors); in validateNoTypeParameterOnType() local 38 List<Throwable> errors) { in validateNoTypeParameterOnParameterizedType() argument 40 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnParameterizedType() 45 List<Throwable> errors) { in validateNoTypeParameterOnWildcardType() argument [all …]
|
/external/doclava/src/com/google/doclava/ |
D | TodoFile.java | 60 public int errors; field in TodoFile.PackageStats 85 int errors = 0; in writeTodoFile() local 89 setHDF(data, base + errors, cl.position(), "<class comment>", MISSING); in writeTodoFile() 90 errors++; in writeTodoFile() 99 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING); in writeTodoFile() 104 errors++; in writeTodoFile() 113 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING); in writeTodoFile() 118 errors++; in writeTodoFile() 128 setHDF(data, base + errors, f.position(), f.name(), MISSING); in writeTodoFile() 133 errors++; in writeTodoFile() [all …]
|