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

  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 48 StringRef DirName = DIScope.getDirectory();
51 if (DirName != "." && DirName != "") {
52 FullPath = DirName;
  /external/clang/unittests/Basic/
FileManagerTest.cpp 132 const char *DirName = "C:.";
134 statCache->InjectDirectory(DirName, 44);
154 EXPECT_STREQ(DirName, dir->getName());
  /external/chromium_org/storage/common/fileapi/
file_system_util.cc 32 // with base::FilePath elsewhere [e.g. DirName and other methods may also need
50 base::FilePath VirtualPath::DirName(const base::FilePath& virtual_path) {
54 // The logic below is taken from that of base::FilePath::DirName, except
  /external/clang/lib/Basic/
FileManager.cpp 117 StringRef DirName = llvm::sys::path::parent_path(Filename);
119 if (DirName.empty())
120 DirName = ".";
122 return FileMgr.getDirectory(DirName, CacheFailure);
128 StringRef DirName = llvm::sys::path::parent_path(Path);
129 if (DirName.empty())
133 SeenDirEntries.GetOrCreateValue(DirName);
136 // at the same time. Therefore, if DirName is already in the cache,
149 addAncestorsAsVirtualDirs(DirName);
152 const DirectoryEntry *FileManager::getDirectory(StringRef DirName,
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 123 DeclarationNameInfo DirName;
158 Actions.StartOpenMPDSABlock(DKind, DirName, Actions.getCurScope(), Loc);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 182 llvm::SmallString<0> DirName;
185 llvm::sys::fs::current_path(DirName);
186 DirName += '/';
201 << html::EscapeText(DirName)
242 os << "\n<!-- BUGFILE " << DirName << Entry->getName() << " -->\n";
  /external/chromium_org/base/files/
file_path.cc 234 while (current != current.DirName()) {
238 current = current.DirName();
247 FilePath dir = current.DirName();
304 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
308 FilePath FilePath::DirName() const {
493 // only kCurrentDirectory when calling DirName on a single relative path
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 339 /// \param DirName The name of the framework directory.
343 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
345 assert(llvm::sys::path::extension(DirName) == ".framework" &&
362 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
363 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
366 DirName = llvm::sys::path::parent_path(DirName);
367 if (DirName.empty())
371 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
377 if (llvm::sys::path::extension(DirName) == ".framework")
    [all...]
ModuleMap.cpp 183 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
195 DirName = llvm::sys::path::parent_path(DirName);
196 if (DirName.empty())
200 Dir = SourceMgr.getFileManager().getDirectory(DirName);
448 StringRef DirName = Dir->getName();
501 DirName = llvm::sys::path::parent_path(DirName);
502 if (DirName.empty())
506 Dir = SourceMgr.getFileManager().getDirectory(DirName);
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 5783 milliseconds