Home
last modified time | relevance | path

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

12345678

/external/junit/src/org/junit/runners/model/
DNoGenericTypeParametersValidator.java18 void validate(List<Throwable> errors) { in validate()
23 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { in validateNoTypeParameterOnType()
28 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors); in validateNoTypeParameterOnType() local
30 validateNoTypeParameterOnWildcardType((WildcardType) type, errors); in validateNoTypeParameterOnType() local
32 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors); in validateNoTypeParameterOnType() local
36 List<Throwable> errors) { in validateNoTypeParameterOnParameterizedType()
42 List<Throwable> errors) { in validateNoTypeParameterOnWildcardType()
50 GenericArrayType arrayType, List<Throwable> errors) { in validateNoTypeParameterOnGenericArrayType()
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors); in validateNoTypeParameterOnGenericArrayType() local
DMultipleFailureException.java17 public MultipleFailureException(List<Throwable> errors) { in MultipleFailureException()
45 public static void assertEmpty(List<Throwable> errors) throws Throwable { in assertEmpty()
DInitializationError.java17 public InitializationError(List<Throwable> errors) { in InitializationError()
/external/junit/src/org/junit/internal/runners/rules/
DRuleFieldValidator.java47 public void validate(TestClass target, List<Throwable> errors) { in validate()
53 private void validateField(FrameworkField field, List<Throwable> errors) { in validateField()
60 List<Throwable> errors) { in optionallyValidateStatic()
65 private void validatePublic(FrameworkField field, List<Throwable> errors) { in validatePublic()
71 List<Throwable> errors) { in validateTestRuleOrMethodRule()
86 private void addError(List<Throwable> errors, FrameworkField field, in addError()
/external/junit/src/org/junit/runners/
DBlockJUnit4ClassRunner.java97 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
106 protected void validateNoNonStaticInnerClass(List<Throwable> errors) { in validateNoNonStaticInnerClass()
119 protected void validateConstructor(List<Throwable> errors) { in validateConstructor()
128 protected void validateOnlyOneConstructor(List<Throwable> errors) { in validateOnlyOneConstructor()
139 protected void validateZeroArgConstructor(List<Throwable> errors) { in validateZeroArgConstructor()
160 protected void validateInstanceMethods(List<Throwable> errors) { in validateInstanceMethods()
169 private void validateFields(List<Throwable> errors) { in validateFields()
170 RULE_VALIDATOR.validate(getTestClass(), errors); in validateFields() local
177 protected void validateTestMethods(List<Throwable> errors) { in validateTestMethods()
DParentRunner.java110 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
127 boolean isStatic, List<Throwable> errors) { in validatePublicVoidNoArgMethods()
134 private void validateClassRules(List<Throwable> errors) { in validateClassRules()
135 CLASS_RULE_VALIDATOR.validate(getTestClass(), errors); in validateClassRules() local
/external/junit/src/org/junit/experimental/theories/
DTheories.java29 protected void collectInitializationErrors(List<Throwable> errors) { in collectInitializationErrors()
34 private void validateDataPointFields(List<Throwable> errors) { in validateDataPointFields()
43 protected void validateConstructor(List<Throwable> errors) { in validateConstructor()
48 protected void validateTestMethods(List<Throwable> errors) { in validateTestMethods()
122 List<Throwable> errors) { in runWithCompleteAssignment()
/external/lldb/source/Expression/
DClangFunction.cpp107 ClangFunction::CompileFunction (Stream &errors) in CompileFunction()
245 ClangFunction::WriteFunctionWrapper (ExecutionContext &exe_ctx, Stream &errors) in WriteFunctionWrapper()
284 …on::WriteFunctionArguments (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors) in WriteFunctionArguments()
296 Stream &errors) in WriteFunctionArguments()
378 …ngFunction::InsertFunction (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors) in InsertFunction()
400 Stream &errors, in GetThreadPlanToCallFunction()
483 ClangFunction::ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, Value &results) in ExecuteFunction()
489 ClangFunction::ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, bool stop_others, Value &… in ExecuteFunction()
501 Stream &errors, in ExecuteFunction()
524 Stream &errors, in ExecuteFunction()
[all …]
/external/wpa_supplicant_8/src/utils/
Dutils_module_tests.c46 int errors = 0; in printf_encode_decode_tests() local
111 int errors = 0; in bitfield_tests() local
207 int errors = 0; in int_array_tests() local
276 int errors = 0; in base64_tests() local
342 int errors = 0; in common_tests() local
/external/junit/src/org/junit/internal/runners/
DInitializationError.java15 public InitializationError(List<Throwable> errors) { in InitializationError()
19 public InitializationError(Throwable... errors) { in InitializationError()
/external/v8/test/mjsunit/
Derror-constructors.js72 var errors = [SyntaxError, ReferenceError, TypeError]; variable
78 errors[i].prototype.__defineGetter__(props[j], fail); class
91 var errors = [Error, RangeError, EvalError, URIError, MyError]; variable
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Dcompat.py24 def text_(s, encoding='latin-1', errors='strict'): argument
29 def bytes_(s, encoding='latin-1', errors='strict'): argument
35 def native_(s, encoding='latin-1', errors='strict'): argument
40 def native_(s, encoding='latin-1', errors='strict'): argument
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_winreg.c53 int errors = 0; in wpa_config_read_blobs() local
204 int errors = 0; in wpa_config_read_global() local
290 int errors = 0; in wpa_config_read_network() local
376 int errors = 0; in wpa_config_read_networks() local
441 int errors = 0; in wpa_config_read() local
636 int i, errors = 0; in wpa_config_delete_subkeys() local
833 int i, errors = 0; in wpa_config_write_network() local
986 int errors = 0; in wpa_config_write() local
/external/doclava/src/com/google/doclava/apicheck/
DApiCheck.java231 private Set<ErrorMessage> errors; field in ApiCheck.Report
233 private Report(int code, Set<ErrorMessage> errors) { in Report()
242 public Set<ErrorMessage> errors() { in errors() method in ApiCheck.Report
/external/google-breakpad/src/processor/
Dminidump_dump.cc58 int *errors) { in DumpRawStream()
102 int errors = 0; in PrintMinidumpDump() local
/external/e2fsprogs/lib/e2p/
Dpe.c23 void print_fs_errors (FILE * f, unsigned short errors) in print_fs_errors()
/external/selinux/libsepol/src/
Dassertion.c70 unsigned long errors = 0; in check_assertion_helper() local
105 unsigned long errors = 0; in check_assertions() local
/external/doclava/src/com/google/doclava/
DTodoFile.java59 public int errors; field in TodoFile.PackageStats
84 int errors = 0; in writeTodoFile() local
/external/junit/src/org/junit/internal/runners/model/
DMultipleFailureException.java9 public MultipleFailureException(List<Throwable> errors) { in MultipleFailureException()
/external/e2fsprogs/lib/ext2fs/
Dtst_byteswap.c50 int errors = 0; in main() local
/external/v8/tools/
Drun-valgrind.py50 errors = process.stderr.readlines(); variable
Dandroid-run.py44 def Check(output, errors): argument
/external/wpa_supplicant_8/wpa_supplicant/tests/
Dtest_eap_sim_common.c42 int errors = 0; in main() local
/external/bison/src/
Dconflicts.c260 resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs) in resolve_sr_conflict()
328 set_conflicts (state *s, symbol **errors) in set_conflicts()
389 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); in conflicts_solve() local
/external/junit/src/org/junit/internal/runners/statements/
DRunAfters.java28 List<Throwable> errors = new ArrayList<Throwable>(); in evaluate() local

12345678