| /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 | 287 llvm::SmallVector<clang::ExternalSemaSource *, 2> Sources; 303 Sources.push_back(high_quality_source); in SemaSourceWithPriorities() 304 Sources.push_back(low_quality_source); in SemaSourceWithPriorities() 314 for (size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() 315 if (clang::Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl() 323 for (size_t i = 0; i < Sources.size(); ++i) in LoadExternalSpecializations() 324 newDeclFound |= Sources[i]->LoadExternalSpecializations(D, OnlyPartial); in LoadExternalSpecializations() 332 for (size_t i = 0; i < Sources.size(); ++i) in LoadExternalSpecializations() 333 newDeclFound |= Sources[i]->LoadExternalSpecializations(D, TemplateArgs); in LoadExternalSpecializations() 338 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() [all …]
|
| H A D | ASTUtils.cpp | 22 for (auto *Source : Sources) in ~SemaSourceWithPriorities() 27 for (size_t i = 0; i < Sources.size(); ++i) in PrintStats() 28 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()
|
| 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 123 const FileIDAndOffset DecomposedLocation = Sources.getDecomposedLoc(Start); in setFromSourceLocation() 125 Sources.getFileEntryRefForID(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 …]
|
| /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/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 const auto ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges() 269 const auto Start = Sources.translateLineCol(ID, FromLine, 1); in fillRanges() 270 const auto End = Sources.translateLineCol(ID, ToLine, UINT_MAX); in fillRanges() 273 const auto Offset = Sources.getFileOffset(Start); in fillRanges() 274 const auto Length = Sources.getFileOffset(End) - Offset; in fillRanges() 285 Length = Sources.getFileOffset(Sources.getLocForEndOfFile(ID)) - Offsets[0]; in fillRanges() 523 SourceManager Sources(Diagnostics, Files); in format() local [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 393 ArrayRef<ImporterSource> Sources) in ExternalASTMerger() argument 397 AddSources(Sources); in ExternalASTMerger() 408 void ExternalASTMerger::AddSources(ArrayRef<ImporterSource> Sources) { in AddSources() argument 409 for (const ImporterSource &S : Sources) { in AddSources() 418 void ExternalASTMerger::RemoveSources(ArrayRef<ImporterSource> Sources) { in RemoveSources() argument 420 for (const ImporterSource &S : Sources) in RemoveSources() 425 [&Sources](std::unique_ptr<ASTImporter> &Importer) -> bool { in RemoveSources() 426 for (const ImporterSource &S : Sources) { in RemoveSources() 435 for (const ImporterSource &S : Sources) { in RemoveSources()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExternalASTMerger.h | 116 ArrayRef<ImporterSource> Sources); 131 void AddSources(ArrayRef<ImporterSource> Sources); 140 void RemoveSources(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()
|
| H A D | Refactoring.cpp | 45 SourceManager Sources(Diagnostics, getFiles()); in runAndSave() local 46 Rewriter Rewrite(Sources, DefaultLangOptions); in runAndSave()
|
| /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 847 Sources.insert(V); in TryToPromote() 883 if (Sources.count(CV)) { in TryToPromote() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 593 std::vector<std::string> &Sources) { in collectLineTableSources() argument 603 Sources.push_back(std::move(Path)); in collectLineTableSources() 611 std::vector<std::string> Sources; in collectObjectSources() local 622 Result &= collectLineTableSources(*LT, CompDir, Sources); in collectObjectSources() 637 Sources.push_back(std::string(AbsName)); in collectObjectSources() 657 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources); in collectObjectSources() 662 llvm::sort(Sources); in collectObjectSources() 663 Sources.erase(llvm::unique(Sources), Sources.end()); in collectObjectSources() 665 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/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 | 969 auto Sources = Session.getInjectedSources(); in dumpInjectedSources() local 970 if (!Sources || !Sources->getChildCount()) { in dumpInjectedSources() 975 while (auto IS = Sources->getNext()) { in dumpInjectedSources()
|
| /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 | 1786 unsigned Sources = BV->getNumSources(); in shiftAmountKnownInRange() local 1787 for (unsigned I = 0; I < Sources; ++I) { in shiftAmountKnownInRange()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 12945 SmallVector<ShuffleSourceInfo, 2> Sources; in ReconstructShuffle() local 12963 auto Source = find(Sources, SourceVec); in ReconstructShuffle() 12964 if (Source == Sources.end()) in ReconstructShuffle() 12965 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec)); in ReconstructShuffle() 12975 if ((Sources.size() == 3 || Sources.size() == 4) && NumElts > 4) { in ReconstructShuffle() 12991 for (unsigned S = 0; S < Sources.size(); S++) { in ReconstructShuffle() 12992 if (V.getOperand(0) == Sources[S].Vec) { in ReconstructShuffle() 12993 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() 13005 TBLOperands.push_back(DAG.getConstant(Sources.size() == 3 in ReconstructShuffle() 13009 for (unsigned i = 0; i < Sources.size(); i++) { in ReconstructShuffle() [all …]
|