Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp336 if (getNullabilityAnnotation(T) != Nullability::Nonnull) in checkValueAtLValForInvariantViolation()
566 Nullability RequiredNullability = getNullabilityAnnotation(RequiredRetType); in checkPreStmt()
574 getNullabilityAnnotation(lookThroughImplicitCasts(RetExpr)->getType()); in checkPreStmt()
674 getNullabilityAnnotation(Param->getType()); in checkPreCall()
676 getNullabilityAnnotation(ArgExpr->getType()); in checkPreCall()
781 getNullabilityAnnotation(ReturnType) == Nullability::Nullable) { in checkPostCall()
910 Nullability RetNullability = getNullabilityAnnotation(RetType); in checkPostObjCMessage()
947 Nullability DestNullability = getNullabilityAnnotation(DestType); in checkPostStmt()
1079 ValNullability = getNullabilityAnnotation(Sym->getType()); in checkBind()
1081 Nullability LocNullability = getNullabilityAnnotation(LocType); in checkBind()
[all …]
H A DTrustNonnullChecker.cpp163 if (getNullabilityAnnotation(ExprRetType) == Nullability::Nonnull) in isNonNullPtr()
179 if (getNullabilityAnnotation(DeclRetType) != Nullability::Nonnull) in isNonNullPtr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h64 Nullability getNullabilityAnnotation(QualType Type);
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp102 Nullability getNullabilityAnnotation(QualType Type) { in getNullabilityAnnotation() function