Searched refs:Dir (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10-stable/usr.bin/make/
H A Ddir.h51 struct Dir;
63 struct Dir *Path_AddDir(struct Path *, const char *);
H A Ddir.c109 * A search path consists of a list of Dir structures. A Dir structure
141 * 3) record the mtime of the directory in the Dir structure and
178 typedef struct Dir { struct
183 TAILQ_ENTRY(Dir) link; /* allDirs link */
184 } Dir; typedef in typeref:struct:Dir
191 struct Dir *dir; /* pointer to the directory */
199 static TAILQ_HEAD(, Dir) openDirectories =
211 static Dir *dot; /* contents of current directory */
317 * Given a pattern and a Dir structur
[all...]
/freebsd-10-stable/contrib/llvm/tools/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::__anon3003
73 u.Dir = dir;
95 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
100 return isFramework() ? u.Dir : 0;
H A DModuleMap.h204 void setBuiltinIncludeDir(const DirectoryEntry *Dir) { argument
205 BuiltinIncludeDir = Dir;
H A DHeaderSearch.h318 void setDirectoryHasModuleMap(const DirectoryEntry* Dir) { argument
319 DirectoryHasModuleMap[Dir] = true;
532 /// \param Dir The framework directory (e.g., ModuleName.framework).
539 const DirectoryEntry *Dir,
618 /// \param Dir The directory where we will look for a module map file.
623 LoadModuleMapResult loadModuleMapFile(const DirectoryEntry *Dir,
/freebsd-10-stable/usr.sbin/ctm/ctm/
H A Dctm_syntax.c26 #define Dir CTM_Q_Name_Dir macro
53 { Name|Dir|New , Uid, Gid, Mode, 0 };
56 { Name|Dir, 0 };
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/
H A DHeaderSearch.cpp324 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); local
325 if (!Dir)
332 TopFrameworkDir = Dir;
384 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); local
385 if (Dir == 0) return 0;
448 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkPath); local
449 if (!Dir)
744 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str()); local
745 if (Dir == 0) return 0;
749 CacheLookup.getValue().Directory = Dir;
966 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName); local
1006 const DirectoryEntry *Dir = File->getDir(); local
1027 loadFrameworkModule(StringRef Name, const DirectoryEntry *Dir, bool IsSystem) argument
1082 loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem) argument
[all...]
H A DModuleMap.cpp218 const DirectoryEntry *Dir = File->getDir(); local
225 StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
231 = UmbrellaDirs.find(Dir);
294 SkippedDirs.push_back(Dir);
302 Dir = SourceMgr.getFileManager().getDirectory(DirName);
303 } while (Dir);
321 const DirectoryEntry *Dir = Header->getDir(); local
323 StringRef DirName = Dir->getName();
329 = UmbrellaDirs.find(Dir);
368 SkippedDirs.push_back(Dir);
1606 const DirectoryEntry *Dir = 0; local
[all...]
H A DPPLexerChange.cpp211 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, argument
220 if (CurDir == Dir) {
428 const DirectoryEntry *Dir = Mod->getUmbrellaDir(); local
430 for (recursive_directory_iterator Entry(Dir->getName(), EC), End;
446 computeRelativePath(FileMgr, Dir, Header, RelativePath);
/freebsd-10-stable/sys/contrib/dev/acpica/compiler/
H A Daslfiles.c120 * PARAMETERS: Dir - Directory pathname string
130 char *Dir)
139 DirLength = strlen (Dir);
147 if ((Dir[DirLength-1] != '/') &&
148 (Dir[DirLength-1] != '\\'))
154 NewDir->Dir = ACPI_ALLOCATE (DirLength + 1 + NeedsSeparator);
155 strcpy (NewDir->Dir, Dir);
158 strcat (NewDir->Dir, "/");
442 NextDir->Dir, O
129 FlAddIncludeDirectory( char *Dir) argument
[all...]
H A Dprutils.c296 NextDir->Dir, Filename, OpenMode, FullPathname);
H A Dasltypes.h216 char *Dir; member in struct:asl_include_dir
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp241 const import_directory_table_entry *Dir; local
243 if (i->getImportTableEntry(Dir)) return;
247 static_cast<uint32_t>(Dir->ImportLookupTableRVA),
248 static_cast<uint32_t>(Dir->TimeDateStamp),
249 static_cast<uint32_t>(Dir->ForwarderChain),
250 static_cast<uint32_t>(Dir->NameRVA),
251 static_cast<uint32_t>(Dir->ImportAddressTableRVA));
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
H A DFileManager.h64 const DirectoryEntry *Dir; // Directory file lives in. member in class:clang::FileEntry
103 const DirectoryEntry *getDir() const { return Dir; }
274 StringRef getCanonicalName(const DirectoryEntry *Dir);
/freebsd-10-stable/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.rb135 results = Dir[targets]
140 args[1] ||= Dir.pwd + '/'
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
H A DFileManager.cpp348 UFE.Dir = DirInfo;
415 UFE->Dir = DirInfo;
559 StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) { argument
563 = CanonicalDirNames.find(Dir);
567 StringRef CanonicalName(Dir->getName());
569 if (realpath(Dir->getName(), CanonicalNameBuf)) {
576 CanonicalDirNames.insert(std::make_pair(Dir, CanonicalName));
579 return StringRef(Dir->getName());
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp247 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
248 Dir != DirEnd && !EC; Dir.increment(EC)) {
250 if (ASTReader::isAcceptableASTFile(Dir->path(), FileMgr,
254 PPOpts.ImplicitPCHInclude = Dir->path();
H A DFrontendActions.cpp183 for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative.str(), EC),
185 Dir != DirEnd && !EC; Dir.increment(EC)) {
188 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path()))
195 if (const FileEntry *Header = FileMgr.getFile(Dir->path())) {
202 addHeaderInclude(Dir->path(), Includes, LangOpts);
H A DCompilerInstance.cpp791 StringRef Dir = llvm::sys::path::parent_path(ModuleFileName); local
792 llvm::sys::fs::create_directories(Dir);
1053 Dir(ModuleCachePathNative.str(), EC), DirEnd;
1054 Dir != DirEnd && !EC; Dir.increment(EC)) {
1056 if (!llvm::sys::fs::is_directory(Dir->path()))
1061 for (llvm::sys::fs::directory_iterator File(Dir->path(), EC), FileEnd;
1096 llvm::sys::fs::remove(Dir->path(), Existed);
H A DInitHeaderSearch.cpp699 if (const DirectoryEntry *Dir = HS.getFileMgr().getDirectory(P.str()))
700 HS.getModuleMap().setBuiltinIncludeDir(Dir);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
H A DDriver.h76 std::string Dir; member in class:clang::driver::Driver
226 return Dir.c_str();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/
H A DToolChains.cpp219 if (getDriver().getInstalledDir() != getDriver().Dir)
220 getProgramPaths().push_back(getDriver().Dir);
224 if (getDriver().getInstalledDir() != getDriver().Dir)
225 getProgramPaths().push_back(getDriver().Dir);
1598 if (getDriver().getInstalledDir() != getDriver().Dir)
1599 getProgramPaths().push_back(getDriver().Dir);
1744 // Note: Generic_GCC::Generic_GCC adds InstalledDir and getDriver().Dir to
1887 std::string Path(getDriver().Dir);
1916 getFilePaths().push_back(getDriver().Dir + "/../lib");
1932 getFilePaths().push_back(getDriver().Dir
[all...]
H A DDriver.cpp65 Dir = llvm::sys::path::parent_path(ClangExecutable);
69 SmallString<128> P(Dir);
347 Dir = InstalledDir = A->getValue();
1749 std::string Dir(*it);
1750 if (Dir.empty())
1752 if (Dir[0] == '=')
1753 Dir = SysRoot + Dir.substr(1);
1754 SmallString<128> P(Dir);
1768 std::string Dir(*i
[all...]
/freebsd-10-stable/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp896 const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); local
897 Dir += 1;
899 Next.p = reinterpret_cast<uintptr_t>(Dir);
911 const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); local
913 if (error_code ec = OwningObject->getRvaPtr(Dir->NameRVA, IntPtr))
922 const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); local
925 Dir->ImportLookupTableRVA, IntPtr))
/freebsd-10-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsassp.c288 bit32 Dir = 0; local
384 Dir = fc->agRequestType & AGSA_DIR_MASK;
387 Dir |= fc->flag & TLR_MASK;
391 Dir |= AGSA_MSG_BIT;
437 Dir = sspiul << 16;
447 Dir |= fc->agRequestType & AGSA_DIR_MASK;
450 Dir |= fc->flag & TLR_MASK;
454 Dir |= AGSA_MSG_BIT;
489 OSSA_WRITE_LE_32(agRoot, pMessage, offsetDir, Dir);

Completed in 150 milliseconds

12