HomeSort by relevance Sort by last modified time
    Searched full:nullvalue (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TileListTest.java 40 assertThat(mTileList.getItemAt(3), nullValue());
41 assertThat(mTileList.getItemAt(100), nullValue());
46 assertThat(mTileList.addOrReplace(createTile(0, 1, 2, 3)), nullValue());
50 assertThat(mTileList.getItemAt(3), nullValue());
56 assertThat(mTileList.addOrReplace(createTile(0, 1, 2, 3)), nullValue());
60 assertThat(mTileList.addOrReplace(createTile(3, 1, 2, 3)), nullValue());
69 assertThat(mTileList.addOrReplace(createTile(0, 1, 2, 3)), nullValue());
70 assertThat(mTileList.addOrReplace(createTile(3, 1, 2, 3)), nullValue());
71 assertThat(mTileList.addOrReplace(createTile(6, 1, 2, 3)), nullValue());
76 assertThat(mTileList.getAtIndex(3), nullValue());
    [all...]
MessageQueueTest.java 26 import static org.hamcrest.CoreMatchers.nullValue;
74 assertThat(msg, nullValue());
96 assertThat(msg, nullValue());
123 assertThat(msg, nullValue());
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ListPreferenceTest.java 15 import static org.hamcrest.CoreMatchers.nullValue;
40 assertThat(listPreference.getEntries(), nullValue());
47 assertThat(listPreference.getEntries(), nullValue());
56 assertThat(listPreference.getEntryValues(), nullValue());
63 assertThat(listPreference.getEntryValues(), nullValue());
70 assertThat(listPreference.getValue(), nullValue());
CameraTest.java 21 import static org.hamcrest.CoreMatchers.nullValue;
111 assertThat(callback.camera, nullValue());
112 assertThat(callback.data, nullValue());
124 assertThat(callback.camera, nullValue());
125 assertThat(callback.data, nullValue());
137 assertThat(callback.camera, nullValue());
138 assertThat(callback.data, nullValue());
150 assertThat(callback.camera, nullValue());
151 assertThat(callback.data, nullValue());
157 assertThat(callback.camera, nullValue());
    [all...]
AndroidHttpClientTest.java 25 assertThat(client, not(nullValue()));
31 assertThat(client, not(nullValue()));
PreferenceActivityTest.java 5 import static org.hamcrest.CoreMatchers.nullValue;
46 assertThat(activity.getPreferenceScreen(), nullValue());
PreferenceScreenTest.java 13 import static org.hamcrest.CoreMatchers.nullValue;
38 assertThat(screen.getDialog(), nullValue());
PreferenceTest.java 5 import static org.hamcrest.CoreMatchers.nullValue;
66 assertThat(shadow.getAttrs(), nullValue());
85 assertThat(preference.getKey(), nullValue());
94 assertThat(preference.getTitle(), nullValue());
112 assertThat(preference.getSummary(), nullValue());
130 assertThat(shadow.getDefaultValue(), nullValue());
224 assertThat( preference.getIntent(), nullValue() );
231 assertThat( preference.getDependency(), nullValue() );
SeekBarTest.java 3 import static org.hamcrest.CoreMatchers.nullValue;
39 assertThat(shadow.getOnSeekBarChangeListener(), nullValue());
AlarmManagerTest.java 42 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
51 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
73 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
80 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
86 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
93 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
99 assertThat(shadowAlarmManager.getNextScheduledAlarm(), nullValue());
AbsSpinnerTest.java 68 assertThat(spinner.getSelectedItem(), nullValue());
90 assertThat(spinner.getSelectedView(), nullValue());
98 assertThat(spinner.getSelectedView(), nullValue());
UriMatcherTest.java 13 import static org.hamcrest.CoreMatchers.nullValue;
35 assertThat(root.number, is(nullValue()));
36 assertThat(root.text, is(nullValue()));
RatingBarTest.java 4 import static org.hamcrest.CoreMatchers.nullValue;
41 assertThat(shadow.getOnRatingBarChangeListener(), nullValue());
ContextTest.java 68 assertThat(dataDir, not(nullValue()));
79 assertThat(dataDir, not(nullValue()));
85 assertThat(context.obtainStyledAttributes(null), not(nullValue()));
86 assertThat(context.obtainStyledAttributes(0, null), not(nullValue()));
87 assertThat(context.obtainStyledAttributes(null, null), not(nullValue()));
88 assertThat(context.obtainStyledAttributes(null, null, 0, 0), not(nullValue()));
MediaRecorderTest.java 69 assertThat(shadowMediaRecorder.getCamera(), nullValue());
92 assertThat(shadowMediaRecorder.getErrorListener(), nullValue());
101 assertThat(shadowMediaRecorder.getInfoListener(), nullValue());
111 assertThat(shadowMediaRecorder.getOutputPath(), nullValue());
129 assertThat(shadowMediaRecorder.getPreviewDisplay(), nullValue());
VideoViewTest.java 5 import static org.hamcrest.CoreMatchers.nullValue;
58 assertThat(shadowVideoView.getVideoPath(), nullValue());
67 assertThat(shadowVideoView.getVideoURIString(), nullValue());
MapViewTest.java 17 import static org.hamcrest.CoreMatchers.nullValue;
49 assertThat(overlay2.lastMotionEvent, nullValue());
50 assertThat(mapTouchListener.lastMotionEvent, nullValue());
62 assertThat(mapTouchListener.lastMotionEvent, nullValue());
  /external/hamcrest/src/org/hamcrest/core/
IsNull.java 27 public static <T> Matcher<T> nullValue() {
36 return not(IsNull.<T>nullValue());
43 public static <T> Matcher<T> nullValue(@SuppressWarnings("unused") Class<T> type) {
44 return nullValue();
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
XmlUtilsTest.java 32 map.put(null, "nullValue");
38 assertEquals("nullValue", deserialized.get(null));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ResourceExtractorTest.java 24 assertThat(resourceExtractor.getLocalResourceId("styleable/TitleBar_textStyle"), CoreMatchers.<Object>nullValue());
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponseTest.java 10 import static org.hamcrest.CoreMatchers.nullValue;
23 assertThat(resp.getFirstHeader("None"), nullValue());
24 assertThat(new TestHttpResponse(200, "OK").getFirstHeader("Foo"), nullValue());
38 assertThat(resp.getLastHeader("None"), nullValue());
  /external/jsoncpp/src/test_lib_json/
main.cpp 182 JSONTEST_ASSERT(emptyObject_.isConvertibleTo(Json::nullValue));
185 JSONTEST_ASSERT(!object1_.isConvertibleTo(Json::nullValue));
226 JSONTEST_ASSERT(emptyArray_.isConvertibleTo(Json::nullValue));
229 JSONTEST_ASSERT(!array1_.isConvertibleTo(Json::nullValue));
259 JSONTEST_ASSERT_EQUAL(Json::nullValue, null_.type());
265 JSONTEST_ASSERT(null_.isConvertibleTo(Json::nullValue));
295 JSONTEST_ASSERT(emptyString_.isConvertibleTo(Json::nullValue));
298 JSONTEST_ASSERT(!string1_.isConvertibleTo(Json::nullValue));
325 JSONTEST_ASSERT(false_.isConvertibleTo(Json::nullValue));
328 JSONTEST_ASSERT(!true_.isConvertibleTo(Json::nullValue));
    [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp 284 case nullValue:
463 case nullValue:
512 case nullValue:
589 case nullValue:
655 case nullValue:
706 case nullValue:
746 case nullValue:
771 case nullValue:
797 case nullValue:
821 case nullValue
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 280 case nullValue:
459 case nullValue:
508 case nullValue:
585 case nullValue:
651 case nullValue:
702 case nullValue:
742 case nullValue:
767 case nullValue:
793 case nullValue:
817 case nullValue
    [all...]
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 133 public static <T> org.hamcrest.Matcher<T> nullValue() {
134 return org.hamcrest.core.IsNull.nullValue();
140 public static <T> org.hamcrest.Matcher<T> nullValue(java.lang.Class<T> type) {
141 return org.hamcrest.core.IsNull.nullValue(type);

Completed in 1066 milliseconds

1 2 3 4 5