| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | MultiplexExternalSemaSource.cpp | 26 Sources.push_back(S1); in MultiplexExternalSemaSource() 27 Sources.push_back(S2); in MultiplexExternalSemaSource() 32 for (auto *S : Sources) in ~MultiplexExternalSemaSource() 42 Sources.push_back(Source); in AddSource() 50 for(size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() 51 if (Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl() 57 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() 58 Sources[i]->CompleteRedeclChain(D); in CompleteRedeclChain() 63 for(size_t i = 0; i < Sources.size(); ++i) { in GetExternalSelector() 64 Sel = Sources[i]->GetExternalSelector(ID); in GetExternalSelector() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ASTUtils.h | 247 llvm::SmallVector<clang::ExternalSemaSource *, 2> Sources; 255 Sources.push_back(&high_quality_source); in SemaSourceWithPriorities() 256 Sources.push_back(&low_quality_source); in SemaSourceWithPriorities() 262 Sources.push_back(&source); in addSource() 270 for (size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() 271 if (clang::Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl() 277 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() 278 Sources[i]->CompleteRedeclChain(D); in CompleteRedeclChain() 283 for (size_t i = 0; i < Sources.size(); ++i) { in GetExternalSelector() 284 Sel = Sources[i]->GetExternalSelector(ID); in GetExternalSelector() [all …]
|
| H A D | ASTUtils.cpp | 24 for (size_t i = 0; i < Sources.size(); ++i) in PrintStats() 25 Sources[i]->PrintStats(); in PrintStats()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/debugserver.xcodeproj/ |
| H A D | project.pbxproj | 10 …23043C9D1D35DBEC00FC25CA /* JSON.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 233B4EA51D2DB5… 11 …23043C9E1D35DBFA00FC25CA /* StringConvert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 233B4… 12 …233B4EA71D2DB54300E98261 /* JSON.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 233B4EA51D2DB5… 13 …233B4EA91D2DB96A00E98261 /* StringConvert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 233B4… 14 …23D1B0291D497E8B00FF831B /* OsLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23D1B0271D… 15 …23D1B02A1D497E8B00FF831B /* OsLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23D1B0271D… 16 …264D5D581293835600ED4C01 /* DNBArch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 264D5D57129… 17 …266B5ED11460A68200E43F0A /* DNBArchImplARM64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26… 18 …26CE05A7115C360D0022F371 /* DNBError.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26C637DE0C… 19 …26CE05A8115C36170022F371 /* DNBThreadResumeActions.cpp in Sources */ = {isa = PBXBuildFile; fileRe… [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Core/ |
| H A D | Diagnostic.cpp | 25 const SourceManager &Sources, in DiagnosticMessage() argument 29 FilePath = std::string(Sources.getFilename(Loc)); in DiagnosticMessage() 35 FileOffset = Sources.getFileOffset(Loc); in DiagnosticMessage() 39 const SourceManager &Sources, CharSourceRange Range) in FileByteRange() argument 41 FilePath = std::string(Sources.getFilename(Range.getBegin())); in FileByteRange() 43 FileOffset = Sources.getFileOffset(Range.getBegin()); in FileByteRange() 44 Length = Sources.getFileOffset(Range.getEnd()) - FileOffset; in FileByteRange()
|
| H A D | Replacement.cpp | 52 Replacement::Replacement(const SourceManager &Sources, SourceLocation Start, in Replacement() argument 54 setFromSourceLocation(Sources, Start, Length, ReplacementText); in Replacement() 57 Replacement::Replacement(const SourceManager &Sources, in Replacement() argument 61 setFromSourceRange(Sources, Range, ReplacementText, LangOpts); in Replacement() 120 void Replacement::setFromSourceLocation(const SourceManager &Sources, in setFromSourceLocation() argument 124 Sources.getDecomposedLoc(Start); in setFromSourceLocation() 125 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first); in setFromSourceLocation() 134 static int getRangeSize(const SourceManager &Sources, in getRangeSize() argument 137 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin()); in getRangeSize() 138 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd()); in getRangeSize() [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 210 SourceManager &Sources, FileManager &Files, in createInMemoryFile() argument 215 return Sources.createFileID(*File, SourceLocation(), SrcMgr::C_User); in createInMemoryFile() 235 SourceManager Sources(Diagnostics, Files); in fillRanges() local 236 FileID ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges() 258 SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1); in fillRanges() 259 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX); in fillRanges() 262 unsigned Offset = Sources.getFileOffset(Start); in fillRanges() 263 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges() 282 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]); in fillRanges() 293 End = Sources.getLocForEndOfFile(ID); in fillRanges() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/Core/ |
| H A D | Replacement.h | 99 Replacement(const SourceManager &Sources, SourceLocation Start, 103 Replacement(const SourceManager &Sources, const CharSourceRange &Range, 109 Replacement(const SourceManager &Sources, const Node &NodeToReplace, 133 void setFromSourceLocation(const SourceManager &Sources, SourceLocation Start, 135 void setFromSourceRange(const SourceManager &Sources, 362 Replacement::Replacement(const SourceManager &Sources, in Replacement() argument 367 setFromSourceRange(Sources, Range, ReplacementText, LangOpts); in Replacement()
|
| H A D | Diagnostic.h | 33 FileByteRange(const SourceManager &Sources, CharSourceRange Range); 51 DiagnosticMessage(llvm::StringRef Message, const SourceManager &Sources,
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 398 … llvm::ArrayRef<ImporterSource> Sources) : LogStream(&llvm::nulls()), Target(Target) { in ExternalASTMerger() argument 401 AddSources(Sources); in ExternalASTMerger() 412 void ExternalASTMerger::AddSources(llvm::ArrayRef<ImporterSource> Sources) { in AddSources() argument 413 for (const ImporterSource &S : Sources) { in AddSources() 422 void ExternalASTMerger::RemoveSources(llvm::ArrayRef<ImporterSource> Sources) { in RemoveSources() argument 424 for (const ImporterSource &S : Sources) in RemoveSources() 429 [&Sources](std::unique_ptr<ASTImporter> &Importer) -> bool { in RemoveSources() 430 for (const ImporterSource &S : Sources) { in RemoveSources() 439 for (const ImporterSource &S : Sources) { in RemoveSources()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | ExternalASTMerger.h | 116 llvm::ArrayRef<ImporterSource> Sources); 131 void AddSources(llvm::ArrayRef<ImporterSource> Sources); 140 void RemoveSources(llvm::ArrayRef<ImporterSource> Sources);
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/ |
| H A D | RefactoringCallbacks.cpp | 72 static Replacement replaceStmtWithText(SourceManager &Sources, const Stmt &From, in replaceStmtWithText() argument 75 Sources, CharSourceRange::getTokenRange(From.getSourceRange()), Text); in replaceStmtWithText() 77 static Replacement replaceStmtWithStmt(SourceManager &Sources, const Stmt &From, in replaceStmtWithStmt() argument 80 Sources, From, in replaceStmtWithStmt() 82 Sources, LangOptions())); in replaceStmtWithStmt()
|
| H A D | Refactoring.cpp | 47 SourceManager Sources(Diagnostics, getFiles()); in runAndSave() local 48 Rewriter Rewrite(Sources, DefaultLangOptions); in runAndSave()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 491 std::vector<std::string> &Sources) { in collectLineTableSources() argument 501 Sources.push_back(std::move(Path)); in collectLineTableSources() 509 std::vector<std::string> Sources; in collectObjectSources() local 520 Result &= collectLineTableSources(*LT, CompDir, Sources); in collectObjectSources() 535 Sources.push_back(std::string(AbsName)); in collectObjectSources() 555 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources); in collectObjectSources() 560 llvm::sort(Sources); in collectObjectSources() 561 Sources.erase(std::unique(Sources.begin(), Sources.end()), Sources.end()); in collectObjectSources() 563 for (StringRef Name : Sources) in collectObjectSources()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 108 SetVector<Value *> &Sources; member in __anon789080b40111::IRPromoter 129 : Ctx(C), PromotedWidth(Width), Visited(visited), Sources(sources), in IRPromoter() 460 for (auto *V : Sources) { in ExtendSources() 480 if (Sources.count(V)) in PromoteTree() 524 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks() 626 if (!isa<TruncInst>(V) || Sources.count(V)) in ConvertTruncs() 665 if (!isa<TruncInst>(V) || Sources.count(V)) in Mutate() 788 SetVector<Value *> Sources; in TryToPromote() local 839 Sources.insert(V); in TryToPromote() 875 if (Sources.count(CV)) { in TryToPromote() [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/clang-import-test/ |
| H A D | clang-import-test.cpp | 271 llvm::SmallVector<ExternalASTMerger::ImporterSource, 3> Sources; in AddExternalSource() local 273 Sources.emplace_back(Import.getASTContext(), Import.getFileManager(), in AddExternalSource() 275 auto ES = std::make_unique<ExternalASTMerger>(Target, Sources); in AddExternalSource() 347 llvm::SmallVector<ExternalASTMerger::ImporterSource, 3> Sources; in Forget() local 349 Sources.push_back({Import.getASTContext(), Import.getFileManager(), in Forget() 353 Merger->RemoveSources(Sources); in Forget()
|
| /openbsd-src/gnu/llvm/clang/tools/clang-rename/ |
| H A D | ClangRename.cpp | 226 SourceManager Sources(Diagnostics, FileMgr); in main() local 227 Rewriter Rewrite(Sources, DefaultLangOptions); in main() 232 const auto ID = Sources.getOrCreateFileID(*Entry, SrcMgr::C_User); in main()
|
| /openbsd-src/gnu/llvm/clang/www/ |
| H A D | menu.html.incl | 45 <a href="/get_started.html#build">Check Out Sources</a> 46 <a href="https://github.com/llvm/llvm-project/tree/main/clang/">Browse Sources</a>
|
| /openbsd-src/gnu/llvm/compiler-rt/www/ |
| H A D | menu.html.incl | 16 <a href="https://github.com/llvm/llvm-project/tree/main/compiler-rt/">Browse Sources</a>
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/memprof/ |
| H A D | README.txt | 8 memprof_*.{cc,h} : Sources of the memprof runtime library.
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | LibTooling.rst | 90 std::vector<std::string> Sources; 91 Sources.push_back("a.cc"); 92 Sources.push_back("b.cc"); 96 ClangTool Tool(OptionsParser.getCompilations(), Sources);
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | README.txt | 9 asan_*.{cc,h} : Sources of the asan runtime library.
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMachineCFGStructurizer.cpp | 45 PHISourcesT Sources; 64 SmallVector<unsigned, 4> &Sources); 122 return Info->Sources; in phiInfoElementGetSources() 144 auto &Sources = phiInfoElementGetSources(Info); in phiInfoElementRemoveSource() local 146 for (auto SI : Sources) { in phiInfoElementRemoveSource() 154 Sources.erase(Source); in phiInfoElementRemoveSource() 183 SmallVector<unsigned, 4> &Sources) { in findSourcesFromMBB() argument 189 Sources.push_back(SI.first); in findSourcesFromMBB() 202 NewElement->Sources = EmptySet; in addDest() 254 for (auto &SI : Element.Sources) { in dump() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | MultiplexExternalSemaSource.h | 43 SmallVector<ExternalSemaSource *, 2> Sources;
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | README.synology | 72 In Settings, add the following Package Sources: 140 In Settings, add the following Package Sources:
|