HomeSort by relevance Sort by last modified time
    Searched defs:DirName (Results 1 - 19 of 19) sorted by null

  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.canonical/
canonical.pass.cpp 47 const path DirName = StaticEnv::Dir.filename();
58 { DirName / ".." / "." / DirName, StaticEnv::Dir, Root},
62 { Root / "." / DirName / ".." / DirName, StaticEnv::Dir},
63 { path("..") / "." / RootName / DirName / ".." / DirName, StaticEnv::Dir, Root},
  /external/clang/unittests/Basic/
FileManagerTest.cpp 133 const char *DirName = "C:.";
135 statCache->InjectDirectory(DirName, 44);
155 EXPECT_STREQ(DirName, dir->getName());
  /external/clang/lib/Basic/
FileManager.cpp 113 StringRef DirName = llvm::sys::path::parent_path(Filename);
115 if (DirName.empty())
116 DirName = ".";
118 return FileMgr.getDirectory(DirName, CacheFailure);
124 StringRef DirName = llvm::sys::path::parent_path(Path);
125 if (DirName.empty())
126 DirName = ".";
129 *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
132 // at the same time. Therefore, if DirName is already in the cache,
145 addAncestorsAsVirtualDirs(DirName);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 184 llvm::SmallString<0> DirName;
187 llvm::sys::fs::current_path(DirName);
188 DirName += '/';
203 << html::EscapeText(DirName)
251 os << "\n<!-- BUGFILE " << DirName << Entry->getName() << " -->\n";
  /external/clang/lib/Lex/
HeaderSearch.cpp 152 auto DirName = FileMgr.getCanonicalName(Dir);
156 llvm::hash_combine(DirName.lower(), FileName.lower());
352 /// \param DirName The name of the framework directory.
356 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
358 assert(llvm::sys::path::extension(DirName) == ".framework" &&
375 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
376 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
379 DirName = llvm::sys::path::parent_path(DirName);
380 if (DirName.empty()
    [all...]
ModuleMap.cpp 188 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
200 DirName = llvm::sys::path::parent_path(DirName);
201 if (DirName.empty())
205 Dir = SourceMgr.getFileManager().getDirectory(DirName);
454 StringRef DirName = Dir->getName();
507 DirName = llvm::sys::path::parent_path(DirName);
508 if (DirName.empty())
512 Dir = SourceMgr.getFileManager().getDirectory(DirName);
    [all...]
  /external/libchrome/base/files/
file_path.cc 235 while (current != current.DirName()) {
239 current = current.DirName();
248 FilePath dir = current.DirName();
305 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
309 FilePath FilePath::DirName() const {
496 // only kCurrentDirectory when calling DirName on a single relative path
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 793 DeclarationNameInfo DirName;
893 DirName =
    [all...]