Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DASTUtils.cpp28 std::function<bool(const clang::QualType)> isSafePtrType, in tryToFindPtrOrigin() argument
55 if (isSafePtrType(TempExpr->getTypeAsWritten())) in tryToFindPtrOrigin()
74 isSafePtr, isSafePtrType, callback) && in tryToFindPtrOrigin()
76 isSafePtr, isSafePtrType, callback); in tryToFindPtrOrigin()
85 if (isa<CXXFunctionalCastExpr>(E) && isSafePtrType(cast->getType())) in tryToFindPtrOrigin()
136 if (isSafePtrType(callee->getReturnType())) in tryToFindPtrOrigin()
160 if (isSafePtrType(Method->getReturnType())) in tryToFindPtrOrigin()
H A DRawPtrRefLocalVarsChecker.cpp181 virtual bool isSafePtrType(const QualType) const = 0;
290 [&](const clang::QualType Type) { return isSafePtrType(Type); }, in visitVarDecl()
400 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon4bbed29c0111::UncountedLocalVarsChecker
417 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon4bbed29c0111::UncheckedLocalVarsChecker
439 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon4bbed29c0111::UnretainedLocalVarsChecker
H A DRawPtrRefCallArgsChecker.cpp47 virtual bool isSafePtrType(const QualType type) const = 0;
216 [&](const clang::QualType T) { return isSafePtrType(T); }, in isPtrOriginSafe()
417 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon77df98de0111::UncountedCallArgsChecker
442 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon77df98de0111::UncheckedCallArgsChecker
473 bool isSafePtrType(const QualType type) const final { in isSafePtrType() function in __anon77df98de0111::UnretainedCallArgsChecker
H A DASTUtils.h58 std::function<bool(const clang::QualType)> isSafePtrType,