HomeSort by relevance Sort by last modified time
    Searched defs:expectedValue (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
ConnectionTest.java 83 Object expectedValue = thePublicStatics.get(fieldName);
84 if (expectedValue == null) {
88 expectedValue, fieldValue);
ParameterMetaDataTest.java 88 Object expectedValue = thePublicStatics.get(fieldName);
89 if (expectedValue == null) {
93 expectedValue, fieldValue);
ResultSetMetaDataTest.java 78 Object expectedValue = thePublicStatics.get(fieldName);
79 if (expectedValue == null) {
83 expectedValue, fieldValue);
ResultSetTest.java 96 Object expectedValue = thePublicStatics.get(fieldName);
97 if (expectedValue == null) {
101 expectedValue, fieldValue);
StatementTest.java 86 Object expectedValue = thePublicStatics.get(fieldName);
87 if (expectedValue == null) {
91 expectedValue, fieldValue);
TypesTest.java 96 Object expectedValue = thePublicStatics.get(fieldName);
97 if (expectedValue == null) {
101 expectedValue, fieldValue);
  /dalvik/vm/native/
sun_misc_Unsafe.c 60 * int expectedValue, int newValue);
68 s4 expectedValue = args[4];
73 int result = android_atomic_release_cas(expectedValue, newValue, address);
80 * long expectedValue, long newValue);
88 s8 expectedValue = GET_ARG_LONG(args, 4);
94 dvmQuasiAtomicCas64(expectedValue, newValue, address);
101 * Object expectedValue, Object newValue);
109 Object* expectedValue = (Object*) args[4];
114 int result = android_atomic_release_cas((int32_t) expectedValue,
  /external/chromium/third_party/icu/source/test/intltest/
ustrtest.cpp 74 UnicodeString expectedValue;
79 expectedValue = "Now is the time for all good men to come swiftly to the aid of the party.\n";
80 if (test1 != expectedValue)
81 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
84 if(*c != expectedValue) {
85 errln("clone()->insert() failed: expected \"" + expectedValue + "\"\n,got \"" + *c + "\"");
90 expectedValue = "Now is the time for all good men to come to the aid of the party.\n";
91 if (test1 != expectedValue)
92 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
95 expectedValue = "Now is the time for all good men to come to the aid of their country.\n"
    [all...]
loctest.cpp     [all...]
  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 244 final String expectedValue = values.getAsString(projection[i]);
245 if (!TextUtils.equals(cursorValue, expectedValue)) {
249 + " when expected " + expectedValue + " for column "
  /external/icu4c/test/intltest/
loctest.cpp     [all...]
ustrtest.cpp 75 UnicodeString expectedValue;
80 expectedValue = "Now is the time for all good men to come swiftly to the aid of the party.\n";
81 if (test1 != expectedValue)
82 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
85 if(*c != expectedValue) {
86 errln("clone()->insert() failed: expected \"" + expectedValue + "\"\n,got \"" + *c + "\"");
91 expectedValue = "Now is the time for all good men to come to the aid of the party.\n";
92 if (test1 != expectedValue)
93 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
96 expectedValue = "Now is the time for all good men to come to the aid of their country.\n"
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 558 Object expectedValue = expectedArguments[i + 1];
559 if (expectedValue instanceof Uri) {
560 expectedValue = ContentUris.parseId((Uri) expectedValue);
562 if (expectedValue == null) {
565 if (expectedValue instanceof Long) {
567 expectedValue, actual.getAsLong(columnName));
568 } else if (expectedValue instanceof Integer) {
570 expectedValue, actual.getAsInteger(columnName));
571 } else if (expectedValue instanceof String)
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cloctst.c     [all...]
  /external/icu4c/test/cintltst/
cloctst.c     [all...]

Completed in 369 milliseconds