Searched refs:IsNull (Results 1 - 25 of 157) sorted by relevance

1234567

/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIsNull.java12 public class IsNull<T> extends BaseMatcher<T> { class in inherits:BaseMatcher
30 return new IsNull<Object>();
55 return new IsNull<T>();
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
H A DNullSafety.java4 import org.hamcrest.core.IsNull;
14 matchers.add((Matcher<? super E>) (itemMatcher == null ? IsNull.nullValue() : itemMatcher));
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/v8/testing/gtest/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/dng_sdk/source/
H A Ddng_tone_curve.h51 bool IsNull () const;
/external/v8/src/base/platform/
H A Delapsed-timer.h45 DCHECK(started_ || start_ticks_.IsNull());
46 DCHECK(!started_ || !start_ticks_.IsNull());
47 return !start_ticks_.IsNull();
85 DCHECK(!now.IsNull());
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
H A DIsNullTest.java7 import static org.hamcrest.core.IsNull.notNullValue;
8 import static org.hamcrest.core.IsNull.nullValue;
/external/libmojo/mojo/public/cpp/bindings/
H A Dstring_traits_standard.h15 static bool IsNull(const String& input) { return input.is_null(); } function in struct:mojo::StringTraits
H A Dstring_traits_stl.h16 static bool IsNull(const std::string& input) { function in struct:mojo::StringTraits
H A Dstring_traits_string16.h15 static bool IsNull(const base::string16& input) { function in struct:mojo::StringTraits
H A Dstring_traits_string_piece.h15 static bool IsNull(const base::StringPiece& input) { function in struct:mojo::StringTraits
H A Dstring_traits_wtf.h16 static bool IsNull(const WTF::String& input) { return input.isNull(); } function in struct:mojo::StringTraits
H A Darray_traits_standard.h17 static bool IsNull(const Array<T>& input) { return input.is_null(); } function in struct:mojo::ArrayTraits
H A Darray_traits_wtf.h17 static bool IsNull(const WTFArray<U>& input) { return input.is_null(); } function in struct:mojo::ArrayTraits
H A Darray_traits_wtf_vector.h17 static bool IsNull(const WTF::Vector<U>& input) { function in struct:mojo::ArrayTraits
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_color.h20 bool IsNull() const { return !m_pBuffer; } function in class:CPDF_Color
H A Dcpdf_colorstate.cpp55 return pColor && !pColor->IsNull();
69 return pColor && !pColor->IsNull();
126 else if (color.IsNull())
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
H A DPropertyInfoExtensionsTest.cs70 Assert.IsNull(PropertyInfoExtensions.GetGetMethod(propertyInfo));
94 Assert.IsNull(PropertyInfoExtensions.GetSetMethod(propertyInfo));
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DWrappersTest.cs47 Assert.IsNull(message.StringField);
48 Assert.IsNull(message.BytesField);
49 Assert.IsNull(message.BoolField);
50 Assert.IsNull(message.FloatField);
51 Assert.IsNull(message.DoubleField);
52 Assert.IsNull(message.Int32Field);
53 Assert.IsNull(message.Int64Field);
54 Assert.IsNull(message.Uint32Field);
55 Assert.IsNull(message.Uint64Field);
235 Assert.IsNull(field
[all...]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
H A DIsBlankString.java11 import static org.hamcrest.core.IsNull.nullValue;
H A DIsEmptyString.java9 import static org.hamcrest.core.IsNull.nullValue;
/external/v8/src/
H A Dprototype.h61 is_at_end_(object_->IsNull(isolate_)),
77 is_at_end_(handle_->IsNull(isolate_)),
132 : prototype->IsNull(isolate_);
172 where_to_end_ == END_AT_NON_HIDDEN || handle_->IsNull(isolate_);
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs99 Assert.IsNull(messageType.ContainingType);
100 Assert.IsNull(messageType.Proto.Options);
152 Assert.IsNull(primitiveField.Proto.Options);
233 Assert.IsNull(descriptor.Parser);
234 Assert.IsNull(descriptor.ClrType);
235 Assert.IsNull(descriptor.Fields[1].Accessor);

Completed in 410 milliseconds

1234567