Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp373 if (getNullabilityAnnotation(T) != Nullability::Nonnull) in checkValueAtLValForInvariantViolation()
597 getNullabilityAnnotation(Region->getValueType()); in checkLocation()
659 Nullability RequiredNullability = getNullabilityAnnotation(RequiredRetType); in checkPreStmt()
667 getNullabilityAnnotation(lookThroughImplicitCasts(RetExpr)->getType()); in checkPreStmt()
764 getNullabilityAnnotation(Param->getType()); in checkPreCall()
766 getNullabilityAnnotation(ArgExpr->getType()); in checkPreCall()
868 getNullabilityAnnotation(ReturnType) == Nullability::Nullable) { in checkPostCall()
1023 Nullability RetNullability = getNullabilityAnnotation(RetType); in checkPostObjCMessage()
1101 Nullability DestNullability = getNullabilityAnnotation(DestType); in checkPostStmt()
1233 ValNullability = getNullabilityAnnotation(Sym->getType()); in checkBind()
[all …]
H A DTrustNonnullChecker.cpp162 if (getNullabilityAnnotation(ExprRetType) == Nullability::Nonnull) in isNonNullPtr()
178 if (getNullabilityAnnotation(DeclRetType) != Nullability::Nonnull) in isNonNullPtr()
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h66 Nullability getNullabilityAnnotation(QualType Type);
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp103 Nullability getNullabilityAnnotation(QualType Type) { in getNullabilityAnnotation() function