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

12345678910

/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/skia/src/svg/parser/
H A DSkSVGPath.h16 DECLARE_SVG_INFO(Path);
/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...]
H A DFuzzerInternal.h26 std::string FileToString(const std::string &Path);
27 Unit FileToVector(const std::string &Path);
28 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V);
29 void WriteToFile(const Unit &U, const std::string &Path);
30 void CopyFileToErr(const std::string &Path);
67 void ReadDir(const std::string &Path) { argument
68 ReadDirToVectorOfUnits(Path.c_str(), &Corpus);
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPathList.java37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
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/include/llvm/DebugInfo/PDB/
H A DPDB.h19 PDB_ErrorCode createPDBReader(PDB_ReaderType Type, StringRef Path,
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DStepRenderer.java19 import android.graphics.Path;
34 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) {
H A DBezierLineAndPointRenderer.java19 import android.graphics.Path;
32 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPathTest.java3 import android.graphics.Path;
22 Path path = Robolectric.newInstanceOf(Path.class);
30 Path path = Robolectric.newInstanceOf(Path.class);
42 Path path = Robolectric.newInstanceOf(Path.class);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs41 using Path = System.IO.Path;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
126 return personalFolder + Path.DirectorySeparatorChar +
127 ANTLRWORKS_DIR + Path.DirectorySeparatorChar +
/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/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/unittests/Tooling/
H A DRewriterTestContext.h25 #include "llvm/Support/Path.h"
63 SmallString<1024> Path; local
65 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
72 const FileEntry *File = Files.getFile(Path);
76 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second;
77 assert(Found == Path);
98 std::string Path = TemporaryFiles.lookup(Name); local
99 assert(!Path.empty());
105 auto FileBuffer = Files.getBufferForFile(Path);
/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/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/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/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/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/clang/include/clang/Lex/
H A DHeaderSearchOptions.h48 std::string Path; member in struct:clang::HeaderSearchOptions::Entry
59 : Path(path), Group(group), IsFramework(isFramework),
180 /// AddPath - Add the \p Path path to the specified \p Group list.
181 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, argument
183 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
/external/jsoncpp/include/json/
H A Dforwards.h28 class Path;
/external/skia/src/animator/
H A DSkDrawClip.cpp20 SK_MEMBER(path, Path),
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPathParser.java33 import gov.nist.javax.sip.header.ims.Path;
83 Path path = new Path();
/external/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...]

Completed in 2344 milliseconds

12345678910