Home
last modified time | relevance | path

Searched refs:Includers (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp893 ArrayRef<std::pair<OptionalFileEntryRef, DirectoryEntryRef>> Includers, in LookupFile() argument
940 if (!Includers.empty() && !isAngled) { in LookupFile()
943 for (const auto &IncluderAndDir : Includers) { in LookupFile()
1132 if (!Includers.empty()) in LookupFile()
1134 Includers.front().second.getName(), Filename, in LookupFile()
H A DPPDirectives.cpp993 SmallVector<std::pair<OptionalFileEntryRef, DirectoryEntryRef>, 16> Includers; in LookupFile() local
1018 Includers.push_back(std::make_pair(std::nullopt, *IncludeDir)); in LookupFile()
1023 Includers.push_back(std::make_pair(*FileEnt, *CWD)); in LookupFile()
1026 Includers.push_back(std::make_pair(*FileEnt, FileEnt->getDir())); in LookupFile()
1036 Includers.push_back(std::make_pair(*FileEnt, FileEnt->getDir())); in LookupFile()
1050 Includers, SearchPath, RelativePath, RequestingModule, in LookupFile()
1067 Filename, FilenameLoc, isAngled, FromDir, &CurDir, Includers, SearchPath, in LookupFile()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearch.h510 ArrayRef<std::pair<OptionalFileEntryRef, DirectoryEntryRef>> Includers,