Home
last modified time | relevance | path

Searched refs:Capture (Results 1 – 25 of 32) sorted by relevance

12

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.h152 class Capture {
173 static Capture makeIndex(unsigned index) { in makeIndex()
174 Capture v; in makeIndex()
179 static Capture makeConstant(llvm::Value *value) { in makeConstant()
180 Capture v; in makeConstant()
206 llvm::DenseMap<const VarDecl*, Capture> Captures;
233 const Capture &getCapture(const VarDecl *var) const { in getCapture()
236 Capture &getCapture(const VarDecl *var) { in getCapture()
237 llvm::DenseMap<const VarDecl*, Capture>::iterator in getCapture()
H A DCGBlocks.cpp195 const BlockDecl::Capture *Capture; // null for 'this' member
200 const BlockDecl::Capture *capture, in BlockLayoutChunk()
203 Capture(capture), Type(type) {} in BlockLayoutChunk()
207 if (!Capture) in setIndex()
210 info.Captures[Capture->getVariable()] in setIndex()
211 = CGBlockInfo::Capture::makeIndex(index); in setIndex()
219 bool LeftByref = left.Capture ? left.Capture->isByRef() : false; in operator <()
220 bool RightByref = right.Capture ? right.Capture->isByRef() : false; in operator <()
402 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); in computeBlockInfo()
605 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); in enterBlockScope()
[all …]
H A DCGDebugInfo.cpp2998 const BlockDecl::Capture *Capture; member
3056 chunk.Capture = nullptr; in EmitDeclareOfBlockLiteralArgVariable()
3063 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable); in EmitDeclareOfBlockLiteralArgVariable()
3072 chunk.Capture = &capture; in EmitDeclareOfBlockLiteralArgVariable()
3083 const BlockDecl::Capture *capture = i->Capture; in EmitDeclareOfBlockLiteralArgVariable()
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h359 class Capture {
398 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() function
407 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, in Capture() function
470 SmallVector<Capture, 4> Captures;
483 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture()
489 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false, in addVLATypeCapture()
502 Capture &getCXXThisCapture() { in getCXXThisCapture()
517 Capture &getCapture(VarDecl *Var) { in getCapture()
522 const Capture &getCapture(VarDecl *Var) const { in getCapture()
826 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType, in addThisCapture()
H A DInitialization.h158 struct C Capture; member
193 Capture.VarID = VarID; in InitializedEntity()
194 Capture.Location = Loc.getRawEncoding(); in InitializedEntity()
421 return Capture.VarID->getName(); in getCapturedVarName()
427 return SourceLocation::getFromRawEncoding(Capture.Location); in getCaptureLoc()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp1066 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const { in getStoredCaptures()
1071 llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in getStoredCaptures()
1073 return reinterpret_cast<Capture *>( in getStoredCaptures()
1079 ArrayRef<Capture> Captures, in CapturedStmt()
1098 Capture *Buffer = getStoredCaptures(); in CapturedStmt()
1110 ArrayRef<Capture> Captures, in Create()
1128 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in Create()
1129 Size += sizeof(Capture) * Captures.size(); in Create()
1141 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in CreateDeserialized()
1142 Size += sizeof(Capture) * NumCaptures; in CreateDeserialized()
H A DExprCXX.cpp933 ArrayRef<Capture> Captures, in LambdaExpr()
962 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures); in LambdaExpr()
963 Capture *ToCapture = Data.Captures; in LambdaExpr()
996 ArrayRef<Capture> Captures, in Create()
H A DDecl.cpp3706 const Capture *begin, in setCaptures()
3707 const Capture *end, in setCaptures()
3721 size_t allocationSize = NumCaptures * sizeof(Capture); in setCaptures()
3724 Captures = static_cast<Capture*>(buffer); in setCaptures()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmt.h1995 class Capture {
2008 Capture(SourceLocation Loc, VariableCaptureKind Kind,
2067 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures,
2077 Capture *getStoredCaptures() const;
2084 ArrayRef<Capture> Captures,
2132 typedef Capture *capture_iterator;
2133 typedef const Capture *const_capture_iterator;
H A DDecl.h3328 class Capture {
3343 Capture(VarDecl *variable, bool byRef, bool nested, Expr *copy) in Capture() function
3379 Capture *Captures;
3459 typedef const Capture *capture_iterator;
3460 typedef const Capture *capture_const_iterator;
3486 const Capture *begin,
3487 const Capture *end,
H A DExprCXX.h1375 typedef LambdaCapture Capture; typedef
1381 ArrayRef<Capture> Captures,
1424 ArrayRef<Capture> Captures,
1451 typedef const Capture *capture_iterator;
H A DDeclCXX.h531 typedef LambdaCapture Capture; typedef
583 Capture *Captures;
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1409 LambdaScopeInfo::Capture From = LSI->Captures[I]; in ActOnLambdaExpr()
1625 BlockDecl::Capture Capture(/*Variable=*/CapVar, /*ByRef=*/false, in BuildBlockForLambdaConversion() local
1627 Block->setCaptures(Context, &Capture, &Capture + 1, in BuildBlockForLambdaConversion()
H A DSemaStmt.cpp3444 SmallVectorImpl<CapturedStmt::Capture> &Captures, in buildCapturedStmtCaptureList()
3446 ArrayRef<CapturingScopeInfo::Capture> Candidates) { in buildCapturedStmtCaptureList()
3448 typedef ArrayRef<CapturingScopeInfo::Capture>::const_iterator CaptureIter; in buildCapturedStmtCaptureList()
3452 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(), in buildCapturedStmtCaptureList()
3458 CapturedStmt::Capture(Cap->getLocation(), CapturedStmt::VCK_VLAType)); in buildCapturedStmtCaptureList()
3466 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(), in buildCapturedStmtCaptureList()
3571 SmallVector<CapturedStmt::Capture, 4> Captures; in ActOnCapturedRegionEnd()
/minix3/external/bsd/libpcap/dist/
H A DREADME39 User-level Packet Capture''. A compressed PostScript version can be
H A DREADME.dag86 streams. Capture streams have even numbers. These are available via libpcap
H A DREADME.hpux105 Subject: Re: [tcpdump-workers] I Can't Capture the Outbound Traffic
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp719 CaptureCompletionResults Capture(Opts, *Results, &TU); in clang_codeCompleteAt_Impl() local
727 Capture, in clang_codeCompleteAt_Impl()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1144 SmallVector<BlockDecl::Capture, 16> captures; in VisitBlockDecl()
1153 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr)); in VisitBlockDecl()
1321 typedef LambdaCapture Capture; in ReadCXXDefinitionData() typedef
1332 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures); in ReadCXXDefinitionData()
1333 Capture *ToCapture = Lambda.Captures; in ReadCXXDefinitionData()
1342 *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation()); in ReadCXXDefinitionData()
1348 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc); in ReadCXXDefinitionData()
H A DASTWriter.cpp5693 const LambdaCapture &Capture = Lambda.Captures[I]; in AddCXXDefinitionData() local
5694 AddSourceLocation(Capture.getLocation(), Record); in AddCXXDefinitionData()
5695 Record.push_back(Capture.isImplicit()); in AddCXXDefinitionData()
5696 Record.push_back(Capture.getCaptureKind()); in AddCXXDefinitionData()
5697 switch (Capture.getCaptureKind()) { in AddCXXDefinitionData()
5704 Capture.capturesVariable() ? Capture.getCapturedVar() : nullptr; in AddCXXDefinitionData()
5706 AddSourceLocation(Capture.isPackExpansion() ? Capture.getEllipsisLoc() in AddCXXDefinitionData()
/minix3/external/bsd/mdocml/dist/
H A Dlib.in85 LINE("libpcap", "Capture Library (libpcap, \\-lpcap)")
/minix3/external/bsd/flex/dist/m4/
H A Dpo.m4208 [# Capture the value of obsolete ALL_LINGUAS because we need it to compute
212 # Capture the value of LINGUAS because we need it to compute CATALOGS.
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp1941 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags, in LoadFromCommandLine() local
2350 CaptureDroppedDiagnostics Capture(true, in CodeComplete() local
/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/
H A Darc.m500 // Capture the VLA size.
541 // Capture the VLA size.
/minix3/sys/dev/pci/
H A Dpcidevs1776 product BROOKTREE BT848 0x0350 Bt848 Video Capture
1777 product BROOKTREE BT849 0x0351 Bt849 Video Capture
1778 product BROOKTREE BT878 0x036e Bt878 Video Capture
1779 product BROOKTREE BT879 0x036f Bt879 Video Capture
1780 product BROOKTREE BT880 0x0370 Bt880 Video Capture
1781 product BROOKTREE BT878A 0x0878 Bt878 Video Capture (Audio Section)
1782 product BROOKTREE BT879A 0x0879 Bt879 Video Capture (Audio Section)
1783 product BROOKTREE BT880A 0x0880 Bt880 Video Capture (Audio Section)
2456 product HITACHI SWC 0x0101 MSVCC01/02/03/04 Video Capture Cards
5064 product PCHDTV HD2000 0x2000 HD-2000 HDTV Video Capture
[all …]

12