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

1 2

  /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/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...]
AbstractSetMultimapTest.java 60 multimap.put("foo", nullValue());
65 equalMap.put("foo", Sets.newHashSet(1, nullValue()));
72 equalMap.put("foo", Sets.newHashSet(3, nullValue()));
ImmutableClassToInstanceMapTest.java 106 Map<? extends Class<? extends Number>, Number> nullValue
109 ImmutableClassToInstanceMap.copyOf(nullValue);
AbstractListMultimapTest.java 100 multimap.put("foo", nullValue());
105 equalMap.put("foo", asList(1, nullValue()));
112 equalMap.put("foo", asList(3, nullValue()));
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
AudioCapture.java 155 byte nullValue = 0;
158 nullValue = (byte)0x80;
161 if (mRawVizData[i] != nullValue) break;
  /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);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine.h 61 QScriptValue nullValue();
qscriptengine.cpp 247 QScriptValue QScriptEngine::nullValue()
249 return QScriptValue(this, QScriptValue::NullValue);
255 \sa nullValue()
  /external/webkit/Source/WebCore/bindings/js/
SerializedScriptValue.h 66 static SerializedScriptValue* nullValue();
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.h 58 static SerializedScriptValue* nullValue();
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 94 * writer.name("geo").nullValue();
276 return nullValue();
288 public JsonWriter nullValue() throws IOException {
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentsetdocumenturi02.js 92 var nullValue = null;
100 doc.documentURI = nullValue;
documentsetstricterrorchecking02.js 91 var nullValue = null;
105 newAttr = doc.createAttributeNS(nullValue,"dom:test");
  /frameworks/base/core/java/android/util/
JsonWriter.java 94 * writer.name("geo").nullValue();
301 return nullValue();
313 public JsonWriter nullValue() throws IOException {
366 return nullValue();
  /external/webkit/Source/WebCore/storage/
IDBCursorBackendImpl.cpp 106 callbacks->onSuccess(SerializedScriptValue::nullValue());
  /frameworks/base/core/tests/coretests/src/android/util/
JsonWriterTest.java 244 jsonWriter.nullValue();
402 jsonWriter.name("e").nullValue();
439 jsonWriter.nullValue();
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 45 void nullValue();
67 return eng->nullValue();
257 void tst_QScriptEngine::nullValue()
260 QScriptValue value = engine.nullValue();
469 QVERIFY(!eng.toObject(eng.nullValue()).isValid());
522 QScriptValue null = engine1.nullValue();
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm 429 my $nullValue = "0";
430 $nullValue = "$platformType()" if defined $nonPointerTypes{$platformType} && $platformType ne "double";
435 return "$platformType $variableName = $condition ? $constructor : $nullValue;" if $condition;
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 112 QTest::newRow("cnull") << QScriptValue(QScriptValue::NullValue);
119 QTest::newRow("jsnull") << m_engine->nullValue();
164 (void)QScriptValue(QScriptValue::NullValue);
  /external/webkit/Source/WebCore/history/
CachedFrame.cpp 116 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());

Completed in 681 milliseconds

1 2