Home
last modified time | relevance | path

Searched refs:IsNull (Results 1 – 25 of 175) sorted by relevance

1234567

/external/tensorflow/tensorflow/lite/nnapi/
Dnnapi_handler_test.cc102 using ::testing::IsNull; in TEST_F()
104 EXPECT_THAT(nnapi->ANeuralNetworks_getDeviceCount, IsNull()); in TEST_F()
105 EXPECT_THAT(nnapi->ANeuralNetworks_getDevice, IsNull()); in TEST_F()
106 EXPECT_THAT(nnapi->ANeuralNetworksDevice_getName, IsNull()); in TEST_F()
107 EXPECT_THAT(nnapi->ANeuralNetworksDevice_getVersion, IsNull()); in TEST_F()
108 EXPECT_THAT(nnapi->ANeuralNetworksDevice_getFeatureLevel, IsNull()); in TEST_F()
109 EXPECT_THAT(nnapi->ANeuralNetworksDevice_getType, IsNull()); in TEST_F()
111 IsNull()); in TEST_F()
112 EXPECT_THAT(nnapi->ANeuralNetworksCompilation_createForDevices, IsNull()); in TEST_F()
113 EXPECT_THAT(nnapi->ANeuralNetworksCompilation_setCaching, IsNull()); in TEST_F()
[all …]
/external/googletest/googletest/test/
Dgtest-unittest-api_test.cc132 AssertionResult IsNull(const char* str) { in IsNull() function
144 EXPECT_TRUE(IsNull(test_suite->type_param())); in TEST()
154 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
155 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
160 EXPECT_TRUE(IsNull(tests[1]->value_param())); in TEST()
161 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
166 EXPECT_TRUE(IsNull(tests[2]->value_param())); in TEST()
167 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
172 EXPECT_TRUE(IsNull(tests[3]->value_param())); in TEST()
173 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgtest-unittest-api_test.cc139 AssertionResult IsNull(const char* str) { in IsNull() function
151 EXPECT_TRUE(IsNull(test_suite->type_param())); in TEST()
161 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
167 EXPECT_TRUE(IsNull(tests[1]->value_param())); in TEST()
168 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
173 EXPECT_TRUE(IsNull(tests[2]->value_param())); in TEST()
174 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
179 EXPECT_TRUE(IsNull(tests[3]->value_param())); in TEST()
180 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DWrappersTest.cs47 Assert.IsNull(message.StringField); in NullIsDefault()
48 Assert.IsNull(message.BytesField); in NullIsDefault()
49 Assert.IsNull(message.BoolField); in NullIsDefault()
50 Assert.IsNull(message.FloatField); in NullIsDefault()
51 Assert.IsNull(message.DoubleField); in NullIsDefault()
52 Assert.IsNull(message.Int32Field); in NullIsDefault()
53 Assert.IsNull(message.Int64Field); in NullIsDefault()
54 Assert.IsNull(message.Uint32Field); in NullIsDefault()
55 Assert.IsNull(message.Uint64Field); in NullIsDefault()
235 … Assert.IsNull(fields[TestWellKnownTypes.StringFieldFieldNumber].Accessor.GetValue(message)); in Reflection_SingleValues()
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
DWrappersTest.cs47 Assert.IsNull(message.StringField); in NullIsDefault()
48 Assert.IsNull(message.BytesField); in NullIsDefault()
49 Assert.IsNull(message.BoolField); in NullIsDefault()
50 Assert.IsNull(message.FloatField); in NullIsDefault()
51 Assert.IsNull(message.DoubleField); in NullIsDefault()
52 Assert.IsNull(message.Int32Field); in NullIsDefault()
53 Assert.IsNull(message.Int64Field); in NullIsDefault()
54 Assert.IsNull(message.Uint32Field); in NullIsDefault()
55 Assert.IsNull(message.Uint64Field); in NullIsDefault()
235 … Assert.IsNull(fields[TestWellKnownTypes.StringFieldFieldNumber].Accessor.GetValue(message)); in Reflection_SingleValues()
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DCallOptionsTest.cs59 Assert.IsNull(options.Headers); in WithMethods()
60 Assert.IsNull(options.Deadline); in WithMethods()
62 Assert.IsNull(options.WriteOptions); in WithMethods()
63 Assert.IsNull(options.PropagationToken); in WithMethods()
64 Assert.IsNull(options.Credentials); in WithMethods()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp1379 if (argValue->IsNull()) in Avg()
1397 if (propertyValue->IsNull()) { in Avg()
1402 if (defaultPropValue->IsNull()) in Avg()
1414 if (newPropertyValue->IsNull()) in Avg()
1458 if (argValue->IsNull()) in Count()
1476 if (propertyValue->IsNull()) { in Count()
1480 if (!newPropertyValue->IsNull()) in Count()
1488 iCount += newPropertyValue->IsNull() ? 0 : 1; in Count()
1494 if (!newPropertyValue->IsNull()) in Count()
1531 if (argValue->IsNull()) in Max()
[all …]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DIsNull.java12 public class IsNull<T> extends BaseMatcher<T> { class
30 return new IsNull<Object>(); in nullValue()
55 return new IsNull<T>(); in nullValue()
/external/libchrome/mojo/public/cpp/base/
Dshared_memory_mojom_traits.h22 static bool IsNull(const base::ReadOnlySharedMemoryRegion& region); in COMPONENT_EXPORT()
34 static bool IsNull(const base::UnsafeSharedMemoryRegion& region); in COMPONENT_EXPORT()
46 static bool IsNull(const base::WritableSharedMemoryRegion& region); in COMPONENT_EXPORT()
Dshared_memory_mojom_traits.cc15 IsNull(const base::ReadOnlySharedMemoryRegion& region) { in IsNull() function in mojo::StructTraits::mojom::ReadOnlySharedMemoryRegionDataView::ReadOnlySharedMemoryRegion
46 IsNull(const base::UnsafeSharedMemoryRegion& region) { in IsNull() function in mojo::StructTraits::mojom::UnsafeSharedMemoryRegionDataView::UnsafeSharedMemoryRegion
77 IsNull(const base::WritableSharedMemoryRegion& region) { in IsNull() function in mojo::StructTraits::mojom::WritableSharedMemoryRegionDataView::WritableSharedMemoryRegion
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs99 Assert.IsNull(messageType.ContainingType); in MessageDescriptor()
100 Assert.IsNull(messageType.Proto.Options); in MessageDescriptor()
152 Assert.IsNull(primitiveField.Proto.Options); in FieldDescriptor()
233 Assert.IsNull(descriptor.Parser); in MapEntryMessageDescriptor()
234 Assert.IsNull(descriptor.ClrType); in MapEntryMessageDescriptor()
235 Assert.IsNull(descriptor.Fields[1].Accessor); in MapEntryMessageDescriptor()
/external/libchrome/mojo/public/cpp/bindings/
Dstring_traits_wtf.h16 static bool IsNull(const WTF::String& input) { return input.IsNull(); }
Darray_traits_stl.h20 static bool IsNull(const std::vector<T>& input) {
72 static bool IsNull(const std::set<T>& input) {
110 static bool IsNull(const MapValuesArrayView<K, V>& input) {
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
DNullSafety.java4 import org.hamcrest.core.IsNull;
14 … matchers.add((Matcher<? super E>) (itemMatcher == null ? IsNull.nullValue() : itemMatcher)); in nullSafe()
/external/webrtc/sdk/android/src/jni/pc/
Dvideo.cc30 return IsNull(jni, j_encoder_factory) in CreateVideoEncoderFactory()
38 return IsNull(jni, j_decoder_factory) in CreateVideoDecoderFactory()
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
DIsNullTest.java7 import static org.hamcrest.core.IsNull.notNullValue;
8 import static org.hamcrest.core.IsNull.nullValue;
/external/grpc-grpc/src/csharp/Grpc.Reflection.Tests/
DSymbolRegistryTest.cs35 Assert.IsNull(registry.FileByName("somepackage/nonexistent.proto")); in FileByName()
45 Assert.IsNull(registry.FileContainingSymbol("somepackage.Nonexistent")); in FileContainingSymbol()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DGeneratedMessageTest.cs70 Assert.IsNull(message.SingleForeignMessage); in DefaultValues()
72 Assert.IsNull(message.SingleImportMessage); in DefaultValues()
76 Assert.IsNull(message.SingleNestedMessage); in DefaultValues()
77 Assert.IsNull(message.SinglePublicImportMessage); in DefaultValues()
113 Assert.IsNull(message.OneofNestedMessage); in DefaultValues()
561 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
568 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
576 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
583 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
598 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
/external/llvm-project/lldb/unittests/Utility/
DConstStringTest.cpp81 EXPECT_FALSE(foo.IsNull()); in TEST()
86 EXPECT_FALSE(empty.IsNull()); in TEST()
91 EXPECT_TRUE(null.IsNull()); in TEST()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs177 Assert.IsNull(messageType.ContainingType); in MessageDescriptor()
178 Assert.IsNull(messageType.Proto.Options); in MessageDescriptor()
258 Assert.IsNull(primitiveField.Proto.Options); in TestFieldDescriptor()
343 Assert.IsNull(descriptor.Parser); in MapEntryMessageDescriptor()
344 Assert.IsNull(descriptor.ClrType); in MapEntryMessageDescriptor()
345 Assert.IsNull(descriptor.Fields[1].Accessor); in MapEntryMessageDescriptor()
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs70 Assert.IsNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_NoAccessibleGetter()
94 Assert.IsNull(PropertyInfoExtensions.GetSetMethod(propertyInfo)); in GetSetMethod_NoAccessibleGetter()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs70 Assert.IsNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_NoAccessibleGetter()
94 Assert.IsNull(PropertyInfoExtensions.GetSetMethod(propertyInfo)); in GetSetMethod_NoAccessibleGetter()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DGeneratedMessageTest.cs70 Assert.IsNull(message.SingleForeignMessage); in DefaultValues()
72 Assert.IsNull(message.SingleImportMessage); in DefaultValues()
76 Assert.IsNull(message.SingleNestedMessage); in DefaultValues()
77 Assert.IsNull(message.SinglePublicImportMessage); in DefaultValues()
113 Assert.IsNull(message.OneofNestedMessage); in DefaultValues()
561 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
568 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
576 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
583 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
598 Assert.IsNull(message.OneofNestedMessage); in OneofProperties()
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dinterface_stub_declaration.tmpl24 if (ImplRefTraits::IsNull(sink_))
33 if (ImplRefTraits::IsNull(sink_))
/external/pdfium/core/fpdfapi/page/
Dcpdf_colorstate.cpp56 return pColor && !pColor->IsNull(); in HasFillColor()
70 return pColor && !pColor->IsNull(); in HasStrokeColor()
106 else if (color->IsNull()) in SetColor()

1234567