HomeSort by relevance Sort by last modified time
    Searched defs:DirName (Results 1 - 9 of 9) 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 127 const char *DirName = "C:.";
129 statCache->InjectDirectory(DirName, 44);
149 EXPECT_STREQ(DirName, dir->getName());
  /external/chromium_org/webkit/common/fileapi/
file_system_util.cc 30 // with base::FilePath elsewhere [e.g. DirName and other methods may also need
48 base::FilePath VirtualPath::DirName(const base::FilePath& virtual_path) {
52 // The logic below is taken from that of base::FilePath::DirName, except
  /external/clang/lib/Basic/
FileManager.cpp 172 StringRef DirName = llvm::sys::path::parent_path(Filename);
174 if (DirName.empty())
175 DirName = ".";
177 return FileMgr.getDirectory(DirName, CacheFailure);
183 StringRef DirName = llvm::sys::path::parent_path(Path);
184 if (DirName.empty())
188 SeenDirEntries.GetOrCreateValue(DirName);
191 // at the same time. Therefore, if DirName is already in the cache,
204 addAncestorsAsVirtualDirs(DirName);
207 const DirectoryEntry *FileManager::getDirectory(StringRef DirName,
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 289 /// \param DirName The name of the framework directory.
293 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
295 assert(llvm::sys::path::extension(DirName) == ".framework" &&
312 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
313 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
316 DirName = llvm::sys::path::parent_path(DirName);
317 if (DirName.empty())
321 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
327 if (llvm::sys::path::extension(DirName) == ".framework")
    [all...]
ModuleMap.cpp 206 StringRef DirName = SourceMgr->getFileManager().getCanonicalName(Dir);
278 DirName = llvm::sys::path::parent_path(DirName);
279 if (DirName.empty())
283 Dir = SourceMgr->getFileManager().getDirectory(DirName);
296 StringRef DirName = Dir->getName();
344 DirName = llvm::sys::path::parent_path(DirName);
345 if (DirName.empty())
349 Dir = SourceMgr->getFileManager().getDirectory(DirName);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 161 llvm::SmallString<0> DirName;
164 llvm::sys::fs::current_path(DirName);
165 DirName += '/';
177 << html::EscapeText(DirName)
218 os << "\n<!-- BUGFILE " << DirName << Entry->getName() << " -->\n";
  /external/chromium/base/
file_path.cc 221 while (current != current.DirName()) {
225 current = current.DirName();
234 FilePath dir = current.DirName();
291 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
295 FilePath FilePath::DirName() const {
453 // only kCurrentDirectory when calling DirName on a single relative path
    [all...]
  /external/chromium_org/base/files/
file_path.cc 231 while (current != current.DirName()) {
235 current = current.DirName();
244 FilePath dir = current.DirName();
301 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
305 FilePath FilePath::DirName() const {
470 // only kCurrentDirectory when calling DirName on a single relative path
    [all...]

Completed in 655 milliseconds