Searched refs:Path (Results 1 - 25 of 160) sorted by relevance

1234567

/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp23 PDB_ErrorCode llvm::loadDataForPDB(PDB_ReaderType Type, StringRef Path, argument
27 return DIASession::createFromPdb(Path, Session);
32 PDB_ErrorCode llvm::loadDataForEXE(PDB_ReaderType Type, StringRef Path, argument
36 return DIASession::createFromExe(Path, Session);
/freebsd-11.0-release/contrib/bmake/
H A Ddir.h81 typedef struct Path { struct
87 } Path; typedef in typeref:struct:Path
99 Path *Dir_AddDir(Lst, const char *);
H A Ddir.c94 * Dir_InitCur Set the cur Path.
96 * Dir_InitDot Set the dot Path.
151 * A search path consists of a Lst of Path structures. A Path structure
183 * 3) record the mtime of the directory in the Path structure and
233 static Path *dot; /* contents of current directory */
234 static Path *cur; /* contents of current directory, if not dot */
235 static Path *dotLast; /* a fake path entry indicating we need to
250 static int DirMatchFiles(const char *, Path *, Lst);
255 static char *DirLookup(Path *, cons
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDB.h19 PDB_ErrorCode loadDataForPDB(PDB_ReaderType Type, StringRef Path,
22 PDB_ErrorCode loadDataForEXE(PDB_ReaderType Type, StringRef Path,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DFileSystemStatCache.cpp16 #include "llvm/Support/Path.h"
43 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile, argument
51 R = Cache->getStat(Path, Data, isFile, F, FS);
55 llvm::ErrorOr<vfs::Status> Status = FS.status(Path);
70 auto OwnedFile = FS.openFileForRead(Path);
110 MemorizeStatCalls::getStat(const char *Path, FileData &Data, bool isFile, argument
112 LookupResult Result = statChained(Path, Data, isFile, F, FS);
122 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
123 StatCalls[Path] = Data;
H A DVirtualFileSystem.cpp21 #include "llvm/Support/Path.h"
101 std::error_code FileSystem::makeAbsolute(SmallVectorImpl<char> &Path) const {
106 return llvm::sys::fs::make_absolute(WorkingDir.get(), Path);
109 bool FileSystem::exists(const Twine &Path) { argument
110 auto Status = status(Path);
182 ErrorOr<Status> status(const Twine &Path) override;
183 ErrorOr<std::unique_ptr<File>> openFileForRead(const Twine &Path) override;
187 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
191 ErrorOr<Status> RealFileSystem::status(const Twine &Path) { argument
193 if (std::error_code EC = sys::fs::status(Path, RealStatu
213 setCurrentWorkingDirectory(const Twine &Path) argument
235 std::string Path; member in class:__anon3744::RealFSDirIter
284 status(const Twine &Path) argument
295 openFileForRead(const llvm::Twine &Path) argument
311 setCurrentWorkingDirectory(const Twine &Path) argument
323 std::string Path; member in class:__anon3745::OverlayFSDirIterImpl
369 OverlayFSDirIterImpl(const Twine &Path, OverlayFileSystem &FS, std::error_code &EC) argument
493 SmallString<128> Path; local
566 SmallString<128> Path; local
601 status(const Twine &Path) argument
609 openFileForRead(const Twine &Path) argument
663 SmallString<128> Path; local
1234 SmallString<256> Path; local
1286 getRedirectedFileStatus(const Twine &Path, bool UseExternalNames, Status ExternalStatus) argument
1295 status(const Twine &Path, Entry *E) argument
1310 status(const Twine &Path) argument
1339 openFileForRead(const Twine &Path) argument
1380 pathHasTraversal(StringRef Path) argument
1414 containedIn(StringRef Parent, StringRef Path) argument
1427 containedPart(StringRef Parent, StringRef Path) argument
1433 startDirectory(StringRef Path) argument
1544 recursive_directory_iterator(FileSystem &FS_, const Twine &Path, std::error_code &EC) argument
[all...]
H A DVersion.cpp93 std::string Path = getClangRepositoryPath(); local
95 if (!Path.empty() || !Revision.empty()) {
97 if (!Path.empty())
98 OS << Path; local
100 if (!Path.empty())
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp17 #include "llvm/Support/Path.h"
59 if (Path.empty()) {
61 Path = NewPath;
65 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
66 if (NewPath == Path)
68 // Make this a node and create a child-leaf with 'Path'.
70 StringRef(Path).drop_back(ConsumedLength)));
71 Children[Element].Path = Path;
104 if (Comparator.equivalent(StringRef(Path), FileNam
156 std::string Path; member in class:clang::tooling::FileMatchTrieNode
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/freebsd-11.0-release/contrib/llvm/lib/LibDriver/
H A DLibDriver.cpp23 #include "llvm/Support/Path.h"
84 StringRef Path; local
85 std::tie(Path, Env) = Env.split(';');
86 Ret.push_back(Path);
94 SmallString<128> Path = Dir; local
95 sys::path::append(Path, File);
96 if (sys::fs::exists(Path))
97 return Path.str().str();
133 Optional<std::string> Path = findInputFile(Arg->getValue(), SearchPaths); local
134 if (!Path
[all...]
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_client/
H A Dcopy.c987 NULL, _("Path '%s' exists, but is excluded"),
993 _("Path '%s' already exists"),
1048 _("Path '%s' already exists as unversioned node"),
1070 _("Path '%s' is not a directory"),
1080 _("Path '%s' is not a directory"),
1119 _("Path '%s' does not exist"),
1134 /* Path-specific state used as part of path_driver_cb_baton. */
1303 _("Path '%s' already exists, but is not a "
1344 _("Path '%s' already exists, but is not a directory"),
1693 _("Path '
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DPath.cpp1 //===-- Path.cpp - Implement OS Path Concept ------------------------------===//
10 // This file implements the operating system Path API.
19 #include "llvm/Support/Path.h"
234 i.Path = path;
242 i.Path = path;
248 assert(Position < Path.size() && "Tried to increment past end!");
254 if (Position == Path.size()) {
267 if (is_separator(Path[Position])) {
275 Component = Path
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DFileSystemStatCache.h71 static bool get(const char *Path, FileData &Data, bool isFile,
95 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
99 LookupResult statChained(const char *Path, FileData &Data, bool isFile, argument
102 return Next->getStat(Path, Data, isFile, F, FS);
106 return get(Path, Data, isFile, F, nullptr, FS) ? CacheMissing : CacheExists;
124 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
H A DVirtualFileSystem.h162 recursive_directory_iterator(FileSystem &FS, const Twine &Path,
186 /// \brief Get the status of the entry at \p Path, if one exists.
187 virtual llvm::ErrorOr<Status> status(const Twine &Path) = 0;
188 /// \brief Get a \p File object for the file at \p Path, if one exists.
190 openFileForRead(const Twine &Path) = 0;
205 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
210 bool exists(const Twine &Path);
212 /// Make \a Path an absolute path.
214 /// Makes \a Path absolute using the current directory if it is not already.
215 /// An empty \a Path wil
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp20 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { argument
22 raw_fd_ostream OS(Path, EC, sys::fs::F_None);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h49 std::string Path; member in struct:clang::HeaderSearchOptions::Entry
60 : Path(path), Group(group), IsFramework(isFramework),
186 /// AddPath - Add the \p Path path to the specified \p Group list.
187 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, argument
189 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCXXInheritance.cpp30 for (paths_iterator Path = begin(), PathEnd = end(); Path != PathEnd; ++Path)
31 Decls.insert(Path->Decls.front());
92 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
93 return FindBaseClass(Specifier, Path, BaseDecl);
113 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
114 return FindVirtualBaseClass(Specifier, Path, BaseDecl);
323 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) {
324 for (const CXXBasePathElement &PE : Path) {
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Ddmextern.c104 char *Path);
108 char *Path,
157 * Path - Path with parent prefix
169 char *Path)
207 while (Node && (*Path == (UINT8) AML_PARENT_PREFIX))
210 Path++;
226 Length = (strlen (ParentPath) + strlen (Path) + 1);
231 * for the required dot separator (ParentPath.Path)
251 * parent fullpath "\_SB_", Path "
167 AcpiDmNormalizeParentPrefix( ACPI_PARSE_OBJECT *Op, char *Path) argument
509 AcpiDmAddOpToExternalList( ACPI_PARSE_OBJECT *Op, char *Path, UINT8 Type, UINT32 Value, UINT16 Flags) argument
699 AcpiDmAddPathToExternalList( char *Path, UINT8 Type, UINT32 Value, UINT16 Flags) argument
[all...]
H A Dadwalk.c364 char *Path; local
408 NULL, &Path);
409 AcpiOsPrintf ("%s %p", Path, Op->Common.Node);
410 ACPI_FREE (Path);
480 NULL, &Path);
482 Op->Common.AmlOpName, Path);
483 ACPI_FREE (Path);
622 char *Path = NULL; local
649 Path = (char *) Op->Named.Path;
759 char *Path = NULL; local
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/utilities/
H A Duteval.c58 * Path - Path to object from starting node
75 const char *Path,
96 Info->RelativePathname = Path;
106 AcpiUtGetNodeName (PrefixNode), Path));
111 PrefixNode, Path, Status);
124 PrefixNode, Path, AE_NOT_EXIST);
179 PrefixNode, Path, AE_TYPE);
183 Path, AcpiUtGetObjectTypeName (Info->ReturnObject),
73 AcpiUtEvaluateObject( ACPI_NAMESPACE_NODE *PrefixNode, const char *Path, UINT32 ExpectedReturnBtypes, ACPI_OPERAND_OBJECT **ReturnDesc) argument
/freebsd-11.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsaccess.c301 char *Path = Pathname; local
382 Path = "";
402 if (*Path == (UINT8) AML_ROOT_PREFIX)
411 Path++;
414 "Path is absolute from root [%p]\n", ThisNode));
430 while (*Path == (UINT8) AML_PARENT_PREFIX)
440 Path++;
451 "%s: Path has too many parent prefixes (^) "
478 switch (*Path)
502 Path
[all...]
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp33 #include "llvm/Support/Path.h"
119 // For Path="/path/to/foo" and Basename="foo" assume that debug info is in
121 // For Path="/path/to/bar.dSYM" and Basename="foo" assume that debug info is in
125 const std::string &Path, const std::string &Basename) {
126 SmallString<16> ResourceName = StringRef(Path);
127 if (sys::path::extension(Path) != ".dSYM") {
135 static bool checkFileCRC(StringRef Path, uint32_t CRCHash) { argument
137 MemoryBuffer::getFileOrSTDIN(Path);
225 for (const auto &Path : Opts.DsymHints) {
226 DsymPaths.push_back(getDarwinDWARFResourceForPath(Path, Filenam
124 getDarwinDWARFResourceForPath( const std::string &Path, const std::string &Basename) argument
242 lookUpDebuglinkObject(const std::string &Path, const ObjectFile *Obj, const std::string &ArchName) argument
259 getOrCreateObjectPair(const std::string &Path, const std::string &ArchName) argument
289 getOrCreateObject(const std::string &Path, const std::string &ArchName) argument
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h68 ObjectFile *lookUpDsymFile(const std::string &Path,
71 ObjectFile *lookUpDebuglinkObject(const std::string &Path,
76 ErrorOr<ObjectPair> getOrCreateObjectPair(const std::string &Path,
82 ErrorOr<ObjectFile *> getOrCreateObject(const std::string &Path,
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIASession.h22 static PDB_ErrorCode createFromPdb(StringRef Path,
24 static PDB_ErrorCode createFromExe(StringRef Path,
/freebsd-11.0-release/sys/contrib/dev/acpica/os_specific/service_layers/
H A Doslibcfs.c56 * PARAMETERS: Path - File path
68 const char *Path,
92 File = fopen (Path, ModesStr);
67 AcpiOsOpenFile( const char *Path, UINT8 Modes) argument

Completed in 136 milliseconds

1234567