Searched defs:Path (Results 1 - 25 of 163) sorted by relevance

1234567

/external/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp27 Error llvm::pdb::loadDataForPDB(PDB_ReaderType Type, StringRef Path, argument
31 return RawSession::createFromPdb(Path, Session);
34 return DIASession::createFromPdb(Path, Session);
40 Error llvm::pdb::loadDataForEXE(PDB_ReaderType Type, StringRef Path, argument
44 return RawSession::createFromExe(Path, Session);
47 return DIASession::createFromExe(Path, Session);
/external/llvm/unittests/Support/
H A Draw_pwrite_stream_test.cpp36 SmallString<64> Path; local
38 sys::fs::createTemporaryFile("foo", "bar", FD, Path);
H A DSpecialCaseListTest.cpp37 SmallString<64> Path; local
38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path);
42 return Path.str();
/external/harfbuzz_ng/test/fuzzing/
H A Dmain.cc8 std::string FileToString(const std::string &Path) { argument
10 std::ifstream T(Path.c_str());
/external/llvm/tools/dsymutil/
H A DMachOUtils.h24 std::string Arch, Path; member in struct:llvm::dsymutil::MachOUtils::ArchAndFilename
25 ArchAndFilename(StringRef Arch, StringRef Path) : Arch(Arch), Path(Path) {} argument
/external/libcxx/test/support/
H A Dplatform_support.h73 char Path[MAX_PATH + 1]; local
75 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
76 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c25 CAMLprim value llvm_write_bitcode_file(LLVMModuleRef M, value Path) { argument
26 int Result = LLVMWriteBitcodeToFile(M, String_val(Path));
/external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) { argument
28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path));
/external/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 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())
/external/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp192 const std::string &Path = Clang->getFrontendOpts().Plugins[i]; local
194 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
196 << Path << Error;
/external/llvm/include/llvm/Support/
H A DCachePruning.h26 /// Prepare to prune \p Path.
27 CachePruning(StringRef Path) : Path(Path) {} argument
61 std::string Path; member in class:llvm::CachePruning
H A DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
30 /// @brief Path iterator.
51 StringRef Path; ///< The entire path. member in class:llvm::sys::path::const_iterator
52 StringRef Component; ///< The current component. Not necessarily in Path.
53 size_t Position; ///< The iterators current position within Path.
55 // An end iterator has Position = Path.size() + 1.
77 StringRef Path; ///< The entire path. member in class:llvm::sys::path::reverse_iterator
78 StringRef Component; ///< The current component. Not necessarily in Path.
79 size_t Position; ///< The iterators current position within Path
[all...]
/external/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);
/external/llvm/lib/IR/
H A DModuleSummaryIndex.cpp37 auto Path = Summary->modulePath(); local
38 ModPath = addModulePath(Path, NextModuleId, Other->getModuleHash(Path))
/external/llvm/lib/LTO/
H A DLTOModule.cpp39 #include "llvm/Support/Path.h"
66 bool LTOModule::isBitcodeFile(const char *Path) { argument
68 MemoryBuffer::getFile(Path);
/external/llvm/lib/Object/
H A DBinary.cpp18 #include "llvm/Support/Path.h"
77 Expected<OwningBinary<Binary>> object::createBinary(StringRef Path) { argument
79 MemoryBuffer::getFileOrSTDIN(Path);
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp22 setupMemoryBuffer(const Twine &Path) { argument
24 MemoryBuffer::getFileOrSTDIN(Path);
35 InstrProfReader::create(const Twine &Path) { argument
37 auto BufferOrError = setupMemoryBuffer(Path);
70 IndexedInstrProfReader::create(const Twine &Path) { argument
72 auto BufferOrError = setupMemoryBuffer(Path);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java29 public class Path { class
31 private Path() { method in class:Path
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPath.java43 public class Path class in inherits:gov.nist.javax.sip.header.AddressParametersHeader,PathHeader,SIPHeaderNamesIms,ExtensionHeader
51 public Path(AddressImpl address) { method in class:Path
59 public Path() method in class:Path
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
H A DBitWriter.cpp18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { argument
20 raw_fd_ostream OS(Path, ErrorInfo,
/external/swiftshader/third_party/LLVM/lib/Object/
H A DBinary.cpp17 #include "llvm/Support/Path.h"
98 error_code object::createBinary(StringRef Path, OwningPtr<Binary> &Result) { argument
100 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
30 /// @brief Path iterator.
51 StringRef Path; ///< The entire path. member in class:llvm::sys::path::const_iterator
52 StringRef Component; ///< The current component. Not necessarily in Path.
53 size_t Position; ///< The iterators current position within Path.
55 // An end iterator has Position = Path.size() + 1.
77 StringRef Path; ///< The entire path. member in class:llvm::sys::path::reverse_iterator
78 StringRef Component; ///< The current component. Not necessarily in Path.
79 size_t Position; ///< The iterators current position within Path
[all...]
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp31 StringRef Path, StringRef TmpPath)
32 : Region(std::move(R)), FinalPath(Path), TempPath(TmpPath) {}
30 FileOutputBuffer(std::unique_ptr<mapped_file_region> R, StringRef Path, StringRef TmpPath) argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DPathV2.h1 //===- llvm/Support/PathV2.h - Path Operating System Concept ----*- C++ -*-===//
31 /// @brief Path iterator.
50 StringRef Path; //< The entire path. member in class:llvm::sys::path::const_iterator
51 StringRef Component; //< The current component. Not necessarily in Path.
52 size_t Position; //< The iterators current position within Path.
54 // An end iterator has Position = Path.size() + 1.

Completed in 608 milliseconds

1234567