HomeSort by relevance Sort by last modified time
    Searched defs:Path (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/llvm/unittests/Support/
raw_pwrite_stream_test.cpp 36 SmallString<64> Path;
38 sys::fs::createTemporaryFile("foo", "bar", FD, Path);
SpecialCaseListTest.cpp 37 SmallString<64> Path;
38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path);
42 return Path.str();
  /external/llvm/tools/dsymutil/
MachOUtils.h 24 std::string Arch, Path;
25 ArchAndFilename(StringRef Arch, StringRef Path) : Arch(Arch), Path(Path) {}
  /art/test/utils/python/testgen/
utils.py 24 from pathlib import Path
58 with (Path(BUILD_TOP)/"development"/"docs"/"copyright-templates"/fname).open() as template:
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 185 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
187 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
189 << Path << Error;
  /external/libcxx/test/support/
platform_support.h 76 char Path[MAX_PATH+1];
78 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
79 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 1 //===- Path.cpp -----------------------------------------------------------===//
9 #include "mcld/Support/Path.h"
34 const Path::StringType separator_str("/");
41 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() : m_PathName() {
52 Path::Path(const Path::ValueType* s) : m_PathName(s)
    [all...]
  /art/test/970-iface-super-resolution-generated/util-src/
generate_java.py 24 from pathlib import Path
32 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
54 final_java_dir = Path(argv[1])
58 initial_java_dir = Path(argv[2])
62 expected_txt = Path(argv[3])
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 17 #include "llvm/Support/Path.h"
36 /// Each node has storage for up to one path and a map mapping a path segment to
44 /// An insert of a path
47 /// - If the node has a path 'p2' but no children, take the last path segment
53 /// An insert operation is linear in the number of a path's segments.
55 // We cannot put relative paths into the FileMatchTrie as then a path can be
56 // a postfix of another path, violating a core assumption of the trie.
57 if (llvm::sys::path::is_relative(NewPath)
    [all...]
  /external/llvm/include/llvm/Support/
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// \a path. The traversal order is as follows:
52 StringRef Path; ///< The entire path.
53 StringRef Component; ///< The current component. Not necessarily in Path
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
Path.java 43 public class Path
51 public Path(AddressImpl address) {
59 public Path()
  /external/opencv3/modules/viz/test/
test_precomp.hpp 78 struct Path
87 return Path::combine(cvtest::TS::ptr()->get_data_path(), "dragon.ply");
  /art/test/968-default-partial-compile-generated/util-src/
generate_java.py 24 from pathlib import Path
32 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
112 javac_exec = Path(argv[1])
116 temp_dir = Path(argv[2])
120 classes_dir = Path(argv[3])
124 expected_txt = Path(argv[4])
  /art/test/971-iface-super/util-src/
generate_java.py 24 from pathlib import Path
32 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
116 javac_exec = Path(argv[1])
120 temp_dir = Path(argv[2])
124 classes_dir = Path(argv[3])
128 expected_txt = Path(argv[4])
  /external/clang/examples/clang-interpreter/
main.cpp 26 #include "llvm/Support/Path.h"
82 std::string Path = GetExecutablePath(argv[0]);
96 Driver TheDriver(Path, T.str(), Diags);
155 // Infer the builtin include path if unspecified.
  /external/clang/lib/Basic/
Version.cpp 48 // Trim path prefix off, assuming path came from standard cfe path.
64 // Trim path prefix off, assuming path came from standard llvm path.
93 std::string Path = getClangRepositoryPath();
95 if (!Path.empty() || !Revision.empty()) {
97 if (!Path.empty())
98 OS << Path;
    [all...]
  /external/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 23 #include "llvm/Support/Path.h"
69 SmallString<128> Path(Filename);
70 llvm::sys::path::replace_extension(Path,
71 NewSuffix + llvm::sys::path::extension(Path));
72 return Path.str();
79 SmallString<128> Path;
80 llvm::sys::fs::createTemporaryFile(llvm::sys::path::filename(Filename),
81 llvm::sys::path::extension(Filename).drop_front(), fd
    [all...]
  /external/llvm/lib/LibDriver/
LibDriver.cpp 23 #include "llvm/Support/Path.h"
64 llvm::sys::path::replace_extension(Val, ".lib");
71 // Add current directory as first item of the search path.
84 StringRef Path;
85 std::tie(Path, Env) = Env.split(';');
86 Ret.push_back(Path);
94 SmallString<128> Path = Dir;
95 sys::path::append(Path, File);
96 if (sys::fs::exists(Path))
    [all...]
  /dalvik/dx/src/com/android/multidex/
Path.java 33 class Path {
54 Path(String definition) throws IOException {
96 synchronized DirectClassFile getClass(String path) throws FileNotFoundException {
100 InputStream in = element.open(path);
104 classFile = new DirectClassFile(bytes, path, false);
115 throw new FileNotFoundException("File \"" + path + "\" not found");
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryservice.py 22 Path = '/'
40 if 'path' not in self.args:
41 self.args['path'] = self.Path
61 path = os.environ['AWS_CREDENTIAL_FILE']
62 path = os.path.expanduser(path)
63 path = os.path.expandvars(path
    [all...]
  /external/fonttools/Lib/fontTools/pens/
reportLabPen.py 4 from reportlab.graphics.shapes import Path
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
11 def __init__(self, glyphSet, path=None):
13 if path is None:
14 path = Path()
15 self.path = path
19 self.path.moveTo(x,y)
23 self.path.lineTo(x,y
47 path = sys.argv[1] variable
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 29 public class Path {
31 private Path() {
40 private static String createPath(Box box, String path) {
42 return path;
46 path = String.format("/%s[%d]", box.getType(), index) + path;
48 return createPath(box.getParent(), path);
52 public static Box getPath(Box box, String path) {
53 List<Box> all = getPaths(box, path);
58 public static List<Box> getPaths(Box box, String path) {
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 1 //===- Path.h -------------------------------------------------------------===//
9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
11 // path class.
40 /** \class Path
41 * \brief Path provides an abstraction for the path to a file or directory in
44 class Path {
50 Path();
51 explicit Path(const ValueType* s);
52 explicit Path(const StringType& s)
    [all...]
  /system/core/libcutils/
canned_fs_config.c 28 const char* path; member in struct:__anon73200
33 } Path;
35 static Path* canned_data = NULL;
40 return strcmp(((Path*)a)->path, ((Path*)b)->path);
54 canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path));
56 Path* p = canned_data + canned_used
    [all...]
  /system/extras/simpleperf/
dso.h 64 // Return the path recorded in perf.data.
65 const std::string& Path() const {
69 // Return the accessible path. It may be the same as Path(), or
70 // return the path with prefix set by SetSymFsDir().
91 Dso(DsoType type, const std::string& path);

Completed in 1186 milliseconds

1 2 3 4 5 6 7