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

1234

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp170 OMPParallelDirective *Dir = local
172 Dir->setClauses(Clauses);
173 Dir->setAssociatedStmt(AssociatedStmt);
174 Dir->setTaskReductionRefExpr(TaskRedRef);
175 Dir->setHasCancel(HasCancel);
176 return Dir;
198 OMPSimdDirective *Dir = new (Mem) local
200 Dir->setClauses(Clauses);
201 Dir->setAssociatedStmt(AssociatedStmt);
202 Dir
240 OMPForDirective *Dir = local
294 OMPForSimdDirective *Dir = new (Mem) local
345 OMPSectionsDirective *Dir = local
371 OMPSectionDirective *Dir = new (Mem) OMPSectionDirective(StartLoc, EndLoc); local
393 OMPSingleDirective *Dir = local
416 OMPMasterDirective *Dir = new (Mem) OMPMasterDirective(StartLoc, EndLoc); local
436 OMPCriticalDirective *Dir = local
462 OMPParallelForDirective *Dir = new (Mem) local
515 OMPParallelForSimdDirective *Dir = new (Mem) OMPParallelForSimdDirective( local
565 auto *Dir = local
591 OMPParallelSectionsDirective *Dir = local
617 OMPTaskDirective *Dir = local
638 OMPTaskyieldDirective *Dir = local
653 OMPBarrierDirective *Dir = new (Mem) OMPBarrierDirective(StartLoc, EndLoc); local
667 OMPTaskwaitDirective *Dir = new (Mem) OMPTaskwaitDirective(StartLoc, EndLoc); local
684 OMPTaskgroupDirective *Dir = local
708 OMPCancellationPointDirective *Dir = local
730 OMPCancelDirective *Dir = local
754 OMPFlushDirective *Dir = local
777 auto *Dir = new (Mem) OMPDepobjDirective(StartLoc, EndLoc, Clauses.size()); local
799 auto *Dir = new (Mem) OMPScanDirective(StartLoc, EndLoc, Clauses.size()); local
822 OMPOrderedDirective *Dir = local
847 OMPAtomicDirective *Dir = local
879 OMPTargetDirective *Dir = local
904 OMPTargetParallelDirective *Dir = local
932 OMPTargetParallelForDirective *Dir = new (Mem) OMPTargetParallelForDirective( local
983 OMPTargetDataDirective *Dir = local
1005 OMPTargetEnterDataDirective *Dir = local
1027 OMPTargetExitDataDirective *Dir = local
1052 OMPTeamsDirective *Dir = local
1078 OMPTaskLoopDirective *Dir = new (Mem) local
1131 OMPTaskLoopSimdDirective *Dir = new (Mem) local
1182 OMPMasterTaskLoopDirective *Dir = new (Mem) OMPMasterTaskLoopDirective( local
1236 auto *Dir = new (Mem) OMPMasterTaskLoopSimdDirective( local
1290 auto *Dir = new (Mem) OMPParallelMasterTaskLoopDirective( local
1347 auto *Dir = new (Mem) OMPParallelMasterTaskLoopSimdDirective( local
1402 OMPDistributeDirective *Dir = new (Mem) local
1451 OMPTargetUpdateDirective *Dir = local
1478 OMPDistributeParallelForDirective *Dir = local
1550 OMPDistributeParallelForSimdDirective *Dir = new (Mem) local
1620 OMPDistributeSimdDirective *Dir = new (Mem) OMPDistributeSimdDirective( local
1674 OMPTargetParallelForSimdDirective *Dir = local
1730 OMPTargetSimdDirective *Dir = new (Mem) local
1773 OMPTeamsDistributeDirective *Dir = new (Mem) OMPTeamsDistributeDirective( local
1826 OMPTeamsDistributeSimdDirective *Dir = local
1882 OMPTeamsDistributeParallelForSimdDirective *Dir = new (Mem) local
1954 OMPTeamsDistributeParallelForDirective *Dir = new (Mem) local
2023 OMPTargetTeamsDirective *Dir = local
2050 OMPTargetTeamsDistributeDirective *Dir = local
2109 OMPTargetTeamsDistributeParallelForDirective *Dir = local
2186 OMPTargetTeamsDistributeParallelForSimdDirective *Dir = local
2258 OMPTargetTeamsDistributeSimdDirective *Dir = new (Mem) local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DFileEntry.h29 uint32_t Dir = 0; member in struct:llvm::gsym::FileEntry
34 FileEntry(uint32_t D, uint32_t B) : Dir(D), Base(B) {}
39 return Base == RHS.Base && Dir == RHS.Dir;
42 return Base != RHS.Base || Dir != RHS.Dir;
58 return llvm::hash_combine(DenseMapInfo<uint32_t>::getHashValue(Val.Dir),
H A DLookupResult.h24 StringRef Dir; ///< Line entry source file directory path. member in struct:llvm::gsym::SourceLocation
31 return LHS.Name == RHS.Name && LHS.Dir == RHS.Dir &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLookupResult.cpp22 if (!Locations[Index].Dir.empty()) {
24 Fullpath = std::string(Locations[Index].Dir);
27 llvm::sys::path::append(Storage, Locations[Index].Dir,
41 if (SL.Dir.size() || SL.Base.size()) {
43 if (!SL.Dir.empty()) {
44 OS << SL.Dir;
45 if (SL.Dir.contains('\\') and not SL.Dir.contains('/'))
H A DGsymReader.cpp184 if (Data.getU32(&Offset, &Swap->Files[0].Dir, NumFiles*2))
333 OS << format("[%4u] ", I) << HEX32(Files[I].Dir) << ' '
388 if (FE->Dir == 0 && FE->Base == 0)
390 StringRef Dir = getString(FE->Dir);
392 if (!Dir.empty()) {
393 OS << Dir; local
394 if (Dir.contains('\\') && !Dir.contains('/'))
402 if (!Dir
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DDirectoryLookup.h39 /// Dir - This is the actual directory that we're referring to for a normal
41 DirectoryEntryRef Dir; member in union:clang::DirectoryLookup::DLU
47 DLU(DirectoryEntryRef Dir) : Dir(Dir) {} argument
67 /// This ctor *does not take ownership* of 'Dir'.
68 DirectoryLookup(DirectoryEntryRef Dir, SrcMgr::CharacteristicKind DT, argument
70 : u(Dir), DirCharacteristic(DT),
91 return isNormalDir() ? &u.Dir.getDirEntry() : nullptr;
97 return isFramework() ? &u.Dir
[all...]
H A DCodeCompletionHandler.h66 /// \p Dir is the directory relative to the include path.
67 virtual void CodeCompleteIncludedFile(llvm::StringRef Dir, bool IsAngled) {} argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DBareMetal.cpp34 if (getDriver().getInstalledDir() != getDriver().Dir)
35 getProgramPaths().push_back(getDriver().Dir);
68 SmallString<128> Dir(getDriver().ResourceDir);
69 llvm::sys::path::append(Dir, "lib", "baremetal");
70 return std::string(Dir.str());
79 SmallString<128> Dir(getDriver().ResourceDir);
80 llvm::sys::path::append(Dir, "include");
81 addSystemInclude(DriverArgs, CC1Args, Dir.str());
85 SmallString<128> Dir(getDriver().SysRoot);
86 llvm::sys::path::append(Dir, "includ
[all...]
H A DHurd.cpp94 // directory ('Dir' below) or the ResourceDir.
95 if (StringRef(D.Dir).startswith(SysRoot)) {
96 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths);
97 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths);
112 // directory ('Dir' below) or the ResourceDir.
113 if (StringRef(D.Dir).startswith(SysRoot))
114 addPathIfExists(D, D.Dir + "/../lib", Paths);
160 for (StringRef Dir : Dirs) {
162 llvm::sys::path::is_absolute(Dir) ? "" : StringRef(SysRoot);
163 addExternCSystemInclude(DriverArgs, CC1Args, Prefix + Dir);
[all...]
H A DTCE.cpp25 std::string Path(getDriver().Dir);
H A DMSP430.cpp139 SmallString<128> Dir;
141 llvm::sys::path::append(Dir, GCCInstallation.getParentLibPath(), "..",
144 llvm::sys::path::append(Dir, getDriver().Dir, "..", getTriple().str());
146 return std::string(Dir.str());
155 SmallString<128> Dir(computeSysRoot());
156 llvm::sys::path::append(Dir, "include");
157 addSystemInclude(DriverArgs, CC1Args, Dir.str());
H A DRISCVToolchain.cpp55 getProgramPaths().push_back(D.Dir);
87 SmallString<128> Dir(computeSysRoot());
88 llvm::sys::path::append(Dir, "include");
89 addSystemInclude(DriverArgs, CC1Args, Dir.str());
115 llvm::sys::path::append(SysRootDir, getDriver().Dir, "..",
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h35 // Returns "Dir/FileName" or equivalent for the current OS.
63 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
66 void RmDirRecursive(const std::string &Dir);
68 // Iterate files and dirs inside Dir, recursively.
71 void IterateDirRecursive(const std::string &Dir,
72 void (*DirPreCallback)(const std::string &Dir),
73 void (*DirPostCallback)(const std::string &Dir),
74 void (*FileCallback)(const std::string &Dir));
82 void GetSizedFilesFromDir(const std::string &Dir, Vector<SizedFile> *V);
H A DFuzzerIOPosix.cpp55 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
57 auto E = GetEpoch(Dir);
61 DIR *D = opendir(Dir.c_str());
63 Printf("%s: %s; exiting\n", strerror(errno), Dir.c_str());
67 std::string Path = DirPlusFile(Dir, E->d_name);
82 void IterateDirRecursive(const std::string &Dir, argument
83 void (*DirPreCallback)(const std::string &Dir),
84 void (*DirPostCallback)(const std::string &Dir),
85 void (*FileCallback)(const std::string &Dir)) {
86 DirPreCallback(Dir);
[all...]
H A DFuzzerIOWindows.cpp101 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
103 auto E = GetEpoch(Dir);
107 std::string Path(Dir);
120 Printf("No such file or directory: %s; exiting\n", Dir.c_str());
125 std::string FileName = DirPlusFile(Dir, FindInfo.cFileName);
151 void IterateDirRecursive(const std::string &Dir, argument
152 void (*DirPreCallback)(const std::string &Dir),
153 void (*DirPostCallback)(const std::string &Dir),
154 void (*FileCallback)(const std::string &Dir)) {
156 DirPreCallback(Dir);
[all...]
H A DFuzzerIO.cpp99 void GetSizedFilesFromDir(const std::string &Dir, Vector<SizedFile> *V) { argument
101 ListFilesInDirRecursive(Dir, 0, &Files, /*TopDir*/true);
147 void RmDirRecursive(const std::string &Dir) { argument
149 Dir, [](const std::string &Path) {},
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DProcess.cpp49 for (StringRef Dir : Dirs) {
50 if (Dir.empty())
53 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); }))
56 SmallString<128> FilePath(Dir);
H A DFileCollector.cpp71 void FileCollector::addDirectory(const Twine &Dir) { argument
72 assert(sys::fs::is_directory(Dir));
74 addDirectoryImpl(Dir, vfs::getRealFileSystem(), EC);
111 FileCollector::addDirectoryImpl(const llvm::Twine &Dir, argument
114 auto It = FS->dir_begin(Dir, EC);
117 addFile(Dir);
128 return FS->dir_begin(Dir, EC);
248 llvm::vfs::directory_iterator dir_begin(const llvm::Twine &Dir,
250 return Collector->addDirectoryImpl(Dir, FS, EC);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp157 for (const std::string &Dir : HSOpts->PrebuiltModulePaths) {
158 SmallString<256> Result(Dir);
191 auto Dir = FileMgr.getDirectory(Parent); local
192 if (!Dir)
194 auto DirName = FileMgr.getCanonicalName(*Dir);
321 StringRef FileName, SourceLocation IncludeLoc, const DirectoryEntry *Dir,
342 &File->getFileEntry(), Dir ? Dir : File->getFileEntry().getDir(),
465 auto Dir = FileMgr.getDirectory(DirName); local
466 if (!Dir)
320 getFileAndSuggestModule( StringRef FileName, SourceLocation IncludeLoc, const DirectoryEntry *Dir, bool IsSystemHeaderDir, Module *RequestingModule, ModuleMap::KnownHeader *SuggestedModule) argument
529 auto Dir = FileMgr.getDirectory(FrameworkName); local
592 auto Dir = FileMgr.getDirectory(FrameworkPath); local
1072 auto Dir = FileMgr.getDirectory(FrameworkName); local
1502 const DirectoryEntry *Dir = nullptr; local
1546 loadModuleMapFileImpl(const FileEntry *File, bool IsSystem, const DirectoryEntry *Dir, FileID ID, unsigned *Offset) argument
1575 lookupModuleMapFile(const DirectoryEntry *Dir, bool IsFramework) argument
1605 loadFrameworkModule(StringRef Name, const DirectoryEntry *Dir, bool IsSystem) argument
1640 loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem, bool IsFramework) argument
1742 SmallString<128> Dir = SearchDir.getDir()->getName(); local
1821 StringRef Dir = SearchDirs[I].getDir()->getName(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h49 void addDirectory(const Twine &Dir);
89 addDirectoryImpl(const llvm::Twine &Dir,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp336 auto Dir = ++sys::path::rbegin(Path), DirEnd = sys::path::rend(Path); local
337 for (int J = 0; J < DirectorySegmentsIndexed && Dir != DirEnd; ++J, ++Dir)
338 if (Dir->size() > ShortDirectorySegment) // not trivial ones
339 Components.emplace_back(*Dir, I);
388 auto Dir = ++sys::path::rbegin(Filename), local
390 for (int I = 0; I < DirectorySegmentsQueried && Dir != DirEnd; ++I, ++Dir) {
391 if (Dir->size() > ShortDirectorySegment)
392 Dirs.push_back(*Dir);
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslfiles.c490 * PARAMETERS: Dir - Directory pathname string
500 char *Dir)
509 DirLength = strlen (Dir);
517 if ((Dir[DirLength-1] != '/') &&
518 (Dir[DirLength-1] != '\\'))
525 NewDir->Dir = UtLocalCacheCalloc (DirLength + 1 + NeedsSeparator);
526 strcpy (NewDir->Dir, Dir);
529 strcat (NewDir->Dir, "/");
811 NextDir->Dir, O
499 FlAddIncludeDirectory( char *Dir) argument
[all...]
/freebsd-13-stable/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.rb135 results = Dir[targets]
140 args[1] ||= Dir.pwd + '/'
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp181 const Direction Dir) {
186 << (Dir == Direction::Incoming ? "incoming)" : "outgoing)")
189 assert((Dir == Direction::Incoming || Dir == Direction::Outgoing) &&
196 if (!EdgeAlreadyCreated[Dir][Kind]) {
197 if (Dir == Direction::Incoming) {
200 } else if (Dir == Direction::Outgoing) {
204 EdgeAlreadyCreated[Dir][Kind] = true;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp299 if (DirInfo != UFE.Dir && Status.IsVFSMapped)
300 UFE.Dir = DirInfo;
318 UFE.Dir = DirInfo;
399 UFE->Dir = *DirInfo;
418 BFE.Dir = VFE.Dir;
552 StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) { argument
554 = CanonicalNames.find(Dir);
558 StringRef CanonicalName(Dir->getName());
561 if (!FS->getRealPath(Dir
[all...]

Completed in 184 milliseconds

1234