HomeSort by relevance Sort by last modified time
    Searched refs:RealPath (Results 1 - 25 of 44) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Support/
RealPath.cpp 1 //===- RealPath.cpp -------------------------------------------------------===//
9 #include "mcld/Support/RealPath.h"
17 // RealPath
18 RealPath::RealPath() : Path() {
21 RealPath::RealPath(const RealPath::ValueType* s) : Path(s) {
25 RealPath::RealPath(const RealPath::StringType& s) : Path(s)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 1 //===- RealPath.h ---------------------------------------------------------===//
19 /** \class RealPath
23 class RealPath : public Path {
29 RealPath();
30 explicit RealPath(const ValueType* s);
31 explicit RealPath(const StringType& s);
32 explicit RealPath(const Path& pPath);
34 ~RealPath();
36 RealPath& assign(const Path& pPath);
52 struct less<mcld::sys::fs::RealPath>
    [all...]
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 84 static bool real_path(StringRef SrcPath, SmallVectorImpl<char> &RealPath) {
89 if (!realpath(SrcPath.str().c_str(), CanonicalPath))
93 RealPath.swap(RPath);
96 // FIXME: Add support for systems without realpath.
119 // sensitive in the absense of realpath, since this is what the VFSWriter
160 SmallString<256> RealPath;
169 if (!real_path(Dir, RealPath))
171 SymLinkMap[Dir] = RealPath.str();
173 RealPath = DirWithSymLink->second;
176 path::append(RealPath, FileName)
    [all...]
  /development/vndk/tools/header-checker/header-abi-util/src/
collect_exported_headers.cpp 40 std::string RealPath(const std::string &path) {
42 if (realpath(path.c_str(), file_abs_path) == nullptr) {
83 exported_headers->insert(RealPath(file_path));
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Ecc.py 139 paths = (os.path.realpath('config.ini'),) + tuple(paths)
217 Dirname = os.path.realpath(Dirname)
308 RealPath = ParentDir
310 RealPath = os.sep
318 RealPath += os.sep
319 RealPath += Dir
324 return RealPath
  /development/vndk/tools/header-checker/header-abi-util/include/
header_abi_util.h 35 std::string RealPath(const std::string &path);
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 347 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
VirtualFileSystem.h 386 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /external/libchrome/base/files/
file_util_posix.cc 85 bool RealPath(const FilePath& path, FilePath* real_path) {
86 ThreadRestrictions::AssertIOAllowed(); // For realpath().
88 if (!realpath(path.value().c_str(), buf))
207 if (realpath(input.value().c_str(), full_path) == NULL)
677 if (!RealPath(path, &real_path_result))
  /external/llvm/include/llvm/Support/
FileSystem.h 646 SmallVectorImpl<char> *RealPath = nullptr);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FileSystem.h 657 SmallVectorImpl<char> *RealPath = nullptr);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 769 SmallVectorImpl<char> *RealPath = nullptr);
    [all...]

Completed in 544 milliseconds

1 2