Home
last modified time | relevance | path

Searched refs:FunName (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp354 std::string timeTraceScopeDeclName(StringRef FunName, const Decl *D) { in timeTraceScopeDeclName() argument
357 return (FunName + " " + ND->getQualifiedNameAsString()).str(); in timeTraceScopeDeclName()
358 return (FunName + " <anonymous> ").str(); in timeTraceScopeDeclName()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h235 virtual void handleFunExcludesLock(StringRef Kind, Name FunName, in handleFunExcludesLock() argument
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp386 StringRef FunName);
3503 StringRef FunName, in SynthesizeBlockDescriptor() argument
3522 S += ", __" + FunName.str() + "_block_copy_" + utostr(i); in SynthesizeBlockDescriptor()
3523 S += ", __" + FunName.str() + "_block_dispose_" + utostr(i); in SynthesizeBlockDescriptor()
3530 StringRef FunName) { in SynthesizeBlockLiterals() argument
3566 std::string ImplTag = "__" + FunName.str() + "_block_impl_" + utostr(i); in SynthesizeBlockLiterals()
3567 std::string DescTag = "__" + FunName.str() + "_block_desc_" + utostr(i); in SynthesizeBlockLiterals()
3573 std::string CF = SynthesizeBlockFunc(Blocks[i], i, FunName, ImplTag); in SynthesizeBlockLiterals()
3578 std::string HF = SynthesizeBlockHelperFuncs(Blocks[i], i, FunName, ImplTag); in SynthesizeBlockLiterals()
3581 std::string BD = SynthesizeBlockDescriptor(DescTag, ImplTag, i, FunName, in SynthesizeBlockLiterals()
H A DRewriteModernObjC.cpp477 StringRef FunName);
4286 StringRef FunName, unsigned hasCopy) { in SynthesizeBlockDescriptor() argument
4304 S += ", __" + FunName.str() + "_block_copy_" + utostr(i); in SynthesizeBlockDescriptor()
4305 S += ", __" + FunName.str() + "_block_dispose_" + utostr(i); in SynthesizeBlockDescriptor()
4312 StringRef FunName) { in SynthesizeBlockLiterals() argument
4347 std::string ImplTag = "__" + FunName.str() + "_block_impl_" + utostr(i); in SynthesizeBlockLiterals()
4348 std::string DescTag = "__" + FunName.str() + "_block_desc_" + utostr(i); in SynthesizeBlockLiterals()
4354 std::string CF = SynthesizeBlockFunc(Blocks[i], i, FunName, ImplTag); in SynthesizeBlockLiterals()
4359 std::string HF = SynthesizeBlockHelperFuncs(Blocks[i], i, FunName, ImplTag); in SynthesizeBlockLiterals()
4362 std::string BD = SynthesizeBlockDescriptor(DescTag, ImplTag, i, FunName, in SynthesizeBlockLiterals()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp749 StringRef matchName(StringRef FunName, bool isBuiltin) { in matchName()
751 if (isBuiltin && FunName.starts_with("__builtin_")) in matchName()
755 FunName.drop_front(10 /* truncate "__builtin_" */)); in matchName()
757 if (FunName.starts_with("__asan_")) in matchName()
758 return matchLibcName(FunName.drop_front(7 /* truncate of "__asan_" */)); in matchName()
759 return matchLibcName(FunName); in matchName()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2260 void handleFunExcludesLock(StringRef Kind, Name FunName, Name LockName, in handleFunExcludesLock() argument
2263 << Kind << FunName << LockName); in handleFunExcludesLock()