| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | DirectoryScanner.cpp | 25 llvm::Error DirectoryScanner::scan(StringRef Directory) { in scan() argument 27 return scanForFrameworks(Directory); in scan() 29 return scanForUnwrappedLibraries(Directory); in scan() 32 llvm::Error DirectoryScanner::scanForUnwrappedLibraries(StringRef Directory) { in scanForUnwrappedLibraries() argument 35 SmallString<PATH_MAX> Path(Directory); in scanForUnwrappedLibraries() 49 Library &Lib = getOrCreateLibrary(Directory, Libraries); in scanForUnwrappedLibraries() 54 Directory)) in scanForUnwrappedLibraries() 59 Directory)) in scanForUnwrappedLibraries() 139 DirectoryScanner::scanMultipleFrameworks(StringRef Directory, in scanMultipleFrameworks() argument 143 for (vfs::directory_iterator i = FS.dir_begin(Directory, ec), ie; i != ie; in scanMultipleFrameworks() [all …]
|
| H A D | HeaderFile.cpp | 45 llvm::Expected<PathSeq> enumerateFiles(FileManager &FM, StringRef Directory) { in enumerateFiles() argument 49 for (llvm::vfs::recursive_directory_iterator i(FS, Directory, EC), ie; in enumerateFiles()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | CompilationDatabase.h | 46 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,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | Minidump.h | 39 ArrayRef<minidump::Directory> streams() const { return Streams; } in streams() 42 ArrayRef<uint8_t> getRawStream(const minidump::Directory &Stream) const { in getRawStream() 92 getExceptionStream(minidump::Directory Directory) const { in getExceptionStream() argument 93 if (Directory.Type != minidump::StreamType::Exception) { in getExceptionStream() 97 return getStreamFromDirectory<minidump::ExceptionStream>(Directory); in getExceptionStream() 236 ExceptionStreamsIterator(ArrayRef<minidump::Directory> Streams, in ExceptionStreamsIterator() 260 ArrayRef<minidump::Directory> Streams; 311 ArrayRef<minidump::Directory> Streams, in MinidumpFile() 313 std::vector<minidump::Directory> ExceptionStreams) in MinidumpFile() 326 getStreamFromDirectory(minidump::Directory Directory) const; [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | CompilationDatabase.cpp | 74 findCompilationDatabaseFromDirectory(StringRef Directory, in findCompilationDatabaseFromDirectory() argument 78 while (!Directory.empty()) { in findCompilationDatabaseFromDirectory() 82 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage)) in findCompilationDatabaseFromDirectory() 86 ErrorStream << "No compilation database found in " << Directory.str() in findCompilationDatabaseFromDirectory() 91 Directory = llvm::sys::path::parent_path(Directory); in findCompilationDatabaseFromDirectory() 101 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); in autoDetectFromSource() local 104 findCompilationDatabaseFromDirectory(Directory, ErrorMessage); in autoDetectFromSource() 322 const Twine &Directory) { in loadFromCommandLine() argument 335 return std::make_unique<FixedCompilationDatabase>(Directory, StrippedArgs); in loadFromCommandLine() 352 FixedCompilationDatabase::loadFromBuffer(StringRef Directory, StringRef Data, in loadFromBuffer() argument [all …]
|
| H A D | JSONCompilationDatabase.cpp | 158 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override { in loadFromDirectory() argument 159 SmallString<1024> JSONDatabasePath(Directory); in loadFromDirectory() 345 llvm::yaml::ScalarNode *Directory = nullptr; in parse() local 384 Directory = ValueString; in parse() 407 if (!Directory) { in parse() 416 SmallString<128> AbsolutePath(Directory->getValue(DirectoryStorage)); in parse() 423 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse()
|
| /freebsd/contrib/ntp/ |
| H A D | README | 6 The ntp Distribution Base Directory 52 adjtimed Directory containing the sources for the adjtime daemon 55 authstuff Directory containing sources for miscellaneous programs 64 clockstuff Directory containing sources for miscellaneous programs 71 conf Directory containing a motley collection of 92 html Directory containing a complete set of documentation on 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 [all …]
|
| /freebsd/contrib/libfido2/windows/ |
| H A D | build.ps1 | 92 New-Item -Type Directory "${BUILD}" -Force 93 New-Item -Type Directory "${BUILD}\${Arch}" -Force 94 New-Item -Type Directory "${BUILD}\${Arch}\${Type}" -Force 95 New-Item -Type Directory "${STAGE}\${LIBRESSL}" -Force 96 New-Item -Type Directory "${STAGE}\${LIBCBOR}" -Force 97 New-Item -Type Directory "${STAGE}\${ZLIB}" -Force 103 New-Item -Type Directory "${GpgHome}" -Force 107 New-Item -Type Directory "${OUTPUT}" -Force 108 New-Item -Type Directory "${OUTPUT}\${Arch}" -Force 109 New-Item -Type Directory "${OUTPUT}\${Arch}\${Type}" -force
|
| H A D | cygwin.ps1 | 38 New-Item -Type Directory "${Cygwin}" -Force 39 New-Item -Type Directory "${Root}" -Force 45 New-Item -Type Directory "${GpgHome}" -Force
|
| /freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
| H A D | DirectoryScanner.h | 35 llvm::Error scan(StringRef Directory); 47 llvm::Error scanForUnwrappedLibraries(StringRef Directory); 50 llvm::Error scanForFrameworks(StringRef Directory); 56 llvm::Error scanMultipleFrameworks(StringRef Directory, 59 llvm::Error scanSubFrameworksDirectory(StringRef Directory,
|
| H A D | Library.h | 23 Library(StringRef Directory) : BaseDirectory(Directory) {} in Library() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | BuildID.cpp | 69 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 D | MCDwarf.h | 293 LLVM_ABI Expected<unsigned> tryGetFile(StringRef &Directory, 318 void setRootFile(StringRef Directory, StringRef FileName, in setRootFile() 321 CompilationDir = std::string(Directory); in setRootFile() 349 void maybeSetRootFile(StringRef Directory, StringRef FileName, in maybeSetRootFile() argument 354 Header.setRootFile(Directory, FileName, Checksum, Source); in maybeSetRootFile() 357 unsigned getFile(StringRef Directory, StringRef FileName, in getFile() argument 361 return cantFail(Header.tryGetFile(Directory, FileName, Checksum, Source, in getFile() 390 LLVM_ABI Expected<unsigned> tryGetFile(StringRef &Directory, 396 unsigned getFile(StringRef &Directory, StringRef &FileName, 400 return cantFail(tryGetFile(Directory, FileName, Checksum, Source, [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ModuleDebugInfoPrinter.cpp | 26 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory, in printFile() argument 32 if (!Directory.empty()) in printFile() 33 O << Directory << "/"; in printFile()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | ASTSourceDescriptor.cpp | 20 if (M.Directory) in ASTSourceDescriptor() 21 Path = M.Directory->getName(); in ASTSourceDescriptor()
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | posix1.exp | 16 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/clang/lib/APINotes/ |
| H A D | APINotesManager.cpp | 139 APINotesManager::findAPINotesFile(DirectoryEntryRef Directory, in findAPINotesFile() argument 143 llvm::SmallString<128> Path(Directory.getName()); in findAPINotesFile() 228 if (LookInModule && M->Directory) { in getCurrentModuleAPINotes() 253 llvm::SmallString<128> Path(M->Directory->getName()); in getCurrentModuleAPINotes() 278 tryAPINotes(*M->Directory, /*wantPublic=*/true); in getCurrentModuleAPINotes() 280 tryAPINotes(*M->Directory, /*wantPublic=*/false); in getCurrentModuleAPINotes()
|
| /freebsd/usr.sbin/bsdconfig/share/media/ |
| H A D | directory.subr | 85 # 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/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerTypeUnit.cpp | 153 return LHS.Directory->first() < RHS.Directory->first() || in prepareDataForTreeCreation() 154 (!(RHS.Directory->first() < LHS.Directory->first()) && in prepareDataForTreeCreation() 178 addFileNameIntoLinetable(Patch.Directory, Patch.FilePath); in prepareDataForTreeCreation()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 177 auto Directory = M->Directory; in findHeader() local 178 SmallString<128> FullPathName(Directory->getName()); in findHeader() 231 if (!NormalHdrFile && Directory->getName().ends_with(".framework")) { in findHeader() 235 FullPathName.assign(Directory->getName()); in findHeader() 332 !BuiltinIncludeDir || BuiltinIncludeDir == Mod->Directory || in resolveAsBuiltinHeader() 1114 Result->Directory = FrameworkDir; in inferFrameworkModule() 1118 Result->getTopLevelModule()->Directory->getName().size()); in inferFrameworkModule() 1552 DirectoryEntryRef Directory; member in clang::ModuleMapLoader 1597 DirectoryEntryRef Directory, bool IsSystem) in ModuleMapLoader() argument 1599 ModuleMapFID(ModuleMapFID), Directory(Directory), IsSystem(IsSystem) {} in ModuleMapLoader() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileCollector.cpp | 62 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/lldb/source/Plugins/ObjectFile/Minidump/ |
| H A D | MinidumpFileBuilder.h | 154 std::vector<llvm::minidump::Directory> m_directories; 177 static constexpr size_t DIRECTORY_SIZE = sizeof(llvm::minidump::Directory);
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 614 MCDwarfLineTable::tryGetFile(StringRef &Directory, StringRef &FileName, in tryGetFile() argument 618 return Header.tryGetFile(Directory, FileName, Checksum, Source, DwarfVersion, in tryGetFile() 622 static bool isRootFile(const MCDwarfFile &RootFile, StringRef &Directory, in isRootFile() argument 631 MCDwarfLineTableHeader::tryGetFile(StringRef &Directory, StringRef &FileName, in tryGetFile() argument 635 if (Directory == CompilationDir) in tryGetFile() 636 Directory = ""; in tryGetFile() 639 Directory = ""; in tryGetFile() 648 if (DwarfVersion >= 5 && isRootFile(RootFile, Directory, FileName, Checksum)) in tryGetFile() 656 std::make_pair((Directory + Twine('\0') + FileName).toStringRef(Buffer), in tryGetFile() 673 if (Directory.empty()) { in tryGetFile() [all …]
|
| /freebsd/contrib/kyua/utils/process/ |
| H A D | executor.ipp | 56 /// 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/DebugInfo/LogicalView/Readers/ |
| H A D | LVDWARFReader.cpp | 527 std::string Directory; in createLineAndFileRecords() local 528 if (Lines->getDirectoryForEntry(Entry, Directory)) in createLineAndFileRecords() 529 Directory = transformPath(Directory); in createLineAndFileRecords() 530 if (Directory.empty()) in createLineAndFileRecords() 531 Directory = std::string(CompileUnit->getCompilationDirectory()); in createLineAndFileRecords() 534 raw_string_ostream(String) << Directory << "/" << File; in createLineAndFileRecords()
|