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

1 2 3 4 5 6 7 891011>>

  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
JamoTest.java 184 int errors = 0; local
195 ++errors;
242 if (errors != 0) {
243 errln("Test word failures: " + errors + " out of " + total);
  /external/junit/src/main/java/org/junit/internal/runners/rules/
RuleMemberValidator.java 18 * {@code TestClass} are written to a list of errors.
83 * for rejecting the class to a list of errors.
86 * @param errors the list of errors.
88 public void validate(TestClass target, List<Throwable> errors) {
93 validateMember(each, errors);
97 private void validateMember(FrameworkMember<?> member, List<Throwable> errors) {
99 strategy.validate(member, annotation, errors);
155 * Examine the given member and add any violations of the strategy's validation logic to the given list of errors
158 * @param errors The list of errors to add validation violations t
    [all...]
  /external/junit-params/src/main/java/junitparams/internal/
TestMethod.java 157 List<Throwable> errors = new ArrayList<Throwable>(); local
158 method.validatePublicVoidNoArg(false, errors);
159 if (!errors.isEmpty()) {
160 throw new RuntimeException(errors.get(0));
  /external/kernel-headers/original/uapi/linux/
virtio_blk.h 138 __virtio32 errors; member in struct:virtio_scsi_inhdr
  /external/libese/libese-teq1/
teq1_private.h 58 uint8_t errors; member in struct:Teq1State
78 .errors = 0, \
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 58 uint errors; member in struct:sanity_check_ctx
166 ctx->errors++;
538 if (ctx->errors || ctx->warnings)
539 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings );
579 ctx.errors = 0;
591 return ctx.errors == 0;
  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 1179 vector<string> errors; local
1247 vector<string> errors; local
1264 vector<string> errors; local
1364 vector<string> errors; local
    [all...]
tokenizer_unittest.cc 155 // An error collector which simply concatenates all its errors into a big
288 // There should be no errors.
318 // There should be no errors.
471 // There should be no errors.
505 // There should be no errors.
860 const char* errors; member in struct:google::protobuf::io::__anon32369::ErrorCase
    [all...]
  /external/python/cpython3/Modules/_io/clinic/
textio.c.h 6 "IncrementalNewlineDecoder(decoder, translate, errors=\'strict\')\n"
21 PyObject *errors);
27 static const char * const _keywords[] = {"decoder", "translate", "errors", NULL};
31 PyObject *errors = NULL; local
34 &decoder, &translate, &errors)) {
37 return_value = _io_IncrementalNewlineDecoder___init___impl((nldecoder_object *)self, decoder, translate, errors);
117 "TextIOWrapper(buffer, encoding=None, errors=None, newline=None,\n"
126 "errors determines the strictness of encoding and decoding (see\n"
152 const char *encoding, const char *errors,
160 static const char * const _keywords[] = {"buffer", "encoding", "errors", "newline", "line_buffering", "write_through", NULL}
164 const char *errors = NULL; local
    [all...]
  /external/python/cpython3/Modules/clinic/
_pickle.c.h 256 "Unpickler(file, *, fix_imports=True, encoding=\'ASCII\', errors=\'strict\')\n"
271 "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n"
275 "*encoding* and *errors* tell pickle how to decode 8-bit string\n"
283 const char *errors);
289 static const char * const _keywords[] = {"file", "fix_imports", "encoding", "errors", NULL};
294 const char *errors = "strict"; local
297 &file, &fix_imports, &encoding, &errors)) {
300 return_value = _pickle_Unpickler___init___impl((UnpicklerObject *)self, file, fix_imports, encoding, errors);
461 " errors=\'strict\')\n"
479 "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n
504 const char *errors = "strict"; local
552 const char *errors = "strict"; local
    [all...]
  /external/python/cpython3/Objects/clinic/
bytesobject.c.h 400 "decode($self, /, encoding=\'utf-8\', errors=\'strict\')\n"
407 " errors\n"
408 " The error handling scheme to use for the handling of decoding errors.\n"
409 " The default is \'strict\' meaning that decoding errors raise a\n"
419 const char *errors);
425 static const char * const _keywords[] = {"encoding", "errors", NULL};
428 const char *errors = NULL; local
431 &encoding, &errors)) {
434 return_value = bytes_decode_impl(self, encoding, errors);
  /external/selinux/libselinux/src/
booleans.c 529 size_t len = 0, errors = 0; local
541 errors++;
544 errors++;
559 errors++;
562 errors++;
570 if (errors)
572 return errors ? -1 : 0;
  /external/selinux/libsepol/src/
assertion.c 36 unsigned long errors; member in struct:avtab_match_args
281 a->errors += report_assertion_extended_permissions(handle,p, avrule,
284 a->errors++;
311 args.errors = 0;
321 return args.errors;
528 args.errors = 0;
546 unsigned long errors = 0; local
565 errors += rc;
569 if (errors)
570 ERR(handle, "%lu neverallow failures occurred", errors);
    [all...]
  /external/selinux/policycoreutils/setfiles/
setfiles.c 27 * following number of errors (e.g. invalid contexts),
64 fprintf(stderr, "Exiting after %d errors.\n", ABORT_ON_ERRORS);
170 int errors = 0; local
197 * Aborts on errors during the file tree walk,
217 * Do not abort on errors during the file tree walk,
466 errors |= process_glob(buf, &r_opts) < 0;
472 errors |= process_glob(argv[i], &r_opts) < 0;
475 maybe_audit_mass_relabel(r_opts.mass_relabel, errors);
486 exit(errors ? -1 : 0);
  /external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQPRunner.java 151 String[] errors = impl.nExecuteUnitTest(unitTest); local
152 if (errors != null && errors.length > 0) {
153 Log.w(TAG, String.format("[FAIL] Test '%s' had %d failures.", name, errors.length));
154 for (String error : errors) {
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 45 /* last output : errors=3121
142 int errors = 0; local
239 ++errors;
241 SkDebugf("errors=%d avgIter=%1.9g", errors, (double) iters / errors);
  /external/skia/tools/skqp/jni/
org_skia_skqp_SkQPRunner.cpp 218 std::vector<std::string> errors = gm_runner::ExecuteTest(test); local
219 if (errors.size() == 0) {
224 jobjectArray array = env->NewObjectArray(errors.size(), stringClass, nullptr);
225 for (unsigned i = 0; i < errors.size(); ++i) {
226 set_string_array_element(env, array, errors[i].c_str(), i);
  /external/skqp/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQPRunner.java 154 String[] errors = impl.nExecuteUnitTest(unitTest); local
155 if (errors != null && errors.length > 0) {
156 Log.w(TAG, String.format("[FAIL] Test '%s' had %d failures.", name, errors.length));
157 for (String error : errors) {
  /external/skqp/tests/
PathOpsCubicLineIntersectionIdeas.cpp 45 /* last output : errors=3121
142 int errors = 0; local
239 ++errors;
241 SkDebugf("errors=%d avgIter=%1.9g", errors, (double) iters / errors);
  /external/skqp/tools/skqp/jni/
org_skia_skqp_SkQPRunner.cpp 218 std::vector<std::string> errors = gm_runner::ExecuteTest(test); local
219 if (errors.size() == 0) {
224 jobjectArray array = env->NewObjectArray(errors.size(), stringClass, nullptr);
225 for (unsigned i = 0; i < errors.size(); ++i) {
226 set_string_array_element(env, array, errors[i].c_str(), i);
  /external/strace/
count.c 43 unsigned int calls, errors; member in struct:call_counts
67 cc->errors++;
171 "calls", "errors", "syscall");
187 error_cum += counts[i].errors;
210 cc->calls, cc->errors, sysent[idx].sys_name);
  /external/testng/src/main/java/org/testng/reporters/
JUnitReportReporter.java 93 int errors = 0; local
105 errors++;
135 p1.setProperty("errors", "" + errors);
  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 50 int errors = 0; local
65 errors++;
73 errors++;
81 errors++;
90 errors++;
95 errors++;
98 errors++;
101 errors++;
104 errors++;
113 errors++
131 int errors = 0; local
227 int errors = 0; local
296 int errors = 0; local
362 int errors = 0; local
448 int errors = 0; local
513 int errors = 0; local
569 int errors = 0; local
    [all...]
xml_libxml2.c 62 struct str_buf errors; local
77 os_memset(&errors, 0, sizeof(errors));
82 &errors); local
89 &errors); local
97 os_free(errors.buf);
101 *ret_err = errors.buf;
103 os_free(errors.buf);
107 *ret_err = errors.buf;
109 os_free(errors.buf)
123 struct str_buf errors; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 40 int errors; member in struct:wpa_ctrl_dst
552 dst->errors++;
553 if (dst->errors > 10) {
559 dst->errors = 0;

Completed in 1896 milliseconds

1 2 3 4 5 6 7 891011>>