Searched defs:nullValue (Results 1 - 25 of 36) sorted by relevance

12

/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/core/
H A DIsNull.java26 * <pre>assertThat(cheese, is(nullValue())</pre>
29 public static Matcher<Object> nullValue() { method in class:IsNull
34 * A shortcut to the frequently used <code>not(nullValue())</code>.
38 * <pre>assertThat(cheese, is(not(nullValue())))</pre>
42 return not(nullValue());
49 * <pre>assertThat(cheese, is(nullValue(Cheese.class))</pre>
54 public static <T> Matcher<T> nullValue(Class<T> type) { method in class:IsNull
59 * A shortcut to the frequently used <code>not(nullValue(X.class)). Accepts a
64 * <pre>assertThat(cheese, is(not(nullValue(X.class))))</pre>
71 return not(nullValue(typ
[all...]
/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/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimapsTest.java185 @Nullable String nullKey, @Nullable Integer nullValue) {
187 prepareUnmodifiableTests(multimap, permitsDuplicates, nullKey, nullValue);
220 @Nullable String nullKey, @Nullable Integer nullValue) {
227 multimap.put(nullKey, nullValue);
228 multimap.put("foo", nullValue);
183 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
218 prepareUnmodifiableTests( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
/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/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 DMultimapsTest.java277 @Nullable String nullKey, @Nullable Integer nullValue) {
279 prepareUnmodifiableTests(multimap, permitsDuplicates, nullKey, nullValue);
312 @Nullable String nullKey, @Nullable Integer nullValue) {
319 multimap.put(nullKey, nullValue);
320 multimap.put("foo", nullValue);
275 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
310 prepareUnmodifiableTests( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
/external/jsoncpp/src/test_lib_json/
H A Dmain.cpp173 JSONTEST_ASSERT(emptyObject_.isConvertibleTo(Json::nullValue));
176 JSONTEST_ASSERT(!object1_.isConvertibleTo(Json::nullValue));
215 JSONTEST_ASSERT(emptyArray_.isConvertibleTo(Json::nullValue));
218 JSONTEST_ASSERT(!array1_.isConvertibleTo(Json::nullValue));
246 JSONTEST_ASSERT_EQUAL(Json::nullValue, null_.type());
252 JSONTEST_ASSERT(null_.isConvertibleTo(Json::nullValue));
280 JSONTEST_ASSERT(emptyString_.isConvertibleTo(Json::nullValue));
283 JSONTEST_ASSERT(!string1_.isConvertibleTo(Json::nullValue));
308 JSONTEST_ASSERT(false_.isConvertibleTo(Json::nullValue));
311 JSONTEST_ASSERT(!true_.isConvertibleTo(Json::nullValue));
1506 Json::Value nullValue; local
[all...]
/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/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
H A DMatchers.java397 * A shortcut to the frequently used <code>not(nullValue())</code>.
401 * <pre>assertThat(cheese, is(not(nullValue())))</pre>
408 * A shortcut to the frequently used <code>not(nullValue(X.class)). Accepts a
413 * <pre>assertThat(cheese, is(not(nullValue(X.class))))</pre>
425 * <pre>assertThat(cheese, is(nullValue())</pre>
427 public static org.hamcrest.Matcher<java.lang.Object> nullValue() { method in class:Matchers
428 return org.hamcrest.core.IsNull.nullValue();
435 * <pre>assertThat(cheese, is(nullValue(Cheese.class))</pre>
440 public static <T> org.hamcrest.Matcher<T> nullValue(java.lang.Class<T> type) { method in class:Matchers
441 return org.hamcrest.core.IsNull.<T>nullValue(typ
[all...]
/external/jsoncpp/include/json/
H A Dvalue.h38 nullValue = 0, ///< 'null' value enumerator in enum:Json::ValueType
104 * Non const methods will automatically create the a #nullValue element
107 * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue.
212 Value(ValueType type = nullValue);
302 /// \pre type() is arrayValue, objectValue, or nullValue
308 /// May only be called on nullValue or arrayValue.
309 /// \pre type() is arrayValue or nullValue
392 /// \pre type() is objectValue or nullValue
410 /// \pre type() is objectValue or nullValue
411 /// \post if type() was nullValue, i
[all...]
/external/protobuf/conformance/third_party/jsoncpp/
H A Djson.h464 nullValue = 0, ///< 'null' value enumerator in enum:Json::ValueType
530 * Non-const methods will automatically create the a #nullValue element
533 * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue.
652 Value(ValueType type = nullValue);
758 /// \pre type() is arrayValue, objectValue, or nullValue
764 /// May only be called on nullValue or arrayValue.
765 /// \pre type() is arrayValue or nullValue
862 /// \return non-zero, but JSON_ASSERT if this is neither object nor nullValue.
868 /// \pre type() is objectValue or nullValue
912 /// \pre type() is objectValue or nullValue
[all...]
/external/annotation-tools/scene-lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/sqlite/dist/orig/
H A Dshell.c7949 char nullValue[20]; /* The text to print when a NULL comes back from member in struct:ShellState
8436 ** the separator, which may or may not be a comma. p->nullValue is
8443 utf8_printf(out,"%s",p->nullValue);
8602 azArg[i] ? azArg[i] : p->nullValue, p->rowSeparator);
8632 n = strlenChar(azArg && azArg[i] ? azArg[i] : p->nullValue);
8676 utf8_width_print(p->out, w, azArg[i] ? azArg[i] : p->nullValue);
8760 if( z==0 ) z = p->nullValue;
8784 output_html_string(p->out, azArg[i] ? azArg[i] : p->nullValue);
8800 output_c_string(p->out, azArg[i] ? azArg[i] : p->nullValue);
8920 utf8_printf(p->out,"%s",azArg[i] ? azArg[i] : p->nullValue);
[all...]
/external/sqlite/dist/
H A Dshell.c7955 char nullValue[20]; /* The text to print when a NULL comes back from member in struct:ShellState
8442 ** the separator, which may or may not be a comma. p->nullValue is
8449 utf8_printf(out,"%s",p->nullValue);
8608 azArg[i] ? azArg[i] : p->nullValue, p->rowSeparator);
8638 n = strlenChar(azArg && azArg[i] ? azArg[i] : p->nullValue);
8682 utf8_width_print(p->out, w, azArg[i] ? azArg[i] : p->nullValue);
8766 if( z==0 ) z = p->nullValue;
8790 output_html_string(p->out, azArg[i] ? azArg[i] : p->nullValue);
8806 output_c_string(p->out, azArg[i] ? azArg[i] : p->nullValue);
8926 utf8_printf(p->out,"%s",azArg[i] ? azArg[i] : p->nullValue);
[all...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/libphonenumber/lib/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/lib/junit/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/caliper/lib/
H A Dgson-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/stream/ ...
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...
/external/guice/extensions/persist/lib/
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 1102 milliseconds

12