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

  /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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
CFBundle.cpp 123 SmallString<256> RealPath;
124 sys::fs::real_path(Path, RealPath, /*expand_tilde*/ true);
129 kCFAllocatorDefault, (const UInt8 *)RealPath.data(), RealPath.size(),
142 sys::path::remove_filename(RealPath);
143 } while (RealPath != sys::path::root_name(RealPath));
DeclContext.h 28 /// number of calls to realpath which is expensive. We assume the input are
29 /// files, and cache the realpath of their parent. This way we can quickly
33 /// Resolve a path by calling realpath and cache its result. The returned
42 SmallString<256> RealPath;
43 sys::fs::real_path(ParentPath, RealPath);
44 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()});
  /development/vndk/tools/header-checker/src/utils/
collect_exported_headers.cpp 40 std::string RealPath(const std::string &path) {
42 if (realpath(path.c_str(), file_abs_path) == nullptr) {
84 exported_headers->insert(RealPath(file_path));
header_abi_util.h 29 std::string RealPath(const std::string &path);
  /development/vndk/tools/header-checker/src/dumper/
header_checker.cpp 43 using header_checker::utils::RealPath;
150 HeaderCheckerOptions options(RealPath(header_file), out_dump,
abi_wrappers.cpp 156 return utils::RealPath(file_name.str());
    [all...]
  /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
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 347 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
FileSystem.h     [all...]
  /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...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 248 ## RealPath
254 def RealPath(File, Dir='', OverrideDir=''):
934 FullFileName = os.path.normpath(os.path.realpath(os.path.join(WorkSpace, String)))
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
WorkspaceDatabase.py     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py 653 def RealPath(File, Dir='', OverrideDir=''):
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
Path.cpp 525 TEST_F(FileSystemTest, RealPath) {
    [all...]

Completed in 415 milliseconds