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

12345

/external/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp23 PDB_ErrorCode llvm::createPDBReader(PDB_ReaderType Type, StringRef Path, argument
27 return DIASession::createFromPdb(Path, Session);
/external/libcxx/test/support/
H A Dplatform_support.h63 char Path[MAX_PATH+1]; local
65 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
66 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/clang/lib/Basic/
H A DFileSystemStatCache.cpp16 #include "llvm/Support/Path.h"
54 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile, argument
62 R = Cache->getStat(Path, Data, isFile, F, FS);
66 llvm::ErrorOr<vfs::Status> Status = FS.status(Path);
81 auto OwnedFile = FS.openFileForRead(Path);
121 MemorizeStatCalls::getStat(const char *Path, FileData &Data, bool isFile, argument
123 LookupResult Result = statChained(Path, Data, isFile, F, FS);
133 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
134 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.cpp185 const std::string &Path = Clang->getFrontendOpts().Plugins[i]; local
187 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
189 << Path << Error;
/external/llvm/include/llvm/Support/
H A DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
31 /// @brief Path iterator.
52 StringRef Path; ///< The entire path. member in class:llvm::sys::path::const_iterator
53 StringRef Component; ///< The current component. Not necessarily in Path.
54 size_t Position; ///< The iterators current position within Path.
56 // An end iterator has Position = Path.size() + 1.
79 StringRef Path; ///< The entire path. member in class:llvm::sys::path::reverse_iterator
80 StringRef Component; ///< The current component. Not necessarily in Path.
81 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/Fuzzer/
H A DFuzzerIO.cpp30 Unit FileToVector(const std::string &Path) { argument
31 std::ifstream T(Path);
36 std::string FileToString(const std::string &Path) { argument
37 std::ifstream T(Path);
42 void CopyFileToErr(const std::string &Path) { argument
43 std::ifstream T(Path);
48 void WriteToFile(const Unit &U, const std::string &Path) { argument
49 std::ofstream OF(Path);
53 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V) { argument
54 for (auto &X : ListFilesInDir(Path))
[all...]
/external/llvm/lib/Object/
H A DBinary.cpp18 #include "llvm/Support/Path.h"
77 ErrorOr<OwningBinary<Binary>> object::createBinary(StringRef Path) { argument
79 MemoryBuffer::getFileOrSTDIN(Path);
/external/llvm/unittests/Support/
H A DSpecialCaseListTest.cpp37 SmallString<64> Path; local
38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path);
42 return Path.str();
/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/llvm/lib/Support/
H A DFileOutputBuffer.cpp30 StringRef Path, StringRef TmpPath)
31 : Region(std::move(R)), FinalPath(Path), TempPath(TmpPath) {}
29 FileOutputBuffer(std::unique_ptr<mapped_file_region> R, StringRef Path, StringRef TmpPath) argument
/external/clang/examples/clang-interpreter/
H A Dmain.cpp26 #include "llvm/Support/Path.h"
82 std::string Path = GetExecutablePath(argv[0]); local
96 Driver TheDriver(Path, T.str(), Diags);
/external/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp23 #include "llvm/Support/Path.h"
68 SmallString<128> Path(Filename);
69 llvm::sys::path::replace_extension(Path,
70 NewSuffix + llvm::sys::path::extension(Path));
71 return Path.str();
78 SmallString<128> Path; variable
81 Path); variable
82 return Path.str();
/external/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...]
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp31 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { argument
33 Data.Name = Path;
40 StatCalls[Path] = Data;
45 void InjectFile(const char *Path, ino_t INode) { argument
46 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
50 void InjectDirectory(const char *Path, ino_t INode) { argument
51 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
55 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
58 if (StatCalls.count(Path) != 0) {
59 Data = StatCalls[Path];
[all...]
/external/fonttools/Lib/fontTools/pens/
H A DreportLabPen.py4 from reportlab.graphics.shapes import Path namespace
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
14 path = Path()
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5))
/external/fonttools/Tools/fontTools/pens/
H A DreportLabPen.py4 from reportlab.graphics.shapes import Path namespace
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
14 path = Path()
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5))
/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp26 PDB_ErrorCode DIASession::createFromPdb(StringRef Path, argument
39 if (!llvm::convertUTF8ToUTF16String(Path, Path16))
/external/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.cpp101 static void dumpInput(StringRef Path) { argument
104 llvm::createPDBReader(PDB_ReaderType::DIA, Path, Session);
112 outs() << "Unable to load PDB at '" << Path
116 outs() << "Unable to load PDB at '" << Path
120 outs() << "Unable to load PDB at '" << Path
131 WithColor(Printer, PDB_ColorItem::Path).get() << FileName;
/external/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.h21 UString Path; member in struct:CArc
/external/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,
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp17 #include "llvm/Support/Path.h"
140 StringRef find(StringRef Path) { argument
142 return Trie.findEquivalent(Path, ES);
174 EXPECT_EQ("Path is ambiguous", Error);

Completed in 814 milliseconds

12345