Home
last modified time | relevance | path

Searched defs:errors (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/external/junit/src/main/java/org/junit/runners/model/
DNoGenericTypeParametersValidator.java18 void validate(List<Throwable> errors) { in validate()
24 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { 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()
45 List<Throwable> errors) { in validateNoTypeParameterOnWildcardType()
55 GenericArrayType arrayType, List<Throwable> errors) { in validateNoTypeParameterOnGenericArrayType()
56 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors); in validateNoTypeParameterOnGenericArrayType() local
/external/python/cpython2/Modules/
D_codecsmodule.c91 const char *errors = NULL; in codec_encode() local
125 const char *errors = NULL; in codec_decode() local
164 const char *errors = NULL; in escape_decode() local
180 const char *errors = NULL; in escape_encode() local
211 const char *errors = NULL; in unicode_internal_decode() local
237 const char *errors = NULL; in utf_7_decode() local
260 const char *errors = NULL; in utf_8_decode() local
283 const char *errors = NULL; in utf_16_decode() local
306 const char *errors = NULL; in utf_16_le_decode() local
330 const char *errors = NULL; in utf_16_be_decode() local
[all …]
/external/junit/src/main/java/org/junit/experimental/theories/
DTheories.java77 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
83 private void validateDataPointFields(List<Throwable> errors) { in validateDataPointFields()
99 private void validateDataPointMethods(List<Throwable> errors) { in validateDataPointMethods()
116 protected void validateConstructor(List<Throwable> errors) { in validateConstructor()
121 protected void validateTestMethods(List<Throwable> errors) { in validateTestMethods()
133 validateParameterSupplier(annotation.value(), errors); in validateTestMethods() local
139 …lidateParameterSupplier(Class<? extends ParameterSupplier> supplierClass, List<Throwable> errors) { in validateParameterSupplier()
221 List<Throwable> errors) { in runWithCompleteAssignment()
/external/python/cpython2/Lib/encodings/
Dutf_8_sig.py14 def encode(input, errors='strict'): argument
17 def decode(input, errors='strict'): argument
26 def __init__(self, errors='strict'): argument
48 def __init__(self, errors='strict'): argument
52 def _buffer_decode(self, input, errors, final): argument
80 def encode(self, input, errors='strict'): argument
92 def decode(self, input, errors='strict'): argument
Dbz2_codec.py15 def bz2_encode(input,errors='strict'): argument
29 def bz2_decode(input,errors='strict'): argument
49 def encode(self, input, errors='strict'): argument
51 def decode(self, input, errors='strict'): argument
55 def __init__(self, errors='strict'): argument
71 def __init__(self, errors='strict'): argument
Dzlib_codec.py14 def zlib_encode(input,errors='strict'): argument
28 def zlib_decode(input,errors='strict'): argument
48 def encode(self, input, errors='strict'): argument
50 def decode(self, input, errors='strict'): argument
54 def __init__(self, errors='strict'): argument
70 def __init__(self, errors='strict'): argument
Dutf_16.py15 def decode(input, errors='strict'): argument
19 def __init__(self, errors='strict'): argument
54 def __init__(self, errors='strict'): argument
58 def _buffer_decode(self, input, errors, final): argument
76 def __init__(self, stream, errors='strict'): argument
84 def encode(self, input, errors='strict'): argument
104 def decode(self, input, errors='strict'): argument
Dcharmap.py25 def __init__(self, errors='strict', mapping=None): argument
33 def __init__(self, errors='strict', mapping=None): argument
42 def __init__(self,stream,errors='strict',mapping=None): argument
46 def encode(self,input,errors='strict'): argument
51 def __init__(self,stream,errors='strict',mapping=None): argument
55 def decode(self,input,errors='strict'): argument
Dutf_32.py10 def decode(input, errors='strict'): argument
14 def __init__(self, errors='strict'): argument
49 def __init__(self, errors='strict'): argument
53 def _buffer_decode(self, input, errors, final): argument
100 def __init__(self, stream, errors='strict'): argument
108 def encode(self, input, errors='strict'): argument
128 def decode(self, input, errors='strict'): argument
Dbase64_codec.py13 def base64_encode(input,errors='strict'): argument
27 def base64_decode(input,errors='strict'): argument
47 def encode(self, input,errors='strict'): argument
49 def decode(self, input,errors='strict'): argument
Dquopri_codec.py12 def quopri_encode(input, errors='strict'): argument
28 def quopri_decode(input, errors='strict'): argument
45 def encode(self, input,errors='strict'): argument
47 def decode(self, input,errors='strict'): argument
Dhex_codec.py13 def hex_encode(input,errors='strict'): argument
27 def hex_decode(input,errors='strict'): argument
47 def encode(self, input,errors='strict'): argument
49 def decode(self, input,errors='strict'): argument
Duu_codec.py15 def uu_encode(input,errors='strict',filename='<data>',mode=0666): argument
44 def uu_decode(input,errors='strict'): argument
98 def encode(self,input,errors='strict'): argument
101 def decode(self,input,errors='strict'): argument
Didna.py147 def encode(self,input,errors='strict'): argument
168 def decode(self,input,errors='strict'): argument
198 def _buffer_encode(self, input, errors, final): argument
232 def _buffer_decode(self, input, errors, final): argument
/external/junit/src/main/java/org/junit/internal/runners/rules/
DRuleMemberValidator.java88 public void validate(TestClass target, List<Throwable> errors) { in validate()
97 private void validateMember(FrameworkMember<?> member, List<Throwable> errors) { in validateMember()
160 …alidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors); in validate()
167 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
192 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
204 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
220 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
232 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
245 …lidate(FrameworkMember<?> member, Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
258 Class<? extends Annotation> annotation, List<Throwable> errors) { in validate()
[all …]
/external/chromium-trace/catapult/common/eslint/tests/
Dcatapult-camelcase.js95 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/junit/src/main/java/org/junit/runners/
DBlockJUnit4ClassRunner.java123 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
133 protected void validateNoNonStaticInnerClass(List<Throwable> errors) { in validateNoNonStaticInnerClass()
146 protected void validateConstructor(List<Throwable> errors) { in validateConstructor()
155 protected void validateOnlyOneConstructor(List<Throwable> errors) { in validateOnlyOneConstructor()
166 protected void validateZeroArgConstructor(List<Throwable> errors) { in validateZeroArgConstructor()
185 protected void validateInstanceMethods(List<Throwable> errors) { in validateInstanceMethods()
195 protected void validateFields(List<Throwable> errors) { in validateFields()
196 RULE_VALIDATOR.validate(getTestClass(), errors); in validateFields() local
199 private void validateMethods(List<Throwable> errors) { in validateMethods()
200 RULE_METHOD_VALIDATOR.validate(getTestClass(), errors); in validateMethods() local
[all …]
DParentRunner.java124 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
131 private void applyValidators(List<Throwable> errors) { in applyValidators()
151 boolean isStatic, List<Throwable> errors) { in validatePublicVoidNoArgMethods()
159 private void validateClassRules(List<Throwable> errors) { in validateClassRules()
160 CLASS_RULE_VALIDATOR.validate(getTestClass(), errors); in validateClassRules() local
161 CLASS_RULE_METHOD_VALIDATOR.validate(getTestClass(), errors); in validateClassRules() local
/external/guice/core/src/com/google/inject/internal/
DErrorsException.java29 private final Errors errors; field in ErrorsException
31 public ErrorsException(Errors errors) { in ErrorsException()
DInitializer.java88 void validateOustandingInjections(Errors errors) { in validateOustandingInjections()
103 void injectAll(final Errors errors) { in injectAll()
137 public MembersInjectorImpl<T> validate(Errors errors) throws ErrorsException { in validate()
147 public T get(Errors errors) throws ErrorsException { in get()
DMembersInjectorImpl.java60 Errors errors = new Errors(typeLiteral); in injectMembers() local
71 final Errors errors, in injectAndNotify()
115 void notifyListeners(T instance, Errors errors) throws ErrorsException { in notifyListeners()
127 void injectMembers(T t, Errors errors, InternalContext context, boolean toolableOnly) { in injectMembers()
DBoundProviderFactory.java48 public void notify(Errors errors) { in notify()
56 public T get(Errors errors, InternalContext context, Dependency<?> dependency, boolean linked) in get()
69 protected T provision(Provider<? extends T> provider, Errors errors, Dependency<?> dependency, in provision()
/external/python/cpython2/Python/
Dcodecs.c181 const char *errors) in args_tuple()
223 const char *errors, in codec_makeincrementalcodec()
241 const char *errors, in codec_getincrementalcodec()
259 const char *errors, in codec_getstreamcodec()
281 const char *errors) in _PyCodecInfo_GetIncrementalDecoder()
288 const char *errors) in _PyCodecInfo_GetIncrementalEncoder()
312 const char *errors) in PyCodec_IncrementalEncoder()
318 const char *errors) in PyCodec_IncrementalDecoder()
325 const char *errors) in PyCodec_StreamReader()
332 const char *errors) in PyCodec_StreamWriter()
[all …]
/external/junit/src/main/java/org/junit/internal/runners/
DInitializationError.java22 public InitializationError(List<Throwable> errors) { in InitializationError()
26 public InitializationError(Throwable... errors) { in InitializationError()
/external/junit/src/main/java/org/junit/experimental/categories/
DCategoryValidator.java45 List<Exception> errors = new ArrayList<Exception>(); in validateAnnotatedMethod() local
57 private void addErrorMessage(List<Exception> errors, Class<?> clazz) { in addErrorMessage()

12345678910>>...17