| /freebsd-14.2/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() 95 for (auto *S : Sources) in GetExternalCXXCtorInitializers() 103 for (const auto &S : Sources) in hasExternalDefinitions() 150 Sources[i]->ReadComments(); in ReadComments() 170 Sources[i]->PrintStats(); in PrintStats() 212 Sources[i]->ForgetSema(); in ForgetSema() 241 for (auto &Source : Sources) in ReadMismatchingDeleteExpressions() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ASTUtils.h | 262 Sources.push_back(&source); in addSource() 316 for (auto *S : Sources) in GetExternalCXXCtorInitializers() 420 for (auto &Source : Sources) in getMemoryBufferSizes() 429 for (auto &Source : Sources) in InitializeSema() 434 for (auto &Source : Sources) in ForgetSema() 439 for (auto &Source : Sources) in ReadMethodPool() 444 for (auto &Source : Sources) in updateOutOfDateSelector() 450 for (auto &Source : Sources) in ReadKnownNamespaces() 457 for (auto &Source : Sources) in ReadUndefinedButUsed() 465 for (auto &Source : Sources) in ReadMismatchingDeleteExpressions() [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-14.2/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 | 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 139 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd()); in getRangeSize() 148 void Replacement::setFromSourceRange(const SourceManager &Sources, in setFromSourceRange() argument 152 setFromSourceLocation(Sources, Sources.getSpellingLoc(Range.getBegin()), in setFromSourceRange() [all …]
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 217 return Sources.createFileID(*File, SourceLocation(), SrcMgr::C_User); in createInMemoryFile() 237 SourceManager Sources(Diagnostics, Files); in fillRanges() local 238 FileID ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges() 264 unsigned Offset = Sources.getFileOffset(Start); in fillRanges() 265 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges() 284 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]); in fillRanges() 295 End = Sources.getLocForEndOfFile(ID); in fillRanges() 297 unsigned Offset = Sources.getFileOffset(Start); in fillRanges() 298 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges() 517 SourceManager Sources(Diagnostics, Files); in format() local [all …]
|
| /freebsd-14.2/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-14.2/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-14.2/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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 549 std::vector<std::string> &Sources) { in collectLineTableSources() argument 559 Sources.push_back(std::move(Path)); in collectLineTableSources() 567 std::vector<std::string> Sources; in collectObjectSources() local 578 Result &= collectLineTableSources(*LT, CompDir, Sources); in collectObjectSources() 593 Sources.push_back(std::string(AbsName)); in collectObjectSources() 613 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources); in collectObjectSources() 618 llvm::sort(Sources); in collectObjectSources() 619 Sources.erase(std::unique(Sources.begin(), Sources.end()), Sources.end()); in collectObjectSources() 621 for (StringRef Name : Sources) in collectObjectSources()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 108 SetVector<Value *> &Sources; member in __anona30667b30111::IRPromoter 129 : Ctx(C), PromotedWidth(Width), Visited(visited), Sources(sources), in IRPromoter() 458 for (auto *V : Sources) { in ExtendSources() 478 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() 789 SetVector<Value *> Sources; in TryToPromote() local 840 Sources.insert(V); in TryToPromote() 876 if (Sources.count(CV)) { in TryToPromote() [all …]
|
| /freebsd-14.2/contrib/elftoolchain/ |
| H A D | .cirrus.yml | 6 - fetch http://tetworks.opengroup.org/downloads/38/software/Sources/3.8/tet3.8-src.tar.gz 20 - curl -O http://tetworks.opengroup.org/downloads/38/software/Sources/3.8/tet3.8-src.tar.gz
|
| /freebsd-14.2/usr.sbin/cron/doc/ |
| H A D | README.1ST | 1 Sources substantially rearranged 26 Aug 94, Jordan Hubbard. Content
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | README.txt | 8 memprof_*.{cc,h} : Sources of the memprof runtime library.
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | README.txt | 9 asan_*.{cc,h} : Sources of the asan runtime library.
|
| /freebsd-14.2/tools/tools/locale/etc/charmaps/ |
| H A D | charmaps.txt | 2 Sources:
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMachineCFGStructurizer.cpp | 45 PHISourcesT 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() 189 Sources.push_back(SI.first); in findSourcesFromMBB() 202 NewElement->Sources = EmptySet; in addDest() 254 for (auto &SI : Element.Sources) { in dump() 2030 SmallVector<unsigned, 4> Sources; in rewriteLiveOutRegs() local 2031 if (PHIInfo.findSourcesFromMBB(CodeBB, Sources)) { in rewriteLiveOutRegs() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | MultiplexExternalSemaSource.h | 43 SmallVector<ExternalSemaSource *, 2> Sources;
|
| /freebsd-14.2/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-14.2/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()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/arm/ |
| H A D | coresight.txt | 331 3. Sources
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 11075 auto Source = find(Sources, SourceVec); in ReconstructShuffle() 11076 if (Source == Sources.end()) in ReconstructShuffle() 11077 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec)); in ReconstructShuffle() 11087 if ((Sources.size() == 3 || Sources.size() == 4) && NumElts > 4) { in ReconstructShuffle() 11122 SDValue Src = Sources[i].Vec; in ReconstructShuffle() 11147 if (Sources.size() > 2) { in ReconstructShuffle() 11157 for (auto &Source : Sources) { in ReconstructShuffle() 11172 for (auto &Src : Sources) { in ReconstructShuffle() 11245 for (auto &Src : Sources) { in ReconstructShuffle() 11263 : Sources) in ReconstructShuffle() [all …]
|