OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsNull
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp
83
bool
IsNull
= !Cond.castAs<nonloc::PointerToMember>().isNullMemberPointer();
84
bool IsFeasible =
IsNull
? Assumption : !Assumption;
ProgramState.cpp
275
if (!T.
isNull
() && (T->isIntegralOrEnumerationType() || Loc::isLocType(T))) {
337
if (indexTy.
isNull
())
367
ConditionTruthVal
IsNull
=
isNull
(V);
368
if (
IsNull
.isUnderconstrained())
369
return
IsNull
;
370
return ConditionTruthVal(!
IsNull
.getValue());
377
ConditionTruthVal ProgramState::
isNull
(SVal V) const {
388
return getStateManager().ConstraintMgr->
isNull
(this, Sym);
/src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_log_writer_test.cc
36
using ::testing::
IsNull
;
104
ASSERT_THAT(B.Data,
IsNull
());
116
ASSERT_THAT(B.Data,
IsNull
());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp
264
enum class NullConstraint {
IsNull
, IsNotNull, Unknown };
268
ConditionTruthVal Nullness = State->
isNull
(Val);
272
return NullConstraint::
IsNull
;
354
if (getNullConstraint(*StoredVal, State) == NullConstraint::
IsNull
)
621
Nullness == NullConstraint::
IsNull
);
722
Nullness == NullConstraint::
IsNull
&&
1000
if (Nullness == NullConstraint::
IsNull
) {
1131
RhsNullness == NullConstraint::
IsNull
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp
99
assert(!ThisTy.
isNull
());
285
assert(ReturnValue.
isNull
() && "Constructor shouldn't have return value");
364
assert(ReturnValue.
isNull
() && "Destructor shouldn't have return value");
1690
llvm::Value *
isNull
=
1691
Builder.CreateIsNull(allocation.getPointer(), "new.
isnull
");
1692
Builder.CreateCondBr(
isNull
, contBB, notNullBB);
2072
llvm::Value *
IsNull
= Builder.CreateIsNull(Ptr.getPointer(), "
isnull
");
2074
Builder.CreateCondBr(
IsNull
, DeleteEnd, DeleteNotNull);
2182
llvm::Value *
IsNull
= CGF.Builder.CreateIsNull(ThisPtr.getPointer())
[
all
...]
CGVTables.cpp
86
llvm::Value *
IsNull
= CGF.Builder.CreateIsNull(ReturnValue);
87
CGF.Builder.CreateCondBr(
IsNull
, AdjustNull, AdjustNotNull);
383
if (!ResultType->isVoidType() && Slot.
isNull
())
CGClass.cpp
358
llvm::Value *
isNull
= Builder.CreateIsNull(Value.getPointer());
359
Builder.CreateCondBr(
isNull
, endBB, notNullBB);
430
llvm::Value *
IsNull
= Builder.CreateIsNull(BaseAddr.getPointer());
431
Builder.CreateCondBr(
IsNull
, CastNull, CastNotNull);
2897
if (!resultType->isVoidType() && returnSlot.
isNull
()) {
ItaniumCXXABI.cpp
930
llvm::Value *
isNull
= Builder.CreateICmpEQ(src, null, "memptr.
isnull
");
931
return Builder.CreateSelect(
isNull
, src, dst);
1513
llvm::Value *
IsNull
= CGF.Builder.CreateIsNull(Value);
1514
CGF.Builder.CreateCondBr(
IsNull
, BadCastBlock, CastEnd);
/src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp
887
Value *
IsNull
= new ICmpInst(*EntryBB, ICmpInst::ICMP_EQ, CachedVal,
888
NullPtr, "
isNull
");
889
BranchInst::Create(LookupBB, DoCallBB,
IsNull
, EntryBB);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp
91
if (!Ty.
isNull
()) {
129
if (Ty.
isNull
()) {
276
if (S.NSNumberPointer.
isNull
()) {
1035
if (QIDNSCopying.
isNull
()) {
1049
if (!QIDNSCopying.
isNull
())
1148
if (!NotEncodedT.
isNull
())
1408
if (Ty.
isNull
())
2177
if (SuperType.
isNull
()) {
2248
if (!SuperType.
isNull
())
2404
if (SuperTy.
isNull
()) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go
809
func (v Value)
IsNull
() bool { return C.LLVMIsNull(v.C) != 0 }
/src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h
523
// Implements the polymorphic
IsNull
() matcher, which matches any raw or smart
3636
inline PolymorphicMatcher<internal::IsNullMatcher >
IsNull
() {
Completed in 87 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026