Home
last modified time | relevance | path

Searched refs:getNullabilityAnnotation (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp381 if (getNullabilityAnnotation(T) != Nullability::Nonnull) in checkValueAtLValForInvariantViolation()
581 getNullabilityAnnotation(Param->getType()); in checkBeginFunction()
632 getNullabilityAnnotation(Region->getValueType()); in checkLocation()
694 Nullability RequiredNullability = getNullabilityAnnotation(RequiredRetType); in checkPreStmt()
702 getNullabilityAnnotation(lookThroughImplicitCasts(RetExpr)->getType()); in checkPreStmt()
799 getNullabilityAnnotation(Param->getType()); in checkPreCall()
801 getNullabilityAnnotation(lookThroughImplicitCasts(ArgExpr)->getType()); in checkPreCall()
911 getNullabilityAnnotation(ReturnType) == Nullability::Nullable) { in checkPostCall()
1064 Nullability RetNullability = getNullabilityAnnotation(Message->getType()); in checkPostObjCMessage()
1143 Nullability DestNullability = getNullabilityAnnotation(DestType); in checkPostStmt()
[all …]
H A DTrustNonnullChecker.cpp161 if (getNullabilityAnnotation(ExprRetType) == Nullability::Nonnull) in isNonNullPtr()
177 if (getNullabilityAnnotation(DeclRetType) != Nullability::Nonnull) in isNonNullPtr()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h68 Nullability getNullabilityAnnotation(QualType Type);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp104 Nullability getNullabilityAnnotation(QualType Type) { in getNullabilityAnnotation() function