Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DInitHeaderSearch.cpp190 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++", in AddMinGWCPlusPlusIncludePaths()
192 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/" + Arch, in AddMinGWCPlusPlusIncludePaths()
194 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward", in AddMinGWCPlusPlusIncludePaths()
213 AddPath("/usr/local/include", System, false); in AddDefaultCIncludePaths()
239 AddPath(dir, ExternCSystem, false); in AddDefaultCIncludePaths()
248 AddPath("/usr/include/w32api", System, false); in AddDefaultCIncludePaths()
258 AddPath("/usr/include", ExternCSystem, false); in AddDefaultCIncludePaths()
349 AddPath("/System/Library/Frameworks", System, true); in AddDefaultIncludePaths()
350 AddPath("/Library/Frameworks", System, true); in AddDefaultIncludePaths()
359 AddPath("/usr/include/c++/v1", CXXSystem, false); in AddDefaultIncludePaths()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordWriter.h296 void AddPath(StringRef Path) { in AddPath() function
297 return Writer->AddPath(Path, *Record); in AddPath()
H A DASTWriter.h711 void AddPath(StringRef Path, RecordDataImpl &Record);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h283 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, in AddPath() function
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3209 Opts.AddPath(Path, Group, IsFramework, in ParseHeaderSearchArgs()
3227 Opts.AddPath(A->getValue(), frontend::After, false, true); in ParseHeaderSearchArgs()
3229 Opts.AddPath(A->getValue(), frontend::Quoted, false, true); in ParseHeaderSearchArgs()
3231 Opts.AddPath(A->getValue(), frontend::System, false, in ParseHeaderSearchArgs()
3234 Opts.AddPath(A->getValue(), frontend::System, true, true); in ParseHeaderSearchArgs()
3236 Opts.AddPath(A->getValue(), frontend::System, /*IsFramework=*/true, in ParseHeaderSearchArgs()
3241 Opts.AddPath(A->getValue(), frontend::CSystem, false, true); in ParseHeaderSearchArgs()
3243 Opts.AddPath(A->getValue(), frontend::CXXSystem, false, true); in ParseHeaderSearchArgs()
3245 Opts.AddPath(A->getValue(), frontend::ObjCSystem, false,true); in ParseHeaderSearchArgs()
3247 Opts.AddPath(A->getValue(), frontend::ObjCXXSystem, false, true); in ParseHeaderSearchArgs()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp781 auto AddPath = [&](const ArrayRef<StringRef> &SS) { in getArchSpecificLibPaths() local
789 AddPath({getTriple().str()}); in getArchSpecificLibPaths()
790 AddPath({getOSLibName(), llvm::Triple::getArchTypeName(getArch())}); in getArchSpecificLibPaths()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp289 search_opts.AddPath(dir, frontend::System, false, true); in SetupModuleHeaderPaths()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1376 AddPath(WritingModule->PresumedModuleMapFile.empty() in WriteControlBlock()
1392 AddPath(F.getName(), Record); in WriteControlBlock()
1427 AddPath(M.FileName, Record); in WriteControlBlock()
2300 AddPath(LineTable.getFilename(LE.FilenameID), Record); in WriteSourceManagerBlock()
4552 void ASTWriter::AddPath(StringRef Path, RecordDataImpl &Record) { in AddPath() function in ASTWriter