HomeSort by relevance Sort by last modified time
    Searched defs:Path (Results 26 - 50 of 186) sorted by null

12 3 4 5 6 7 8

  /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);
  /art/test/961-default-iface-resolution-generated/util-src/
generate_java.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
366 java_dir = Path(argv[1])
370 expected_txt = Path(argv[2])
  /art/test/964-default-iface-init-generated/util-src/
generate_java.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
407 java_dir = Path(argv[1])
411 expected_txt = Path(argv[2])
  /art/test/utils/python/
generate_java_main.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
305 java_dir = Path(argv[1])
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 49 std::string Path;
53 /// IgnoreSysRoot - This is false if an absolute path should be treated
55 /// path.
58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
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,
189 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot)
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 51 uint32_t MaxValueLength; // Length of longest result path (excluding nul).
201 SmallString<1024> Path;
202 StringRef Dest = lookupFilename(Filename, Path);
229 // path.
PPLexerChange.cpp 25 #include "llvm/Support/Path.h"
231 /// \brief Compute the relative path that names the given file relative to
239 StringRef Path = FilePath;
240 while (!Path.empty()) {
241 if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) {
243 Result = FilePath.substr(Path.size());
244 llvm::sys::path::append(Result,
245 llvm::sys::path::filename(File->getName()));
250 Path = llvm::sys::path::parent_path(Path)
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 25 #include "llvm/Support/Path.h"
68 SmallString<1024> Path;
70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
77 const FileEntry *File = Files.getFile(Path);
81 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second;
82 assert(Found == Path);
103 std::string Path = TemporaryFiles.lookup(Name);
104 assert(!Path.empty());
110 auto FileBuffer = Files.getBufferForFile(Path);
RefactoringTest.cpp 28 #include "llvm/Support/Path.h"
99 Replacement Replace("/path/to/file.cpp", 0, 1, "");
100 EXPECT_EQ("/path/to/file.cpp", Replace.getFilePath());
237 SmallString<1024> Path;
239 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
246 const FileEntry *File = Context.Files.getFile(Path);
250 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second;
251 assert(Found == Path);
257 std::string Path = TemporaryFiles.lookup(Name);
258 assert(!Path.empty())
    [all...]
  /external/llvm/lib/LineEditor/
LineEditor.cpp 13 #include "llvm/Support/Path.h"
23 SmallString<32> Path;
24 if (sys::path::home_directory(Path)) {
25 sys::path::append(Path, "." + ProgName + "-history");
26 return Path.str();
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 72 SafeInterpreterPath("safe-path",
73 cl::desc("Specify the path to the \"safe\" backend program"),
211 std::string Path = SafeInterpreterPath;
212 if (Path.empty())
213 Path = getToolName();
222 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
233 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
246 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
  /external/llvm/tools/llvm-pdbdump/
LinePrinter.h 73 Path,
  /external/lzma/CPP/Common/
Wildcard.h 24 void SplitPathToParts(const UString &path, UStringVector &pathParts);
25 void SplitPathToParts_2(const UString &path, UString &dirPrefix, UString &name);
26 void SplitPathToParts_Smart(const UString &path, UString &dirPrefix, UString &name); // ignores dir delimiter at the end of (path)
28 UString ExtractDirPrefixFromPath(const UString &path);
29 UString ExtractFileNameFromPath(const UString &path);
31 bool DoesNameContainWildcard(const UString &path);
81 int FindSubNode(const UString &path) const;
84 void AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir, bool wildcardMatching);
85 void AddItem2(bool include, const UString &path, bool recursive, bool wildcardMatching);
    [all...]
  /external/v8/tools/gyp/pylib/gyp/
MSVSVersion.py 21 path, sdk_based, default_toolset=None):
28 self.path = path
58 def Path(self):
59 """Returns the path to Visual Studio installation."""
60 return self.path
63 """Returns the path to a given compiler tool. """
64 return os.path.normpath(os.path.join(self.path, "VC/bin", tool)
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 58 class Path {
60 Path(unsigned rng_seed);
93 Path path; member in struct:Simulation::Object
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegionActivity.java 24 import android.graphics.Path;
59 private final Path mClipPath = new Path();
83 getWidth() / 4.0f, Path.Direction.CW);
  /art/test/968-default-partial-compile-generated/util-src/
generate_smali.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
595 smali_dir = Path(argv[1])
599 expected_txt = Path(argv[2])
  /art/test/970-iface-super-resolution-generated/util-src/
generate_smali.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
602 smali_dir = Path(argv[1])
606 expected_txt = Path(argv[2])
  /art/test/971-iface-super/util-src/
generate_smali.py 23 from pathlib import Path
31 sys.path.append(str(Path(BUILD_TOP)/"art"/"test"/"utils"/"python"))
677 smali_dir = Path(argv[1])
681 expected_txt = Path(argv[2])
  /external/clang/lib/CodeGen/
CGCXXABI.cpp 288 ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath();
291 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
293 const CXXRecordDecl *Derived = Path[I];
298 RD = Path[I];
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 30 #include "llvm/Support/Path.h"
    [all...]
  /external/clang/tools/driver/
driver.cpp 41 #include "llvm/Support/Path.h"
251 const std::string &Path) {
254 StringRef ExeBasename(llvm::sys::path::filename(Path));
278 // Attempt to find the original path used to invoke the driver, to determine
279 // the installed path. We do this manually, because we want to support that
280 // path being a symlink.
283 // Do a PATH lookup, if there are no directory components.
284 if (llvm::sys::path::filename(InstalledPath) == InstalledPath)
286 llvm::sys::path::filename(InstalledPath.str()))
    [all...]
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 13 #include "llvm/Support/Path.h"
48 ErrorOr<vfs::Status> status(const Twine &Path) override {
50 FilesAndDirs.find(Path.str());
56 openFileForRead(const Twine &Path) override {
57 auto S = status(Path);
65 std::error_code setCurrentWorkingDirectory(const Twine &Path) override {
72 std::string Path;
74 if (Path.size() < S.size() && S.find(Path) == 0) {
76 if (LastSep == Path.size() || LastSep == Path.size()-1
    [all...]
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 36 auto Path = sys::findProgramByName("lipo", makeArrayRef(SDKPath));
37 if (!Path)
38 Path = sys::findProgramByName("lipo");
40 if (!Path) {
41 errs() << "error: lipo: " << Path.getError().message() << "\n";
47 sys::ExecuteAndWait(*Path, Args.data(), nullptr, nullptr, 0, 0, &ErrMsg);
63 StringRef From(ArchFiles.front().Path);
80 Args.push_back(Thin.Path.c_str());
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 95 FString Path;
102 Path.Empty();

Completed in 509 milliseconds

12 3 4 5 6 7 8