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

1 2 3 4 5 6 78 91011>>

  /prebuilts/tools/common/m2/repository/com/uber/rave/0.6.0/
rave-0.6.0.jar 
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 456 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
477 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
496 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
517 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
538 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
600 private final List<DOMError> errors = new ArrayList<DOMError>(); field in class:NormalizeTest.ErrorRecorder
603 errors.add(error);
608 assertAllErrors("Expected one or more " + type + " errors", severity, type);
612 assertFalse(message, errors.isEmpty());
613 for (DOMError error : errors) {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UTS46Test.java 57 errln(String.format("T.nameToASCII(www.example.com) info.errors=%s result matches=%b",
66 errln(String.format("N.labelToASCII(label-with-dot) failed with errors %s",
73 errln(String.format("T.nameToUnicode(fA\u00DF.de) info.errors=%s result matches=%b",
93 errln(String.format("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %s string %s",
106 errln(String.format("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %s string %s",
133 errors=EnumSet.noneOf(IDNA.Error.class);
139 errors.clear();
142 errors.add(errorNamesToErrors.get(e));
150 private EnumSet<IDNA.Error> errors; field in class:UTS46Test.TestCase
376 // hyphen errors and empty-label error
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UTS46Test.java 54 errln(String.format("T.nameToASCII(www.example.com) info.errors=%s result matches=%b",
63 errln(String.format("N.labelToASCII(label-with-dot) failed with errors %s",
70 errln(String.format("T.nameToUnicode(fA\u00DF.de) info.errors=%s result matches=%b",
90 errln(String.format("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %s string %s",
103 errln(String.format("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %s string %s",
130 errors=EnumSet.noneOf(IDNA.Error.class);
136 errors.clear();
139 errors.add(errorNamesToErrors.get(e));
147 private EnumSet<IDNA.Error> errors; field in class:UTS46Test.TestCase
373 // hyphen errors and empty-label error
    [all...]
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
OpTestCase.java 389 List<Error> errors = new ArrayList<>(); local
412 errors.add(new Error(String.format("%s: %s", test, t), t));
416 if (!errors.isEmpty()) {
419 for (Error t : errors) {
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
OpTestCase.java 390 List<Error> errors = new ArrayList<>(); local
413 errors.add(new Error(String.format("%s: %s", test, t), t));
417 if (!errors.isEmpty()) {
420 for (Error t : errors) {
  /bionic/libc/kernel/uapi/linux/
virtio_blk.h 75 __virtio32 errors; member in struct:virtio_scsi_inhdr
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestResult.java 82 public Enumeration<TestFailure> errors() { method in class:SensorCtsTestResult
83 return mWrappedTestResult.errors();
  /cts/tests/sensor/src/android/hardware/cts/
SensorParameterRangeTest.java 176 List<String> errors = new ArrayList<>(); local
180 errors.add(String.format("sensor \"%s\" has id %d", s.getName(), id));
183 if (errors.size() > 0) {
185 TextUtils.join(", ", errors) + " >";
  /cts/tests/tests/security/src/android/security/cts/
ListeningPortsTest.java 209 String errors = ""; local
223 errors += "\nFound port listening on addr="
230 if (!errors.equals("")) {
231 throw new ListeningPortsAssertionError(errors);
  /external/annotation-tools/annotation-file-utilities/src/annotator/
Source.java 120 List<Diagnostic<? extends JavaFileObject>> errors = diagnostics.getDiagnostics(); local
123 for (Diagnostic<? extends JavaFileObject> d : errors) {
  /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/boringssl/src/crypto/x509v3/
v3name_test.cc 316 static int errors; variable
330 ++errors;
348 ++errors;
363 ++errors;
402 EXPECT_EQ(0, errors);
  /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 1414 int errors = 0; local
1447 int errors = 0; local
1552 int errors = 0; local
1663 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/f2fs-tools/tools/
sha512.c 304 int errors = 0; local
316 errors++;
320 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 187 int errors = 0; local
198 ++errors;
245 if (errors != 0) {
246 errln("Test word failures: " + errors + " out of " + total);
  /external/icu/icu4c/source/test/intltest/
numbertest_api.cpp 79 TESTCASE_AUTO(errors);
1419 void NumberFormatterApiTest::errors() { function in class:NumberFormatterApiTest
    [all...]

Completed in 1617 milliseconds

1 2 3 4 5 6 78 91011>>