/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/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()
|
/freebsd/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 …]
|
/freebsd/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,
|
/freebsd/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()
|
/freebsd/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);
|
/freebsd/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()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TypePromotion.cpp | 108 SetVector<Value *> &Sources; member in __anonab9dbb3d0111::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 …]
|
/freebsd/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()
|
/freebsd/usr.sbin/cron/doc/ |
H A D | README.1ST | 1 Sources substantially rearranged 26 Aug 94, Jordan Hubbard. Content
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | README.txt | 8 memprof_*.{cc,h} : Sources of the memprof runtime library.
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | README.txt | 9 asan_*.{cc,h} : Sources of the asan runtime library.
|
/freebsd/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 …]
|
/freebsd/tools/tools/locale/etc/charmaps/ |
H A D | charmaps.txt | 2 Sources:
|
/freebsd/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
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | MultiplexExternalSemaSource.h | 43 SmallVector<ExternalSemaSource *, 2> Sources;
|
/freebsd/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
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | llvm-pdbutil.cpp | 963 auto Sources = Session.getInjectedSources(); 964 if (!Sources || !Sources->getChildCount()) { in dumpInjectedSources() 969 while (auto IS = Sources->getNext()) { in dumpInjectedSources() 965 auto Sources = Session.getInjectedSources(); dumpInjectedSources() local
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | coresight.txt | 331 3. Sources
|
/freebsd/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()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 12078 SmallVector<ShuffleSourceInfo, 2> Sources; in ReconstructShuffle() local 12096 auto Source = find(Sources, SourceVec); in ReconstructShuffle() 12097 if (Source == Sources.end()) in ReconstructShuffle() 12098 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec)); in ReconstructShuffle() 12108 if ((Sources.size() == 3 || Sources.size() == 4) && NumElts > 4) { in ReconstructShuffle() 12124 for (unsigned S = 0; S < Sources.size(); S++) { in ReconstructShuffle() 12125 if (V.getOperand(0) == Sources[S].Vec) { in ReconstructShuffle() 12126 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() 12138 TBLOperands.push_back(DAG.getConstant(Sources.size() == 3 in ReconstructShuffle() 12142 for (unsigned i = 0; i < Sources.size(); i++) { in ReconstructShuffle() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 8216 SmallVector<ShuffleSourceInfo, 2> Sources; in ReconstructShuffle() local 8233 auto Source = llvm::find(Sources, SourceVec); in ReconstructShuffle() 8234 if (Source == Sources.end()) in ReconstructShuffle() 8235 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec)); in ReconstructShuffle() 8245 if (Sources.size() > 2) in ReconstructShuffle() 8251 for (auto &Source : Sources) { in ReconstructShuffle() 8264 for (auto &Src : Sources) { in ReconstructShuffle() 8327 for (auto &Src : Sources) { in ReconstructShuffle() 8339 : Sources) in ReconstructShuffle() 8350 auto Src = llvm::find(Sources, Entry.getOperand(0)); in ReconstructShuffle() [all …]
|