Searched defs:DirName (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/ExecutionEngine/
H A DEventListenerCommon.h48 StringRef DirName = DIScope.getDirectory(); local
51 if (DirName != "." && DirName != "") {
52 FullPath = DirName;
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp451 bool ELFAsmParser::ParseDirectivePrevious(StringRef DirName, SMLoc) { argument
H A DDarwinAsmParser.cpp568 bool DarwinAsmParser::ParseDirectivePrevious(StringRef DirName, SMLoc) { argument
/external/clang/lib/Basic/
H A DFileManager.cpp251 StringRef DirName = llvm::sys::path::parent_path(Filename);
253 if (DirName.empty())
254 DirName = ".";
256 return FileMgr.getDirectory(DirName, CacheFailure);
262 StringRef DirName = llvm::sys::path::parent_path(Path); local
263 if (DirName.empty())
267 SeenDirEntries.GetOrCreateValue(DirName);
270 // at the same time. Therefore, if DirName is already in the cache,
283 addAncestorsAsVirtualDirs(DirName);
286 const DirectoryEntry *FileManager::getDirectory(StringRef DirName, argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp168 std::string DirName = ""; local
172 DirName = P.str() + "/";
184 << html::EscapeText(DirName)
225 os << "\n<!-- BUGFILE " << DirName << Entry->getName() << " -->\n";
/external/chromium/base/
H A Dfile_path.cc221 while (current != current.DirName()) {
225 current = current.DirName();
234 FilePath dir = current.DirName();
295 FilePath FilePath::DirName() const { function in class:FilePath
453 // only kCurrentDirectory when calling DirName on a single relative path
/external/clang/lib/Lex/
H A DHeaderSearch.cpp272 /// \param DirName The name of the framework directory.
276 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName, argument
278 assert(llvm::sys::path::extension(DirName) == ".framework" &&
295 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
296 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
299 DirName = llvm::sys::path::parent_path(DirName);
300 if (DirName.empty())
304 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
310 if (llvm::sys::path::extension(DirName)
922 StringRef DirName = FileName; local
1041 loadModuleMapFile(StringRef DirName) argument
[all...]
H A DModuleMap.cpp162 StringRef DirName = SourceMgr->getFileManager().getCanonicalName(Dir); local
234 DirName = llvm::sys::path::parent_path(DirName);
235 if (DirName.empty())
239 Dir = SourceMgr->getFileManager().getDirectory(DirName);
252 StringRef DirName = Dir->getName(); local
300 DirName = llvm::sys::path::parent_path(DirName);
301 if (DirName.empty())
305 Dir = SourceMgr->getFileManager().getDirectory(DirName);
1376 std::string DirName = Tok.getString(); local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp626 StringRef DirName, unsigned CUID) {
638 if (DirName == CompilationDir)
639 DirName = "";
648 NamePair += DirName;
658 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, DirName, FileName, CUID);
625 getOrCreateSourceID(StringRef FileName, StringRef DirName, unsigned CUID) argument

Completed in 190 milliseconds