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

1234

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
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/robolectric/v3/
H A Drobolectric-annotations-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/annotation/ org/robolectric/annotation/internal/ ...
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DGZipIntegrationTest.java37 import static org.hamcrest.CoreMatchers.nullValue;
151 assertThat(contentEncoding, is(nullValue()));
/external/dagger2/core/src/test/java/dagger/internal/
H A DMapProviderFactoryTest.java43 public void nullValue() { method in class:MapProviderFactoryTest
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCoreMatchers.java313 * A shortcut to the frequently used <code>not(nullValue())</code>.
317 * <pre>assertThat(cheese, is(not(nullValue())))</pre>
324 * A shortcut to the frequently used <code>not(nullValue(X.class)). Accepts a
329 * <pre>assertThat(cheese, is(not(nullValue(X.class))))</pre>
341 * <pre>assertThat(cheese, is(nullValue())</pre>
343 public static org.hamcrest.Matcher<java.lang.Object> nullValue() { method in class:CoreMatchers
344 return org.hamcrest.core.IsNull.nullValue();
351 * <pre>assertThat(cheese, is(nullValue(Cheese.class))</pre>
356 public static <T> org.hamcrest.Matcher<T> nullValue(java.lang.Class<T> type) { method in class:CoreMatchers
357 return org.hamcrest.core.IsNull.nullValue(typ
[all...]
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp2720 case nullValue:
2809 case nullValue:
2850 initBasic(nullValue);
2857 case nullValue:
2916 case nullValue:
2972 case nullValue:
3030 case nullValue:
3075 case nullValue:
3097 case nullValue:
3120 case nullValue
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp487 const int nullValue = DE_LENGTH_OF_ARRAY(s_shaderStageOrder);
488 int firstStage = nullValue;
497 if (firstStage == nullValue)
505 const int nullValue = -1;
506 int lastStage = nullValue;
515 if (lastStage == nullValue)
/external/protobuf/objectivec/google/protobuf/
H A DStruct.pbobjc.h113 @property(nonatomic, readwrite) GPBNullValue nullValue; variable
132 /// Fetches the raw value of a @c GPBValue's @c nullValue property, even
135 /// Sets the raw value of an @c GPBValue's @c nullValue property, allowing
/external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/
H A DConfig.java571 private <T> T pick(T baseValue, T overlayValue, T nullValue) { argument
572 return overlayValue != null ? (overlayValue.equals(nullValue) ? baseValue : overlayValue) : null;
575 private int[] pickSdk(int[] baseValue, int[] overlayValue, int[] nullValue) { argument
576 return Arrays.equals(overlayValue, nullValue) ? baseValue : overlayValue;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableClassToInstanceMapTest.java107 Map<? extends Class<? extends Number>, Number> nullValue
110 ImmutableClassToInstanceMap.copyOf(nullValue);
/external/robolectric/v1/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());
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
H A DMapFieldTest.cs69 var nullValue = (T) (object) null;
70 Assert.Throws<ArgumentNullException>(() => map.Add(0, nullValue));
71 Assert.Throws<ArgumentNullException>(() => map[0] = nullValue);

Completed in 1104 milliseconds

1234