Home
last modified time | relevance | path

Searched refs:IsNotNull (Results 1 – 22 of 22) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs57 Assert.IsNotNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_Success()
81 Assert.IsNotNull(PropertyInfoExtensions.GetSetMethod(propertyInfo)); in GetSetMethod_Success()
DTypeExtensionsTest.cs76 Assert.IsNotNull(property); in GetProperty_Success()
96 Assert.IsNotNull(method); in GetMethod_Success()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs57 Assert.IsNotNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_Success()
81 Assert.IsNotNull(PropertyInfoExtensions.GetSetMethod(propertyInfo)); in GetSetMethod_Success()
DTypeExtensionsTest.cs76 Assert.IsNotNull(property); in GetProperty_Success()
96 Assert.IsNotNull(method); in GetMethod_Success()
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_integer.inl88 unsigned char IsNotNull = _BitScanForward(&Result, *reinterpret_cast<unsigned long*>(&Value)); local
89 return IsNotNull ? int(Result) : -1;
100 …unsigned char IsNotNull = _BitScanForward64(&Result, *reinterpret_cast<unsigned __int64*>(&Value)); local
101 return IsNotNull ? int(Result) : -1;
146 unsigned char IsNotNull = _BitScanReverse(&Result, *reinterpret_cast<unsigned long*>(&Value)); local
147 return IsNotNull ? int(Result) : -1;
164 …unsigned char IsNotNull = _BitScanReverse64(&Result, *reinterpret_cast<unsigned __int64*>(&Value)); local
165 return IsNotNull ? int(Result) : -1;
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DGrpcEnvironmentTest.cs36 Assert.IsNotNull(env.CompletionQueues.ElementAt(i)); in InitializeAndShutdownGrpcEnvironment()
DContextPropagationTest.cs75 Assert.IsNotNull(propagationToken.ParentCall); in PropagateCancellation()
DClientServerTest.cs185 Assert.IsNotNull(call.GetTrailers()); in ClientStreamingCall()
/external/clang/lib/StaticAnalyzer/Checkers/
DNullabilityChecker.cpp276 enum class NullConstraint { IsNull, IsNotNull, Unknown }; enumerator
282 return NullConstraint::IsNotNull; in getNullConstraint()
642 Nullness != NullConstraint::IsNotNull && in checkPreStmt()
730 if (Nullness == NullConstraint::IsNotNull || in checkPreCall()
823 if (Nullness == NullConstraint::IsNotNull) in getReceiverNullability()
1159 if (RhsNullness == NullConstraint::IsNotNull || in checkBind()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DNullabilityChecker.cpp264 enum class NullConstraint { IsNull, IsNotNull, Unknown }; enumerator
270 return NullConstraint::IsNotNull; in getNullConstraint()
658 Nullness != NullConstraint::IsNotNull && in checkPreStmt()
749 if (Nullness == NullConstraint::IsNotNull || in checkPreCall()
838 if (Nullness == NullConstraint::IsNotNull) in getReceiverNullability()
1174 if (RhsNullness == NullConstraint::IsNotNull || in checkBind()
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/
DClientInterceptorTest.cs130 Assert.IsNotNull(call.GetTrailers()); in CountNumberOfRequestsInClientInterceptors()
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClient.cs206 Assert.IsNotNull(response); in RunEmptyUnary()
699 Assert.IsNotNull(keyFile); in GetEmailFromServiceAccountFile()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DJsonTokenizerTest.cs280 Assert.IsNotNull(tokenizer.Next()); in InvalidStructure()
DCodedInputStreamTest.cs308 Assert.IsNotNull(message.A); in AssertMessageDepth()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DJsonTokenizerTest.cs280 Assert.IsNotNull(tokenizer.Next()); in InvalidStructure()
DFieldMaskTreeTest.cs432 Assert.IsNotNull(destination.Payload); in Merge()
DCodedInputStreamTest.cs322 Assert.IsNotNull(message.A); in AssertMessageDepth()
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.cpp112 IsNotNull, enumerator
634 writer.append(OpCode::IsNotNull, op.value(), op.getSuccessors()); in generate()
1107 case IsNotNull: { in execute()
/external/llvm-project/clang/lib/CodeGen/
DCGDecl.cpp747 llvm::Value *IsNotNull = Builder.CreateIsNotNull(RHS); in EmitNullabilityCheck() local
752 EmitCheck({{IsNotNull, SanitizerKind::NullabilityAssign}}, in EmitNullabilityCheck()
DMicrosoftCXXABI.cpp3172 llvm::Value *IsNotNull = EmitMemberPointerIsNotNull(CGF, Src, SrcTy); in EmitMemberPointerConversion() local
3181 return Builder.CreateSelect(IsNotNull, Src, DstNull); in EmitMemberPointerConversion()
3187 Builder.CreateCondBr(IsNotNull, ConvertBB, ContinueBB); in EmitMemberPointerConversion()
/external/clang/lib/CodeGen/
DMicrosoftCXXABI.cpp3013 llvm::Value *IsNotNull = EmitMemberPointerIsNotNull(CGF, Src, SrcTy); in EmitMemberPointerConversion() local
3022 return Builder.CreateSelect(IsNotNull, Src, DstNull); in EmitMemberPointerConversion()
3028 Builder.CreateCondBr(IsNotNull, ConvertBB, ContinueBB); in EmitMemberPointerConversion()
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc8352 MATCHER(IsNotNull, "") { return arg != nullptr; } in TEST()
8358 EXPECT_THAT(p, IsNotNull()); in TEST()
8359 EXPECT_THAT(std::unique_ptr<int>(), Not(IsNotNull())); in TEST()