| /src/contrib/llvm-project/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 …]
|
| /src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ASTUtils.h | 253 llvm::SmallVector<clang::ExternalSemaSource *, 2> Sources; 261 Sources.push_back(&high_quality_source); in SemaSourceWithPriorities() 262 Sources.push_back(&low_quality_source); in SemaSourceWithPriorities() 268 Sources.push_back(&source); in addSource() 276 for (size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() 277 if (clang::Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl() 283 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() 284 Sources[i]->CompleteRedeclChain(D); in CompleteRedeclChain() 289 for (size_t i = 0; i < Sources.size(); ++i) { in GetExternalSelector() 290 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()
|
| /src/contrib/llvm-project/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() 126 Sources.getFileEntryRefForID(DecomposedLocation.first); in setFromSourceLocation() 135 static int getRangeSize(const SourceManager &Sources, in getRangeSize() argument 138 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin()); in getRangeSize() 139 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd()); in getRangeSize() [all …]
|
| /src/contrib/llvm-project/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,
|
| /src/contrib/llvm-project/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 221 SourceManager &Sources, FileManager &Files, in createInMemoryFile() argument 226 return Sources.createFileID(*File, SourceLocation(), SrcMgr::C_User); in createInMemoryFile() 246 SourceManager Sources(Diagnostics, Files); in fillRanges() local 247 FileID ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges() 269 SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1); in fillRanges() 270 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX); in fillRanges() 273 unsigned Offset = Sources.getFileOffset(Start); in fillRanges() 274 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges() 293 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]); in fillRanges() 304 End = Sources.getLocForEndOfFile(ID); in fillRanges() [all …]
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 395 … llvm::ArrayRef<ImporterSource> Sources) : LogStream(&llvm::nulls()), Target(Target) { in ExternalASTMerger() argument 398 AddSources(Sources); in ExternalASTMerger() 409 void ExternalASTMerger::AddSources(llvm::ArrayRef<ImporterSource> Sources) { in AddSources() argument 410 for (const ImporterSource &S : Sources) { in AddSources() 419 void ExternalASTMerger::RemoveSources(llvm::ArrayRef<ImporterSource> Sources) { in RemoveSources() argument 421 for (const ImporterSource &S : Sources) in RemoveSources() 426 [&Sources](std::unique_ptr<ASTImporter> &Importer) -> bool { in RemoveSources() 427 for (const ImporterSource &S : Sources) { in RemoveSources() 436 for (const ImporterSource &S : Sources) { in RemoveSources()
|
| /src/contrib/llvm-project/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);
|
| /src/contrib/llvm-project/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()
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 108 SetVector<Value *> &Sources; member in __anone95e1ef20111::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() 532 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks() 634 if (!isa<TruncInst>(V) || Sources.count(V)) in ConvertTruncs() 673 if (!isa<TruncInst>(V) || Sources.count(V)) in Mutate() 797 SetVector<Value *> Sources; in TryToPromote() local 848 Sources.insert(V); in TryToPromote() 884 if (Sources.count(CV)) { in TryToPromote() [all …]
|
| /src/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 579 std::vector<std::string> &Sources) { in collectLineTableSources() argument 589 Sources.push_back(std::move(Path)); in collectLineTableSources() 597 std::vector<std::string> Sources; in collectObjectSources() local 608 Result &= collectLineTableSources(*LT, CompDir, Sources); in collectObjectSources() 623 Sources.push_back(std::string(AbsName)); in collectObjectSources() 643 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources); in collectObjectSources() 648 llvm::sort(Sources); in collectObjectSources() 649 Sources.erase(llvm::unique(Sources), Sources.end()); in collectObjectSources() 651 for (StringRef Name : Sources) in collectObjectSources()
|
| /src/usr.sbin/cron/doc/ |
| H A D | README.1ST | 1 Sources substantially rearranged 26 Aug 94, Jordan Hubbard. Content
|
| /src/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | README.txt | 8 memprof_*.{cc,h} : Sources of the memprof runtime library.
|
| /src/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | README.txt | 9 asan_*.{cc,h} : Sources of the asan runtime library.
|
| /src/contrib/llvm-project/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 …]
|
| /src/tools/tools/locale/etc/charmaps/ |
| H A D | charmaps.txt | 2 Sources:
|
| /src/sys/contrib/device-tree/Bindings/ |
| H A D | dts-coding-style.rst | 4 Devicetree Sources (DTS) Coding Style 7 When writing Devicetree Sources (DTS) please observe below guidelines. They
|
| /src/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | MultiplexExternalSemaSource.h | 43 SmallVector<ExternalSemaSource *, 2> Sources;
|
| /src/sys/contrib/device-tree/Bindings/iio/ |
| H A D | iio-bindings.txt | 4 Sources of IIO channels can be represented by any node in the device
|
| /src/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | llvm-pdbutil.cpp | 963 auto Sources = Session.getInjectedSources(); in dumpInjectedSources() local 964 if (!Sources || !Sources->getChildCount()) { in dumpInjectedSources() 969 while (auto IS = Sources->getNext()) { in dumpInjectedSources()
|
| /src/sys/contrib/device-tree/Bindings/arm/ |
| H A D | coresight.txt | 331 3. Sources
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | Utils.cpp | 1761 unsigned Sources = BV->getNumSources(); in shiftAmountKnownInRange() local 1762 for (unsigned I = 0; I < Sources; ++I) { in shiftAmountKnownInRange()
|