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

1 2

  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ConnectionTest.java 71 Object expectedValue = thePublicStatics.get(fieldName);
72 if (expectedValue == null) {
76 expectedValue, fieldValue);
ParameterMetaDataTest.java 76 Object expectedValue = thePublicStatics.get(fieldName);
77 if (expectedValue == null) {
81 expectedValue, fieldValue);
ResultSetMetaDataTest.java 66 Object expectedValue = thePublicStatics.get(fieldName);
67 if (expectedValue == null) {
71 expectedValue, fieldValue);
ResultSetTest.java 84 Object expectedValue = thePublicStatics.get(fieldName);
85 if (expectedValue == null) {
89 expectedValue, fieldValue);
StatementTest.java 74 Object expectedValue = thePublicStatics.get(fieldName);
75 if (expectedValue == null) {
79 expectedValue, fieldValue);
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
char_test.cpp 53 std::string expectedValue;
64 expectedValue = str;
69 expectedValue = str;
74 expectedValue = str;
91 EXPECT_EQ(expectedValue, token.text);
  /external/icu4c/tools/toolutil/
denseranges.cpp 123 int32_t expectedValue=minValue;
125 ++expectedValue;
127 if(expectedValue!=actualValue) {
128 gaps.add(expectedValue, (int64_t)actualValue-(int64_t)expectedValue);
129 expectedValue=actualValue;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TypedValueTest.java 62 TypedValue expectedValue = new TypedValue();
63 expectedValue.assetCookie = 1;
64 expectedValue.data = 3;
65 expectedValue.density = 4;
66 expectedValue.resourceId = 5;
67 expectedValue.string = "string";
68 expectedValue.type = 6;
71 actualValue.setTo(expectedValue);
73 assertThat(expectedValue.assetCookie, equalTo(actualValue.assetCookie));
74 assertThat(expectedValue.data, equalTo(actualValue.data))
    [all...]
  /art/runtime/native/
sun_misc_Unsafe.cc 26 static jboolean Unsafe_compareAndSwapInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint expectedValue, jint newValue) {
32 int result = android_atomic_release_cas(expectedValue, newValue, address);
36 static jboolean Unsafe_compareAndSwapLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong expectedValue, jlong newValue) {
42 bool success = QuasiAtomic::Cas64(expectedValue, newValue, address);
49 mirror::Object* expectedValue = soa.Decode<mirror::Object*>(javaExpectedValue);
54 int result = android_atomic_release_cas(reinterpret_cast<int32_t>(expectedValue),
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DatabaseAsserts.java 216 Object expectedValue = expectedValues.get(column);
218 expectedValue = expectedValues.getAsString(column);
220 if (expectedValue != null && !expectedValue.equals(value) || value != null
221 && !value.equals(expectedValue)) {
226 .append(expectedValue)
  /dalvik/vm/native/
sun_misc_Unsafe.cpp 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_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/sync/
SyncTestUtil.java 177 String expectedValue = statEntry.getValue().toLowerCase().trim();
183 if (!expectedValue.contentEquals(actualValue)) {
  /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 "
  /art/runtime/interpreter/
interpreter.cc 211 jint expectedValue = args[3];
216 int r = android_atomic_release_cas(expectedValue, newValue, address);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
loctest.cpp     [all...]
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...]
  /external/icu4c/test/intltest/
ustrtest.cpp 76 UnicodeString expectedValue;
81 expectedValue = "Now is the time for all good men to come swiftly to the aid of the party.\n";
82 if (test1 != expectedValue)
83 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
86 if(*c != expectedValue) {
87 errln("clone()->insert() failed: expected \"" + expectedValue + "\"\n,got \"" + *c + "\"");
92 expectedValue = "Now is the time for all good men to come to the aid of the party.\n";
93 if (test1 != expectedValue)
94 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
97 expectedValue = "Now is the time for all good men to come to the aid of their country.\n"
    [all...]
loctest.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MapInterfaceTest.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 707 Object expectedValue = expectedArguments[i + 1];
708 if (expectedValue instanceof Uri) {
709 expectedValue = ContentUris.parseId((Uri) expectedValue);
711 if (expectedValue == null) {
714 if (expectedValue instanceof Long) {
716 expectedValue, actual.getAsLong(columnName));
717 } else if (expectedValue instanceof Integer) {
719 expectedValue, actual.getAsInteger(columnName));
720 } else if (expectedValue instanceof String)
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cloctst.c     [all...]
  /external/icu4c/test/cintltst/
cloctst.c     [all...]

Completed in 263 milliseconds

1 2