Searched refs:nullValue (Results 26 - 50 of 85) sorted by relevance

1234

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DMapViewTest.java17 import static org.hamcrest.CoreMatchers.nullValue;
49 assertThat(overlay2.lastMotionEvent, nullValue());
50 assertThat(mapTouchListener.lastMotionEvent, nullValue());
62 assertThat(mapTouchListener.lastMotionEvent, nullValue());
H A DSyncResultTest.java21 assertThat(result.stats, not(nullValue()));
H A DWebViewTest.java70 assertThat(shadowWebView.getWebViewClient(), nullValue());
78 assertThat(shadowWebView.getWebChromeClient(), nullValue());
92 assertThat(shadowWebView.getPictureListener(), nullValue());
102 assertThat(shadowWebView.getJavascriptInterface(name), nullValue());
H A DMediaRecorderTest.java69 assertThat(shadowMediaRecorder.getCamera(), nullValue());
92 assertThat(shadowMediaRecorder.getErrorListener(), nullValue());
101 assertThat(shadowMediaRecorder.getInfoListener(), nullValue());
111 assertThat(shadowMediaRecorder.getOutputPath(), nullValue());
129 assertThat(shadowMediaRecorder.getPreviewDisplay(), nullValue());
H A DCursorAdapterTest.java5 import static org.hamcrest.CoreMatchers.nullValue;
71 assertThat(adapter.getCursor(), nullValue() );
H A DProgressDialogTest.java18 import static org.hamcrest.CoreMatchers.nullValue;
47 assertThat(shadow.getMessage(), nullValue());
H A DSettingsTest.java14 import static org.hamcrest.CoreMatchers.nullValue;
69 assertThat(Settings.System.getString(contentResolver, "property"), nullValue());
H A DVideoViewTest.java5 import static org.hamcrest.CoreMatchers.nullValue;
58 assertThat(shadowVideoView.getVideoPath(), nullValue());
67 assertThat(shadowVideoView.getVideoURIString(), nullValue());
H A DAlertDialogTest.java51 assertThat(ShadowAlertDialog.getLatestAlertDialog(), nullValue());
63 assertThat(shadowOf(dialog).getButton(AlertDialog.BUTTON_POSITIVE), not(nullValue()));
64 assertThat(shadowOf(dialog).getButton(AlertDialog.BUTTON_NEGATIVE), nullValue());
89 assertThat(shadowAlertDialog.getMessage(), nullValue());
353 assertThat(dialog.findViewById(99), nullValue());
360 assertThat(dialog.findViewById(66), nullValue());
368 assertThat(dialog.findViewById(99), nullValue());
H A DParcelTest.java5 import static org.hamcrest.CoreMatchers.nullValue;
57 assertThat(parcel.readString(), nullValue());
72 assertThat( parcel.readString(), nullValue() );
87 assertThat(parcel.readString(), nullValue());
203 assertThat(parcel.readString(), nullValue());
240 assertThat(parcel.readString(), nullValue());
H A DHandlerTest.java17 import static org.hamcrest.CoreMatchers.nullValue;
323 assertThat(m0.obj, nullValue());
327 assertThat(m1.obj, nullValue());
337 assertThat(m3.obj, nullValue());
H A DAdapterViewBehavior.java16 import static org.hamcrest.CoreMatchers.nullValue;
78 assertThat(view, both(sameInstance(adapterView.getChildAt(position))).and(not(nullValue())));
H A DContextWrapperTest.java24 import static org.hamcrest.CoreMatchers.nullValue;
164 assertThat(contextWrapper.getBaseContext(), nullValue());
H A DDialogTest.java16 import static org.hamcrest.CoreMatchers.nullValue;
113 assertThat(ShadowDialog.getLatestDialog(), nullValue());
H A DMatrixCursorTest.java5 import static org.hamcrest.CoreMatchers.nullValue;
130 assertThat(singleColumnSingleNullValueMatrixCursor.getString(0), is(nullValue()));
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp369 const int nullValue = DE_LENGTH_OF_ARRAY(s_shaderStageOrder); local
370 int firstStage = nullValue;
379 if (firstStage == nullValue)
387 const int nullValue = -1; local
388 int lastStage = nullValue;
397 if (lastStage == nullValue)
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractSetMultimapTest.java60 multimap.put("foo", nullValue());
65 equalMap.put("foo", Sets.newHashSet(1, nullValue()));
72 equalMap.put("foo", Sets.newHashSet(3, nullValue()));
H A DImmutableClassToInstanceMapTest.java106 Map<? extends Class<? extends Number>, Number> nullValue
109 ImmutableClassToInstanceMap.copyOf(nullValue);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationPlayer.cpp66 , m_startTime(nullValue())
123 m_startTime = nullValue();
128 m_holdTime = nullValue();
453 m_startTime = nullValue();
639 double inheritedTime = m_idle || isNull(m_timeline->currentTimeInternal()) ? nullValue() : currentTimeInternal();
698 m_startTime = nullValue();
H A DAnimationNode.h57 static inline double nullValue() function in namespace:blink
H A DKeyframe.h83 : m_offset(nullValue())
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.h87 static PassRefPtr<SerializedScriptValue> nullValue();
/external/hamcrest/library/src/org/hamcrest/
H A DMatchers.java133 public static <T> org.hamcrest.Matcher<T> nullValue() { method in class:Matchers
134 return org.hamcrest.core.IsNull.nullValue();
140 public static <T> org.hamcrest.Matcher<T> nullValue(java.lang.Class<T> type) { method in class:Matchers
141 return org.hamcrest.core.IsNull.nullValue(type);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DDrawableResourceLoaderTest.java18 import static org.hamcrest.CoreMatchers.nullValue;
96 assertThat( drawable, nullValue() );
H A DRobolectricPackageManagerTest.java127 assertThat(rpm.resolveActivity(i, 0), nullValue());
146 assertThat(rpm.resolveService(i, 0), nullValue());

Completed in 409 milliseconds

1234