Home
last modified time | relevance | path

Searched refs:ProfileList (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DProfileList.cpp66 ProfileList::ProfileList(ArrayRef<std::string> Paths, SourceManager &SM) in ProfileList() function in ProfileList
72 ProfileList::~ProfileList() = default;
89 ProfileList::isFunctionExcluded(StringRef FunctionName, in isFunctionExcluded()
100 ProfileList::isLocationExcluded(SourceLocation Loc, in isLocationExcluded()
106 ProfileList::isFileExcluded(StringRef FileName, in isFileExcluded()
H A DCMakeLists.txt60 ProfileList.cpp
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DProfileList.h32 class ProfileList {
39 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);
40 ~ProfileList();
/netbsd-src/external/apache2/llvm/lib/libclangBasic/
H A DMakefile30 ProfileList.cpp \
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/clang/lib/Basic/
H A DBUILD.gn77 "ProfileList.cpp",
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h580 std::unique_ptr<ProfileList> ProfList;
726 const ProfileList &getProfileList() const { return *ProfList; } in getProfileList()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenModule.cpp2647 const auto &ProfileList = getContext().getProfileList(); in isProfileInstrExcluded() local
2649 if (ProfileList.isEmpty()) in isProfileInstrExcluded()
2653 Optional<bool> V = ProfileList.isFunctionExcluded(Fn->getName(), Kind); in isProfileInstrExcluded()
2658 Optional<bool> V = ProfileList.isLocationExcluded(Loc, Kind); in isProfileInstrExcluded()
2666 Optional<bool> V = ProfileList.isFileExcluded(MainFile->getName(), Kind); in isProfileInstrExcluded()
2670 return ProfileList.getDefault(); in isProfileInstrExcluded()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp979 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), in ASTContext()