Home
last modified time | relevance | path

Searched refs:Directory (Results 1 – 25 of 143) sorted by relevance

123456

/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DCompilationDatabase.h46 CompileCommand(const Twine &Directory, const Twine &Filename, in CompileCommand()
48 : Directory(Directory.str()), Filename(Filename.str()), in CompileCommand()
52 std::string Directory; member
69 return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
185 const Twine &Directory = ".");
195 loadFromBuffer(StringRef Directory, StringRef Data, std::string &ErrorMsg);
199 FixedCompilationDatabase(const Twine &Directory,
H A DCompilationDatabasePluginRegistry.h36 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp80 findCompilationDatabaseFromDirectory(StringRef Directory, in findCompilationDatabaseFromDirectory() argument
84 while (!Directory.empty()) { in findCompilationDatabaseFromDirectory()
88 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage)) in findCompilationDatabaseFromDirectory()
92 ErrorStream << "No compilation database found in " << Directory.str() in findCompilationDatabaseFromDirectory()
97 Directory = llvm::sys::path::parent_path(Directory); in findCompilationDatabaseFromDirectory()
107 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); in autoDetectFromSource() local
110 findCompilationDatabaseFromDirectory(Directory, ErrorMessage); in autoDetectFromSource()
328 const Twine &Directory) { in loadFromCommandLine() argument
374 const Twine &Directory, ArrayRef<std::string> CommandLine) { in FixedCompilationDatabase() argument
378 CompileCommands.emplace_back(Directory, StringRef(), in FixedCompilationDatabase()
[all …]
H A DJSONCompilationDatabase.cpp163 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override { in loadFromDirectory() argument
164 SmallString<1024> JSONDatabasePath(Directory); in loadFromDirectory()
351 llvm::yaml::ScalarNode *Directory = nullptr; in parse() local
390 Directory = ValueString; in parse()
413 if (!Directory) { in parse()
422 SmallString<128> AbsolutePath(Directory->getValue(DirectoryStorage)); in parse()
429 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse()
/freebsd/contrib/ntp/
H A DREADME6 The ntp Distribution Base Directory
64 clockstuff Directory containing sources for miscellaneous programs
71 conf Directory containing a motley collection of
99 include Directory containing include header files used by most
104 kernel Directory containing sources for kernel programs such as
108 libntp Directory containing library source code used by most
111 ntpdate Directory containing sources for a program to set the
125 parse Directory containing files belonging to the generic
131 patches Directory containing patches already applied to this
135 scripts Directory containing scripts to build the configuration
[all …]
/freebsd/contrib/libfido2/windows/
H A Dbuild.ps194 New-Item -Type Directory "${BUILD}" -Force
95 New-Item -Type Directory "${BUILD}\${Arch}" -Force
96 New-Item -Type Directory "${BUILD}\${Arch}\${Type}" -Force
97 New-Item -Type Directory "${STAGE}\${LIBRESSL}" -Force
98 New-Item -Type Directory "${STAGE}\${LIBCBOR}" -Force
99 New-Item -Type Directory "${STAGE}\${ZLIB}" -Force
102 New-Item -Type Directory "${OUTPUT}" -Force
103 New-Item -Type Directory "${OUTPUT}\${Arch}" -Force
104 New-Item -Type Directory "${OUTPUT}\${Arch}\${Type}" -force
H A Dcygwin.ps138 New-Item -Type Directory "${Cygwin}" -Force
39 New-Item -Type Directory "${Root}" -Force
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DBuildID.cpp69 auto GetDebugPath = [&](StringRef Directory) { in fetch() argument
70 SmallString<128> Path{Directory}; in fetch()
90 for (const auto &Directory : DebugFileDirectories) { in fetch() local
92 SmallString<128> Path = GetDebugPath(Directory); in fetch()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h277 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName,
300 void setRootFile(StringRef Directory, StringRef FileName, in setRootFile()
303 CompilationDir = std::string(Directory); in setRootFile()
331 void maybeSetRootFile(StringRef Directory, StringRef FileName, in maybeSetRootFile() argument
336 Header.setRootFile(Directory, FileName, Checksum, Source); in maybeSetRootFile()
339 unsigned getFile(StringRef Directory, StringRef FileName, in getFile() argument
368 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName,
372 unsigned getFile(StringRef &Directory, StringRef &FileName,
376 return cantFail(tryGetFile(Directory, FileName, Checksum, Source,
380 void setRootFile(StringRef Directory, StringRef FileName, in setRootFile() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp28 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory, in printFile() argument
34 if (!Directory.empty()) in printFile()
35 O << Directory << "/"; in printFile()
/freebsd/contrib/bmake/unit-tests/
H A Dposix1.exp16 Directory and filename parts of local variables
56 Directory and filename parts of local variables
102 Directory and filename parts of local variables
149 Directory and filename parts of local variables
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h36 ArrayRef<minidump::Directory> streams() const { return Streams; } in streams()
39 ArrayRef<uint8_t> getRawStream(const minidump::Directory &Stream) const { in getRawStream()
166 ArrayRef<minidump::Directory> Streams, in MinidumpFile()
186 ArrayRef<minidump::Directory> Streams;
/freebsd/usr.sbin/bsdconfig/share/media/
H A Ddirectory.subr85 # Initializes the Directory media device. Returns success if the directory path
93 f_dprintf "Init routine called for Directory device. path=[%s]" \
100 f_dprintf "Directory device already checked."
139 # Shuts down the Directory device. Return status should be ignored.
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesManager.cpp139 APINotesManager::findAPINotesFile(DirectoryEntryRef Directory, in findAPINotesFile() argument
143 llvm::SmallString<128> Path(Directory.getName()); in findAPINotesFile()
248 llvm::SmallString<128> Path(M->Directory->getName()); in getCurrentModuleAPINotes()
273 tryAPINotes(*M->Directory, /*wantPublic=*/true); in getCurrentModuleAPINotes()
275 tryAPINotes(*M->Directory, /*wantPublic=*/false); in getCurrentModuleAPINotes()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerTypeUnit.cpp154 return LHS.Directory->first() < RHS.Directory->first() || in prepareDataForTreeCreation()
155 (!(RHS.Directory->first() < LHS.Directory->first()) && in prepareDataForTreeCreation()
179 addFileNameIntoLinetable(Patch.Directory, Patch.FilePath); in prepareDataForTreeCreation()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp62 StringRef Directory = sys::path::parent_path(SrcPath); in updateWithRealPath() local
68 auto DirWithSymlink = CachedDirs.find(Directory); in updateWithRealPath()
72 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
74 CachedDirs[Directory] = std::string(RealPath); in updateWithRealPath()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp184 auto Directory = M->Directory; in findHeader() local
185 SmallString<128> FullPathName(Directory->getName()); in findHeader()
242 FullPathName.assign(Directory->getName()); in findHeader()
1102 Result->Directory = FrameworkDir; in inferFrameworkModule()
1527 DirectoryEntryRef Directory; member in clang::ModuleMapParser
1593 ModuleMapFile(ModuleMapFile), Directory(Directory), in ModuleMapParser()
1865 if (M->Directory != ActiveModule->Directory) in diagnosePrivateModules()
2121 ActiveModule->Directory = Directory; in parseModuleDecl()
2280 ModuleMapFileName += Directory.getName(); in parseExternModuleDecl()
2288 ? Directory in parseExternModuleDecl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp569 MCDwarfLineTable::tryGetFile(StringRef &Directory, StringRef &FileName, in tryGetFile() argument
577 static bool isRootFile(const MCDwarfFile &RootFile, StringRef &Directory, in isRootFile() argument
590 if (Directory == CompilationDir) in tryGetFile()
591 Directory = ""; in tryGetFile()
594 Directory = ""; in tryGetFile()
628 if (Directory.empty()) { in tryGetFile()
632 Directory = sys::path::parent_path(FileName); in tryGetFile()
633 if (!Directory.empty()) in tryGetFile()
641 if (Directory.empty()) { in tryGetFile()
645 DirIndex = llvm::find(MCDwarfDirs, Directory) - MCDwarfDirs.begin(); in tryGetFile()
[all …]
H A DMCAsmStreamer.cpp276 unsigned FileNo, StringRef Directory, StringRef Filename,
1609 unsigned FileNo, StringRef Directory, StringRef Filename, in printDwarfFileDirective() argument
1614 if (!UseDwarfDirectory && !Directory.empty()) { in printDwarfFileDirective()
1616 Directory = ""; in printDwarfFileDirective()
1618 FullPathName = Directory; in printDwarfFileDirective()
1620 Directory = ""; in printDwarfFileDirective()
1626 if (!Directory.empty()) { in printDwarfFileDirective()
1627 PrintQuotedString(Directory, OS); in printDwarfFileDirective()
1640 unsigned FileNo, StringRef Directory, StringRef Filename, in tryEmitDwarfFileDirective() argument
1648 Table.tryGetFile(Directory, Filename, Checksum, Source, in tryEmitDwarfFileDirective()
[all …]
/freebsd/contrib/kyua/utils/process/
H A Dexecutor.ipp56 /// Directory where the hook may place control files.
59 /// Directory to enter when running the subprocess.
75 /// \param control_directory Directory where control files can be placed.
76 /// \param work_directory Directory to enter when running the subprocess.
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp173 static Directory layout(BlobAllocator &File, Stream &S) { in layout()
174 Directory Result; in layout()
235 std::vector<Directory> StreamDirectory(Obj.Streams.size()); in yaml2minidump()
/freebsd/contrib/ntp/sntp/m4/
H A Dntp_dir_sep.m422 [Directory separator character, usually / or \\])
/freebsd/contrib/googletest/googletest/cmake/
H A Dlibgtest.la.in20 # Directory that this library needs to be installed in:
/freebsd/usr.sbin/bsdconfig/usermgmt/include/
H A Dmessages.subr43 msg_create_home_directory="Create Home Directory"
47 msg_delete_home_directory="Delete Home Directory"
78 msg_home_directory="Home Directory"
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp715 std::string Directory; in createLineAndFileRecords() local
716 if (Lines->getDirectoryForEntry(Entry, Directory)) in createLineAndFileRecords()
717 Directory = transformPath(Directory); in createLineAndFileRecords()
718 if (Directory.empty()) in createLineAndFileRecords()
719 Directory = std::string(CompileUnit->getCompilationDirectory()); in createLineAndFileRecords()
722 raw_string_ostream(String) << Directory << "/" << File; in createLineAndFileRecords()

123456