| /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
| AbstractEstimator.java | 248 * Guess the errors in unbound estimated parameters. 251 * @return errors in estimated parameters 265 double[] errors = new double[problem.getUnboundParameters().length]; local 268 for (int i = 0; i < errors.length; ++i) { 269 errors[i] = FastMath.sqrt(covar[i][i]) * c; 271 return errors;
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
| AbstractLeastSquaresOptimizer.java | 301 * Guess the errors in optimized parameters. 303 * @return errors in optimized parameters 316 double[] errors = new double[cols]; local 319 for (int i = 0; i < errors.length; ++i) { 320 errors[i] = FastMath.sqrt(covar[i][i]) * c; 322 return errors;
|
| /external/autotest/client/tests/disktest/src/ |
| disktest.c | 89 int i, errors = 0; local 110 errors++; 115 errors++; 132 return errors; 232 unsigned int block, errors = 0; local 238 errors++; 241 return errors;
|
| /external/bison/src/ |
| conflicts.c | 256 | ERRORS and NERRS can be used to store discovered explicit | 257 | errors. | 261 resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs) 314 errors[(*nerrs)++] = symbols[i]; 324 | conflicts. ERRORS can be used as storage to compute the list of | 329 set_conflicts (state *s, symbol **errors) 350 resolve_sr_conflict (s, i, errors, &nerrs); 354 /* Some tokens have been explicitly made errors. Allocate a 356 state_errs_set (s, nerrs, errors); 390 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors) 389 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); local [all...] |
| /external/boringssl/src/crypto/x509v3/ |
| v3name_test.c | 314 static int errors; variable 328 ++errors; 346 ++errors; 361 ++errors; 409 if (errors == 0) { 412 return errors > 0 ? 1 : 0;
|
| /external/clang/include/clang/ASTMatchers/Dynamic/ |
| Diagnostics.h | 59 /// \brief All errors from the system. 120 /// This context will take care of merging all errors that happen within it 127 /// \brief Revert all errors that happened within this context. 159 ArrayRef<ErrorContent> errors() const { return Errors; } function in class:clang::ast_matchers::dynamic::Diagnostics 178 std::vector<ErrorContent> Errors;
|
| /external/curl/tests/libtest/ |
| lib557.c | 1394 int errors = 0; local 1427 int errors = 0; local [all...] |
| /external/e2fsprogs/lib/ext2fs/ |
| sha256.c | 236 int errors = 0; local 248 errors++; 252 return errors;
|
| sha512.c | 284 int errors = 0; local 296 errors++; 300 return errors;
|
| /external/guice/core/src/com/google/inject/internal/ |
| InheritingState.java | 106 String stringValue, TypeLiteral<?> type, Errors errors, Object source) { 112 errors.ambiguousTypeConversion(stringValue, source, type, matchingConverter, converter);
|
| ProviderMethodsModule.java | 211 // bridge methods, but we don't want to give errors on bridge methods (but rather the target 252 Errors errors = new Errors(method); local 264 Key<T> key = getKey(errors, returnType, method, method.getAnnotations()); 271 = Annotations.findScopeAnnotation(errors, method.getAnnotations()); 272 for (Message message : errors.getMessages()) { 279 <T> Key<T> getKey(Errors errors, TypeLiteral<T> type, Member member, Annotation[] annotations) { 280 Annotation bindingAnnotation = Annotations.findBindingAnnotation(errors, member, annotations) [all...] |
| /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
| FactoryProvider.java | 33 import com.google.inject.internal.Errors; 182 Errors errors = new Errors(); local 188 method.getAnnotations(), errors); 218 // to add errors, which isn't really the best way in Guice 398 return new ConfigurationException(ImmutableSet.of(new Message(Errors.format(format, args))));
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
| JamoTest.java | 182 int errors = 0; local 193 ++errors; 240 if (errors != 0) { 241 errln("Test word failures: " + errors + " out of " + total);
|
| /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
| JamoTest.java | 181 int errors = 0; local 192 ++errors; 239 if (errors != 0) { 240 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 | 68 uint8_t errors; member in struct:Teq1State 84 .errors = 0, \
|
| /external/mesa3d/src/gallium/auxiliary/tgsi/ |
| tgsi_sanity.c | 58 uint errors; member in struct:sanity_check_ctx 165 ctx->errors++; 512 if (ctx->errors || ctx->warnings) 513 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings ); 552 ctx.errors = 0; 563 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::__anon29048::ErrorCase [all...] |
| /external/selinux/libselinux/src/ |
| booleans.c | 517 size_t len = 0, errors = 0; local 529 errors++; 532 errors++; 547 errors++; 550 errors++; 558 if (errors) 560 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); 163 int errors = 0; local 190 * Aborts on errors during the file tree walk, 210 * Do not abort on errors during the file tree walk, 459 errors |= process_glob(buf, &r_opts) < 0; 465 errors |= process_glob(argv[i], &r_opts) < 0; 468 maybe_audit_mass_relabel(r_opts.mass_relabel, errors); 479 exit(errors ? -1 : 0);
|
| /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);
|