HomeSort by relevance Sort by last modified time
    Searched refs:nullValue (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObjectMac.mm 51 NSNull *nullValue = [NSNull null];
53 nullValue, @"anchorPoint",
54 nullValue, @"bounds",
55 nullValue, @"contents",
56 nullValue, @"contentsRect",
57 nullValue, @"opacity",
58 nullValue, @"position",
59 nullValue, @"shadowColor",
60 nullValue, @"sublayerTransform",
61 nullValue, @"sublayers"
    [all...]
  /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();
  /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());
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()));
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()));
MapViewTest.java 17 import static org.hamcrest.CoreMatchers.nullValue;
49 assertThat(overlay2.lastMotionEvent, nullValue());
50 assertThat(mapTouchListener.lastMotionEvent, nullValue());
62 assertThat(mapTouchListener.lastMotionEvent, nullValue());
SyncResultTest.java 21 assertThat(result.stats, not(nullValue()));
WebViewTest.java 70 assertThat(shadowWebView.getWebViewClient(), nullValue());
78 assertThat(shadowWebView.getWebChromeClient(), nullValue());
92 assertThat(shadowWebView.getPictureListener(), nullValue());
102 assertThat(shadowWebView.getJavascriptInterface(name), nullValue());
  /external/junit/src/org/junit/
Assume.java 6 import static org.hamcrest.CoreMatchers.nullValue;
92 assumeThat(t, nullValue());
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptengine/
tst_qscriptengine.cpp 36 void nullValue();
108 void tst_QScriptEngine::nullValue()
112 engine.nullValue();
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMultimapTest.java 83 protected Integer nullValue() {
139 multimap.put(nullKey(), nullValue());
140 multimap.put("foo", nullValue());
155 multimap.put(nullKey(), nullValue());
189 assertFalse(multimap.containsValue(nullValue()));
193 multimap.put("foo", nullValue());
194 assertTrue(multimap.containsValue(nullValue()));
233 multimap.put(nullKey(), nullValue());
237 assertTrue(values.contains(nullValue()));
278 Collection<Integer> collection = Lists.newArrayList(1, nullValue());
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
AudioCapture.java 155 byte nullValue = 0;
158 nullValue = (byte)0x80;
161 if (mRawVizData[i] != nullValue) break;
  /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/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 119 NSNull* nullValue = [NSNull null];
121 nullValue, @"anchorPoint",
122 nullValue, @"bounds",
123 nullValue, @"contents",
124 nullValue, @"contentsRect",
125 nullValue, @"opacity",
126 nullValue, @"position",
127 nullValue, @"shadowColor",
128 nullValue, @"sublayerTransform",
129 nullValue, @"sublayers"
    [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 2843 milliseconds

1 2 3 4