Searched defs:Dir (Results 1 - 25 of 27) sorted by relevance

12

/external/compiler-rt/
H A DMakefile68 "$(foreach key,$(AvailableIn.$(fn)),$($(key).Dir))";)
104 Dir := . macro
232 $(call Set,Tmp.SubDir,$($(Tmp.SubDirKey).Dir))
/external/llvm/unittests/Transforms/DebugIR/
H A DDebugIR.cpp49 void insertCUDescriptor(Module *M, StringRef File, StringRef Dir, argument
52 B.createCompileUnit(dwarf::DW_LANG_C99, File, Dir, Producer, false, "", 0);
83 /// Returns a concatenated path string consisting of Dir and Filename
84 string getPath(const string &Dir, const string &Filename) { argument
86 sys::path::append(Path, Dir, Filename);
87 Path.resize(Dir.size() + Filename.size() + 2);
88 Path[Dir.size() + Filename.size() + 1] = '\0';
100 string Dir = "MadeUpDirectory"; local
102 string Path(getPath(Dir, File));
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb180 # (Dir.pwd by default), this method returns a string containing
187 def self.relative_path( target, reference = Dir.pwd )
210 class Dir class
213 entries = Dir.entries( directory ) - DOTS
220 $VERBOSE and $stderr.puts( "INFO: Dir.mkpath(%p)" % path )
224 Dir.mkdir( path )
/external/clang/include/clang/Lex/
H A DDirectoryLookup.h41 /// Dir - This is the actual directory that we're referring to for a normal
43 const DirectoryEntry *Dir; member in union:clang::DirectoryLookup::__anon17593
73 u.Dir = dir;
96 return isNormalDir() ? u.Dir : nullptr;
102 return isFramework() ? u.Dir : nullptr;
H A DModuleMap.h232 void setBuiltinIncludeDir(const DirectoryEntry *Dir) { argument
233 BuiltinIncludeDir = Dir;
H A DHeaderSearch.h334 void setDirectoryHasModuleMap(const DirectoryEntry* Dir) { argument
335 DirectoryHasModuleMap[Dir] = true;
516 const FileEntry *lookupModuleMapFile(const DirectoryEntry *Dir,
562 /// \param Dir The framework directory (e.g., ModuleName.framework).
569 const DirectoryEntry *Dir,
657 /// \param Dir The directory where we will look for a module map file.
663 LoadModuleMapResult loadModuleMapFile(const DirectoryEntry *Dir,
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp8 enum Dir { L, R }; enum
11 Dir dir;
21 constexpr Tape(const Tape &old, Dir dir) :
31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); }
/external/chromium_org/third_party/skia/include/core/
H A DSkDataTable.h97 struct Dir { struct in class:SkDataTable
105 const Dir* fDir;
115 SkDataTable(const Dir*, int count, FreeProc, void* context);
118 friend class SkDataTableBuilder; // access to Dir
172 SkTDArray<SkDataTable::Dir> fDir;
/external/skia/include/core/
H A DSkDataTable.h97 struct Dir { struct in class:SkDataTable
105 const Dir* fDir;
115 SkDataTable(const Dir*, int count, FreeProc, void* context);
118 friend class SkDataTableBuilder; // access to Dir
172 SkTDArray<SkDataTable::Dir> fDir;
/external/clang/include/clang/Basic/
H A DFileManager.h65 const DirectoryEntry *Dir; // Directory file lives in. member in class:clang::FileEntry
105 const DirectoryEntry *getDir() const { return Dir; }
282 StringRef getCanonicalName(const DirectoryEntry *Dir);
/external/clang/include/clang/Driver/
H A DDriver.h76 std::string Dir; member in class:clang::driver::Driver
225 return Dir.c_str();
/external/clang/lib/Basic/
H A DFileManager.cpp281 if (DirInfo != UFE.Dir && Data.IsVFSMapped)
282 UFE.Dir = DirInfo;
291 UFE.Dir = DirInfo;
364 UFE->Dir = DirInfo;
515 StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) { argument
519 = CanonicalDirNames.find(Dir);
523 StringRef CanonicalName(Dir->getName());
525 if (realpath(Dir->getName(), CanonicalNameBuf)) {
532 CanonicalDirNames.insert(std::make_pair(Dir, CanonicalName));
535 return StringRef(Dir
[all...]
H A DVirtualFileSystem.cpp166 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
229 directory_iterator RealFileSystem::dir_begin(const Twine &Dir, argument
231 return directory_iterator(std::make_shared<RealFSDirIter>(Dir, EC));
329 directory_iterator OverlayFileSystem::dir_begin(const Twine &Dir, argument
332 std::make_shared<OverlayFSDirIterImpl>(Dir, *this, EC));
414 std::string Dir; member in class:__anon17804::VFSFromYamlDirIterImpl
528 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override{
529 ErrorOr<Entry *> E = lookupPath(Dir);
534 ErrorOr<Status> S = status(Dir, *E);
546 return directory_iterator(std::make_shared<VFSFromYamlDirIterImpl>(Dir,
1112 StringRef Dir = path::parent_path(Entry.VPath); local
[all...]
/external/clang/lib/Lex/
H A DPPLexerChange.cpp213 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, argument
222 if (CurDir == Dir) {
455 const DirectoryEntry *Dir = Mod->getUmbrellaDir(); local
458 for (vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC), End;
475 computeRelativePath(FileMgr, Dir, Header, RelativePath);
H A DHeaderSearch.cpp236 const DirectoryEntry *Dir, bool IsSystemHeaderDir,
240 HS.hasModuleMap(FileName, Dir, IsSystemHeaderDir);
251 HS.hasModuleMap(FileName, Dir, IsSystemHeaderDir))
371 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); local
372 if (!Dir)
379 TopFrameworkDir = Dir;
431 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); local
432 if (!Dir) return nullptr;
490 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkPath); local
491 if (!Dir)
235 getFileAndSuggestModule(HeaderSearch &HS, StringRef FileName, const DirectoryEntry *Dir, bool IsSystemHeaderDir, ModuleMap::KnownHeader *SuggestedModule) argument
869 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); local
1106 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); local
1175 const DirectoryEntry *Dir = File->getDir(); local
1200 lookupModuleMapFile(const DirectoryEntry *Dir, bool IsFramework) argument
1216 loadFrameworkModule(StringRef Name, const DirectoryEntry *Dir, bool IsSystem) argument
1251 loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem, bool IsFramework) argument
[all...]
H A DModuleMap.cpp176 const DirectoryEntry *Dir = File->getDir(); local
177 assert(Dir && "file in no directory");
183 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
188 auto KnownDir = UmbrellaDirs.find(Dir);
192 IntermediateDirs.push_back(Dir);
200 Dir = SourceMgr.getFileManager().getDirectory(DirName);
201 } while (Dir);
446 const DirectoryEntry *Dir = Header->getDir(); local
448 StringRef DirName = Dir->getName();
459 = UmbrellaDirs.find(Dir);
1765 const DirectoryEntry *Dir = nullptr; local
2268 const DirectoryEntry *Dir = File->getDir(); local
[all...]
/external/clang/unittests/libclang/
H A DLibclangTest.cpp351 llvm::SmallString<256> Dir; local
352 ASSERT_FALSE(llvm::sys::fs::createUniqueDirectory("libclang-test", Dir));
353 TestDir = Dir.str();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.cpp29 StringRef Dir = Scope.getDirectory(), local
31 char *&Result = DirAndFilenameToFilepathMap[std::make_pair(Dir, Filename)];
43 Filepath = (Dir + Twine("\\") + Filename).str();
H A DDwarfDebug.cpp1614 StringRef Dir; local
1620 Dir = Scope.getDirectory();
1626 .getOrCreateSourceID(Fn, Dir);
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp312 const import_directory_table_entry *Dir; local
314 if (I->getImportTableEntry(Dir)) return;
318 static_cast<uint32_t>(Dir->ImportLookupTableRVA),
319 static_cast<uint32_t>(Dir->TimeDateStamp),
320 static_cast<uint32_t>(Dir->ForwarderChain),
321 static_cast<uint32_t>(Dir->NameRVA),
322 static_cast<uint32_t>(Dir->ImportAddressTableRVA));
/external/chromium_org/tools/usb_gadget/
H A Dusb_constants.py98 class Dir(object): class in inherits:object
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DConsoleModel.js406 Dir: "dir",
/external/clang/lib/AST/
H A DStmt.cpp1342 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, local
1344 Dir->setClauses(Clauses);
1345 Dir->setAssociatedStmt(AssociatedStmt);
1346 return Dir;
1367 OMPSimdDirective *Dir = new (Mem) local
1369 Dir->setClauses(Clauses);
1370 Dir->setAssociatedStmt(AssociatedStmt);
1371 return Dir;
1393 OMPForDirective *Dir = local
1395 Dir
1418 OMPSectionsDirective *Dir = local
1442 OMPSectionDirective *Dir = new (Mem) OMPSectionDirective(StartLoc, EndLoc); local
1464 OMPSingleDirective *Dir = local
1490 OMPParallelForDirective *Dir = new (Mem) local
1514 OMPParallelSectionsDirective *Dir = local
[all...]
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp991 StringRef Dir = llvm::sys::path::parent_path(ModuleFileName); local
992 llvm::sys::fs::create_directories(Dir);
1166 Dir(ModuleCachePathNative.str(), EC), DirEnd;
1167 Dir != DirEnd && !EC; Dir.increment(EC)) {
1169 if (!llvm::sys::fs::is_directory(Dir->path()))
1173 for (llvm::sys::fs::directory_iterator File(Dir->path(), EC), FileEnd;
1203 if (llvm::sys::fs::directory_iterator(Dir->path(), EC) ==
1205 llvm::sys::fs::remove(Dir->path());
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmspack.c3311 cmsFormatterDirection Dir,
3319 cmsFormatter fn = f ->Factory(Type, Dir, dwFlags);
3324 if (Dir == cmsFormatterInput)
3309 _cmsGetFormatter(cmsContext ContextID, cmsUInt32Number Type, cmsFormatterDirection Dir, cmsUInt32Number dwFlags) argument

Completed in 2846 milliseconds

12