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

  /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 114 StringRef DirName = llvm::sys::path::parent_path(Filename);
116 if (DirName.empty())
117 DirName = ".";
119 return FileMgr.getDirectory(DirName, CacheFailure);
125 StringRef DirName = llvm::sys::path::parent_path(Path);
126 if (DirName.empty())
130 *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
133 // at the same time. Therefore, if DirName is already in the cache,
146 addAncestorsAsVirtualDirs(DirName);
149 const DirectoryEntry *FileManager::getDirectory(StringRef DirName,
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 182 DeclarationNameInfo DirName;
251 DirName =
270 Actions.StartOpenMPDSABlock(DKind, DirName, Actions.getCurScope(), Loc);
322 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc,
    [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(),
351 /// \param DirName The name of the framework directory.
355 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
357 assert(llvm::sys::path::extension(DirName) == ".framework" &&
374 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
375 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
378 DirName = llvm::sys::path::parent_path(DirName);
379 if (DirName.empty()
    [all...]
ModuleMap.cpp 190 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
202 DirName = llvm::sys::path::parent_path(DirName);
203 if (DirName.empty())
207 Dir = SourceMgr.getFileManager().getDirectory(DirName);
460 StringRef DirName = Dir->getName();
513 DirName = llvm::sys::path::parent_path(DirName);
514 if (DirName.empty())
518 Dir = SourceMgr.getFileManager().getDirectory(DirName);
    [all...]
  /external/libchrome/base/files/
file_path.cc 233 while (current != current.DirName()) {
237 current = current.DirName();
246 FilePath dir = current.DirName();
303 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
307 FilePath FilePath::DirName() const {
494 // only kCurrentDirectory when calling DirName on a single relative path
    [all...]
  /external/clang/include/clang/AST/
StmtOpenMP.h     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 936 milliseconds