| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | MultiplexExternalSemaSource.cpp | 24 Sources.push_back(&s1); in MultiplexExternalSemaSource() 25 Sources.push_back(&s2); in MultiplexExternalSemaSource() 36 Sources.push_back(&source); in addSource() 44 for(size_t i = 0; i < Sources.size(); ++i) in GetExternalDecl() 45 if (Decl *Result = Sources[i]->GetExternalDecl(ID)) in GetExternalDecl() 51 for (size_t i = 0; i < Sources.size(); ++i) in CompleteRedeclChain() 52 Sources[i]->CompleteRedeclChain(D); in CompleteRedeclChain() 57 for(size_t i = 0; i < Sources.size(); ++i) { in GetExternalSelector() 58 Sel = Sources[i]->GetExternalSelector(ID); in GetExternalSelector() 67 for(size_t i = 0; i < Sources.size(); ++i) in GetNumExternalSelectors() [all …]
|
| /netbsd-src/external/bsd/elftosb/dist/elftosb.xcodeproj/ |
| H A D | project.pbxproj | 26 …0208BEB30A02D2B800255D31 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208BEB10A02D2… 27 …0208BF4D0A03137800255D31 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208BF4B0A03… 28 …0208BF8C0A03E04800255D31 /* RijndaelCBCMAC.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208… 29 …0208C03F0A0544BA00255D31 /* options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208C03D0A0… 30 …0208C08C0A05677000255D31 /* AESKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208C08B0A05… 31 …0208C28E0A0A4E5F00255D31 /* DataSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208C288… 32 …0208C2900A0A4E5F00255D31 /* Operation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208C28A0… 33 …0208C2920A0A4E5F00255D31 /* DataTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0208C28C… 34 …0208C29B0A0A4EE800255D31 /* ConversionController.cpp in Sources */ = {isa = PBXBuildFile; fileRef … 35 …020D41880A0FF0C20027E24E /* OutputSection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 020D4… [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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() 125 const FileEntry *Entry = Sources.getFileEntryForID(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 …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 183 SourceManager &Sources, FileManager &Files, in createInMemoryFile() argument 188 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() 227 SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1); in fillRanges() 228 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX); 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() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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, 359 Replacement::Replacement(const SourceManager &Sources, in Replacement() argument 364 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,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 398 … 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 112 SetVector<Value*> &Sources; member in __anon7086da680111::IRPromoter 135 Sources(sources), Sinks(sinks), SafeWrap(wrap) { in IRPromoter() 504 for (auto V : Sources) { in ExtendSources() 526 if (Sources.count(V)) in PromoteTree() 562 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks() 657 if (!isa<TruncInst>(V) || Sources.count(V)) in ConvertTruncs() 696 if (!isa<TruncInst>(V) || Sources.count(V)) in Mutate() 824 SetVector<Value*> Sources; in TryToPromote() local 875 Sources.insert(V); in TryToPromote() 909 if (Sources.count(V)) { in TryToPromote() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/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);
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-import-test/ |
| H A D | clang-import-test.cpp | 269 llvm::SmallVector<ExternalASTMerger::ImporterSource, 3> Sources; in AddExternalSource() local 271 Sources.emplace_back(Import.getASTContext(), Import.getFileManager(), in AddExternalSource() 273 auto ES = std::make_unique<ExternalASTMerger>(Target, Sources); in AddExternalSource() 345 llvm::SmallVector<ExternalASTMerger::ImporterSource, 3> Sources; in Forget() local 347 Sources.push_back({Import.getASTContext(), Import.getFileManager(), in Forget() 351 Merger->RemoveSources(Sources); in Forget()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-rename/ |
| H A D | ClangRename.cpp | 226 SourceManager Sources(Diagnostics, FileMgr); in main() local 227 Rewriter Rewrite(Sources, DefaultLangOptions); in main() 232 const auto ID = Sources.getOrCreateFileID(*Entry, SrcMgr::C_User); in main()
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | LibTooling.rst | 90 std::vector<std::string> Sources; 91 Sources.push_back("a.cc"); 92 Sources.push_back("b.cc"); 96 ClangTool Tool(OptionsParser.getCompilations(), Sources);
|
| /netbsd-src/external/gpl3/autoconf/dist/tests/ |
| H A D | compile.at | 178 [[# Taken from autoconf.texi:Generating Sources. 192 # Taken from autoconf.texi:Generating Sources. 223 [[# Taken from autoconf.texi:Generating Sources. 237 # Taken from autoconf.texi:Generating Sources.
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| H A D | README.txt | 9 asan_*.{cc,h} : Sources of the asan runtime library.
|
| /netbsd-src/external/apache2/llvm/dist/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 …]
|
| /netbsd-src/sys/compat/common/ |
| H A D | files.common | 11 # Sources for syscall and ioctl compatibility across the versions. 123 # Sources for sysv ipc compatibility across the versions.
|
| /netbsd-src/crypto/external/ |
| H A D | README | 3 Organization of Sources:
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | MultiplexExternalSemaSource.h | 43 SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them.
|
| /netbsd-src/external/gpl2/gettext/dist/djgpp/ |
| H A D | COPYING.DJ | 17 * Sources used to build crt0.o, gcrt0.o, libc.a, libdbg.a, and
|
| /netbsd-src/external/ |
| H A D | README | 3 Organization of Sources:
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| H A D | llvm-pdbutil.cpp | 939 auto Sources = Session.getInjectedSources(); in dumpInjectedSources() local 940 if (!Sources || !Sources->getChildCount()) { in dumpInjectedSources() 945 while (auto IS = Sources->getNext()) { in dumpInjectedSources()
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/x86/pentium/ |
| H A D | README | 135 Prefetching Sources
|