| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGBlocks.h | 164 class Capture { 204 static Capture 208 const BlockDecl::Capture *Cap) { in makeIndex() 209 Capture v; in makeIndex() 221 static Capture makeConstant(llvm::Value *value, in makeConstant() 222 const BlockDecl::Capture *Cap) { in makeConstant() 223 Capture v; in makeConstant() 237 const BlockDecl::Capture *Cap; 269 llvm::DenseMap<const VarDecl *, Capture *> Captures; 272 llvm::SmallVector<Capture, 4> SortedCaptures; [all …]
|
| H A D | CGBlocks.cpp | 74 const BlockDecl::Capture *CI; 75 const CGBlockInfo::Capture *Capture; member 81 const BlockDecl::Capture &CI, in BlockCaptureManagedEntity() 82 const CGBlockInfo::Capture &Capture) in BlockCaptureManagedEntity() 84 DisposeFlags(DisposeFlags), CI(&CI), Capture(&Capture) {} in BlockCaptureManagedEntity() 87 return Capture->getOffset() < Other.Capture->getOffset(); in operator <() 102 static std::string getBlockCaptureStr(const CGBlockInfo::Capture &Cap, 328 const BlockDecl::Capture *Capture; // null for 'this' member 335 const BlockDecl::Capture *capture, llvm::Type *type, in BlockLayoutChunk() 340 : Alignment(align), Size(size), Capture(capture), Type(type), in BlockLayoutChunk() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | UncountedLambdaCapturesChecker.cpp | 72 void reportBug(const LambdaCapture &Capture, ValueDecl *CapturedVar, in reportBug() argument 79 if (Capture.isExplicit()) { in reportBug() 91 printQuotedQualifiedName(Os, Capture.getCapturedVar()); in reportBug() 94 PathDiagnosticLocation BSLoc(Capture.getLocation(), BR->getSourceManager()); in reportBug()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 536 class Capture { 595 Capture(ValueDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() function 606 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, in Capture() function 614 Capture(IsVLACapture, const VariableArrayType *VLA, bool IsNested, in Capture() function 692 SmallVector<Capture, 4> Captures; 705 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture() 712 Captures.push_back(Capture(Capture::VLACapture, VLAType, in addVLATypeCapture() 723 Capture &getCXXThisCapture() { in getCXXThisCapture() 736 Capture &getCapture(ValueDecl *Var) { in getCapture() 741 const Capture &getCapture(ValueDecl *Var) const { in getCapture() [all …]
|
| H A D | Initialization.h | 212 struct C Capture; member 247 new (&Capture) C; in InitializedEntity() 248 Capture.VarID = VarID; in InitializedEntity() 249 Capture.Location = Loc; in InitializedEntity() 553 return Capture.VarID ? Capture.VarID->getName() : "this"; in getCapturedVarName() 560 return Capture.Location; in getCaptureLoc()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester/ |
| H A D | CaptureRunner.pm | 9 use Test::Tester::Capture; 55 return Test::Tester::Capture->new;
|
| H A D | Capture.pm | 3 package Test::Tester::Capture; 13 # Make Test::Tester::Capture thread-safe for ithreads. 221 Test::Tester::Capture - Help testing test modules built with Test::Builder
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/ |
| H A D | Tester.pm | 27 my $Capture = Test::Tester::Capture->new; 62 return Test::Tester::Capture->new; 90 local($Delegator->{Object}) = $Capture; 431 Make your module use the Test::Tester::Capture object instead of the 657 the real Test::Builder object, instead they go to the Test::Tester::Capture 685 Test::Tester::Capture is a cut down and hacked up version of Test::Builder.
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBReproducer.h | 42 static const char *Capture(); 43 static const char *Capture(const char *path);
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBReproducer.cpp | 60 const char *SBReproducer::Capture() { in Capture() function in SBReproducer 65 const char *SBReproducer::Capture(const char *path) { in Capture() function in SBReproducer
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 562 for (const auto &Capture : Captures) { in addLambdaParameters() local 563 if (Capture.Id == Param->getIdentifier()) { in addLambdaParameters() 566 Diag(Capture.Loc, diag::note_var_explicitly_captured_here) in addLambdaParameters() 567 << Capture.Id << true; in addLambdaParameters() 1610 ExprResult Sema::BuildCaptureInit(const Capture &Cap, in BuildCaptureInit() 1697 bool Sema::CaptureHasSideEffects(const Capture &From) { in CaptureHasSideEffects() 1723 const Capture &From) { in DiagnoseUnusedLambdaCapture() 1743 const sema::Capture &Capture) { in BuildCaptureField() argument 1744 SourceLocation Loc = Capture.getLocation(); in BuildCaptureField() 1745 QualType FieldType = Capture.getCaptureType(); in BuildCaptureField() [all …]
|
| H A D | SemaCUDA.cpp | 851 const sema::Capture &Capture) { in CUDACheckLambdaCapture() argument 877 if (!ShouldCheck || !Capture.isReferenceCapture()) in CUDACheckLambdaCapture() 880 if (Capture.isVariableCapture()) { in CUDACheckLambdaCapture() 881 SemaDiagnosticBuilder(DiagKind, Capture.getLocation(), in CUDACheckLambdaCapture() 883 << Capture.getVariable(); in CUDACheckLambdaCapture() 884 } else if (Capture.isThisCapture()) { in CUDACheckLambdaCapture() 889 SemaDiagnosticBuilder(DiagKind, Capture.getLocation(), in CUDACheckLambdaCapture()
|
| H A D | ScopeInfo.cpp | 221 bool Capture::isInitCapture() const { in isInitCapture()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Stmt.cpp | 1278 CapturedStmt::Capture::Capture(SourceLocation Loc, VariableCaptureKind Kind, in Capture() function in CapturedStmt::Capture 1299 CapturedStmt::Capture::getCaptureKind() const { in getCaptureKind() 1303 VarDecl *CapturedStmt::Capture::getCapturedVar() const { in getCapturedVar() 1309 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const { in getStoredCaptures() 1313 unsigned FirstCaptureOffset = llvm::alignTo(Size, alignof(Capture)); in getStoredCaptures() 1315 return reinterpret_cast<Capture *>( in getStoredCaptures() 1321 ArrayRef<Capture> Captures, in CapturedStmt() 1340 Capture *Buffer = getStoredCaptures(); in CapturedStmt() 1352 ArrayRef<Capture> Captures, in Create() 1370 Size = llvm::alignTo(Size, alignof(Capture)); in Create() [all …]
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBReproducer.i | 17 static const char *Capture(const char *path);
|
| /openbsd-src/gnu/llvm/libcxx/cmake/Modules/ |
| H A D | CodeCoverage.cmake | 39 message(STATUS "Capture Directories: ${CAPTURE_DIRS}")
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 646 for (const auto &Capture : Block->captures()) { in findCapturesToTrack() local 647 if (const auto *P = dyn_cast<ParmVarDecl>(Capture.getVariable())) { in findCapturesToTrack() 1573 for (const auto &Capture : Block->getBlockDecl()->captures()) { in VisitBlockExpr() local 1574 if (const auto *Param = dyn_cast<ParmVarDecl>(Capture.getVariable())) { in VisitBlockExpr()
|
| /openbsd-src/lib/libpcap/ |
| H A D | README | 28 User-level Packet Capture''. A compressed postscript version is in:
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Text-Balanced/t/ |
| H A D | 09_gentag.t | 25 # Capture "Subroutine main::f redefined" warning
|
| /openbsd-src/gnu/gcc/config/ |
| H A D | po.m4 | 190 [# Capture the value of obsolete ALL_LINGUAS because we need it to compute 194 # Capture the value of LINGUAS because we need it to compute CATALOGS.
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/config/ |
| H A D | po.m4 | 190 [# Capture the value of obsolete ALL_LINGUAS because we need it to compute 194 # Capture the value of LINGUAS because we need it to compute CATALOGS.
|
| /openbsd-src/gnu/usr.bin/perl/ext/POSIX/t/ |
| H A D | wrappers.t | 110 package Capture; 119 tie *STDOUT, 'Capture';
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Stmt.h | 3557 class Capture { 3571 Capture(SourceLocation Loc, VariableCaptureKind Kind, 3616 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures, 3628 Capture *getStoredCaptures() const; 3637 ArrayRef<Capture> Captures, 3674 using capture_iterator = Capture *; 3675 using const_capture_iterator = const Capture *;
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CIndexCodeCompletion.cpp | 747 CaptureCompletionResults Capture(Opts, *Results, &TU); in clang_codeCompleteAt_Impl() local 763 IncludeBriefComments, Capture, in clang_codeCompleteAt_Impl()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | SanitizerCoverage.rst | 139 // Capture this array in order to read/modify the counters. 160 // Capture this array in order to read/modify the flags. 187 // Capture this array in order to read the PCs and their Flags.
|