Home
last modified time | relevance | path

Searched refs:Sources (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp24 Sources.push_back(&s1); in MultiplexExternalSemaSource()
25 Sources.push_back(&s2); in MultiplexExternalSemaSource()
36 Sources.push_back(&source); in addSource()
89 for (auto *S : Sources) in GetExternalCXXCtorInitializers()
97 for (const auto &S : Sources) in hasExternalDefinitions()
134 Sources[i]->CompleteType(Tag); in CompleteType()
144 Sources[i]->ReadComments(); in ReadComments()
164 Sources[i]->PrintStats(); in PrintStats()
201 Sources[i]->InitializeSema(S); in InitializeSema()
206 Sources[i]->ForgetSema(); in ForgetSema()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h261 Sources.push_back(&source); in addSource()
315 for (auto *S : Sources) in GetExternalCXXCtorInitializers()
419 for (auto &Source : Sources) in getMemoryBufferSizes()
428 for (auto &Source : Sources) in InitializeSema()
433 for (auto &Source : Sources) in ForgetSema()
438 for (auto &Source : Sources) in ReadMethodPool()
443 for (auto &Source : Sources) in updateOutOfDateSelector()
449 for (auto &Source : Sources) in ReadKnownNamespaces()
456 for (auto &Source : Sources) in ReadUndefinedButUsed()
464 for (auto &Source : Sources) in ReadMismatchingDeleteExpressions()
[all …]
H A DASTUtils.cpp24 for (size_t i = 0; i < Sources.size(); ++i) in PrintStats()
25 Sources[i]->PrintStats(); in PrintStats()
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Core/
H A DDiagnostic.cpp25 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 DReplacement.cpp52 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()
134 static int getRangeSize(const SourceManager &Sources, in getRangeSize() argument
138 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd()); in getRangeSize()
147 void Replacement::setFromSourceRange(const SourceManager &Sources, in setFromSourceRange() argument
151 setFromSourceLocation(Sources, Sources.getSpellingLoc(Range.getBegin()), in setFromSourceRange()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp188 return Sources.createFileID(*File, SourceLocation(), SrcMgr::C_User); in createInMemoryFile()
208 SourceManager Sources(Diagnostics, Files); in fillRanges() local
209 FileID ID = createInMemoryFile("<irrelevant>", *Code, Sources, Files, in fillRanges()
231 unsigned Offset = Sources.getFileOffset(Start); in fillRanges()
232 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges()
251 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]); in fillRanges()
262 End = Sources.getLocForEndOfFile(ID); in fillRanges()
264 unsigned Offset = Sources.getFileOffset(Start); in fillRanges()
265 unsigned Length = Sources.getFileOffset(End) - Offset; in fillRanges()
449 SourceManager Sources(Diagnostics, Files); in format() local
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h99 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,
359 Replacement::Replacement(const SourceManager &Sources, in Replacement() argument
364 setFromSourceRange(Sources, Range, ReplacementText, LangOpts); in Replacement()
H A DDiagnostic.h33 FileByteRange(const SourceManager &Sources, CharSourceRange Range);
51 DiagnosticMessage(llvm::StringRef Message, const SourceManager &Sources,
/freebsd-13.1/contrib/googletest/googletest/xcode/gtest.xcodeproj/
H A Dproject.pbxproj500 40899F400FFA7184000B29AE /* Sources */,
517 4089A0100FFACEFC000B29AE /* Sources */,
534 40C848F7101A209C0083642A /* Sources */,
549 40C84908101A217E0083642A /* Sources */,
564 40C8497F101A36850083642A /* Sources */,
582 40C8498E101A36A60083642A /* Sources */,
600 8D07F2C10486CC7A007CD1D0 /* Sources */,
705 40899F400FFA7184000B29AE /* Sources */ = {
713 4089A0100FFACEFC000B29AE /* Sources */ = {
722 40C848F7101A209C0083642A /* Sources */ = {
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp398 … 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()
430 [&Sources](std::unique_ptr<ASTImporter> &Importer) -> bool { in RemoveSources()
431 for (const ImporterSource &S : Sources) { in RemoveSources()
441 for (const ImporterSource &S : Sources) { in RemoveSources()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTMerger.h116 llvm::ArrayRef<ImporterSource> Sources);
131 void AddSources(llvm::ArrayRef<ImporterSource> Sources);
140 void RemoveSources(llvm::ArrayRef<ImporterSource> Sources);
/freebsd-13.1/contrib/googletest/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/
H A Dproject.pbxproj37 …3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB1230E5AE…
39 …3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB127…
191 3B07BDE70E3F3F9E00647869 /* Sources */,
208 8D07F2C10486CC7A007CD1D0 /* Sources */,
282 3B07BDE70E3F3F9E00647869 /* Sources */ = {
286 3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */,
290 8D07F2C10486CC7A007CD1D0 /* Sources */ = {
294 3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */,
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp72 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 DRefactoring.cpp47 SourceManager Sources(Diagnostics, getFiles()); in runAndSave() local
48 Rewriter Rewrite(Sources, DefaultLangOptions); in runAndSave()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTypePromotion.cpp109 SetVector<Value*> &Sources; member in __anon57ec75710111::IRPromoter
132 Sources(sources), Sinks(sinks), SafeWrap(wrap) { in IRPromoter()
501 for (auto V : Sources) { in ExtendSources()
523 if (Sources.count(V)) in PromoteTree()
559 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks()
654 if (!isa<TruncInst>(V) || Sources.count(V)) in ConvertTruncs()
693 if (!isa<TruncInst>(V) || Sources.count(V)) in Mutate()
821 SetVector<Value*> Sources; in TryToPromote() local
872 Sources.insert(V); in TryToPromote()
906 if (Sources.count(V)) { in TryToPromote()
[all …]
/freebsd-13.1/contrib/elftoolchain/
H A D.cirrus.yml6 - 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-13.1/usr.sbin/cron/doc/
H A DREADME.1ST1 Sources substantially rearranged 26 Aug 94, Jordan Hubbard. Content
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/
H A DREADME.txt8 memprof_*.{cc,h} : Sources of the memprof runtime library.
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A DREADME.txt9 asan_*.{cc,h} : Sources of the asan runtime library.
/freebsd-13.1/tools/tools/locale/etc/charmaps/
H A Dcharmaps.txt3 Sources:
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp45 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()
2057 SmallVector<unsigned, 4> Sources; in rewriteLiveOutRegs() local
2058 if (PHIInfo.findSourcesFromMBB(CodeBB, Sources)) { in rewriteLiveOutRegs()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DMultiplexExternalSemaSource.h43 SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them.
/freebsd-13.1/sys/contrib/device-tree/Bindings/iio/
H A Diio-bindings.txt4 Sources of IIO channels can be represented by any node in the device
/freebsd-13.1/contrib/googletest/googletest/docs/
H A DXcodeGuide.md13 1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests".
49 …er BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of t…
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp939 auto Sources = Session.getInjectedSources(); in dumpInjectedSources() local
940 if (!Sources || !Sources->getChildCount()) { in dumpInjectedSources()
945 while (auto IS = Sources->getNext()) { in dumpInjectedSources()

12