Searched defs:Capture (Results 1 - 14 of 14) sorted by relevance

/external/easymock/src/org/easymock/
H A DCapture.java29 public class Capture<T> implements Serializable { class in inherits:Serializable
40 public Capture() { method in class:Capture
50 public Capture(CaptureType type) { method in class:Capture
/external/clang/lib/CodeGen/
H A DCGBlocks.h152 class Capture { class in class:clang::CodeGen::CGBlockInfo
173 static Capture makeIndex(unsigned index) {
174 Capture v;
179 static Capture makeConstant(llvm::Value *value) {
180 Capture v;
206 llvm::DenseMap<const VarDecl*, Capture> Captures;
233 const Capture &getCapture(const VarDecl *var) const {
236 Capture &getCapture(const VarDecl *var) {
237 llvm::DenseMap<const VarDecl*, Capture>::iterator
H A DCGBlocks.cpp187 const BlockDecl::Capture *Capture; // null for 'this' member in struct:__anon3701::BlockLayoutChunk
192 const BlockDecl::Capture *capture,
195 Capture(capture), Type(type) {}
199 if (!Capture)
202 info.Captures[Capture->getVariable()]
203 = CGBlockInfo::Capture::makeIndex(index);
211 bool LeftByref = left.Capture ? left.Capture->isByRef() : false;
212 bool RightByref = right.Capture
[all...]
H A DCGDebugInfo.cpp813 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
821 const LambdaExpr::Capture C = *I;
2675 const BlockDecl::Capture *Capture; member in struct:__anon3712::BlockLayoutChunk
2732 chunk.Capture = 0;
2740 const BlockDecl::Capture &capture = *i;
2742 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2751 chunk.Capture = &capture;
2761 const BlockDecl::Capture *captur
[all...]
/external/regex-re2/re2/
H A Dregexp.cc266 Regexp* Regexp::Capture(Regexp* sub, ParseFlags flags, int cap) { function in class:re2::Regexp
H A Dcompile.cc158 Frag Capture(Frag a, int n);
448 Frag Compiler::Capture(Frag a, int n) { function in class:re2::Compiler
830 return Capture(child_frags[0], re->cap());
889 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
937 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
/external/clang/include/clang/Sema/
H A DScopeInfo.h327 class Capture { class in class:clang::sema::CapturingScopeInfo
360 Capture(VarDecl *Var, bool block, bool byRef, bool isNested, function in class:clang::sema::CapturingScopeInfo::Capture
368 Capture(IsThisCapture, bool isNested, SourceLocation Loc, function in class:clang::sema::CapturingScopeInfo::Capture
414 SmallVector<Capture, 4> Captures;
427 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
439 Capture &getCXXThisCapture() {
451 Capture &getCapture(VarDecl *Var) {
456 const Capture &getCapture(VarDecl *Var) const {
571 Captures.push_back(Capture(Capture
[all...]
H A DInitialization.h137 struct C Capture; member in union:clang::InitializedEntity::__anon3521
171 Capture.Var = Var;
172 Capture.Location = Loc.getRawEncoding();
366 return Capture.Var;
373 return SourceLocation::getFromRawEncoding(Capture.Location);
/external/clang/include/clang/AST/
H A DExprCXX.h1149 /// \brief Flag used by the Capture class to indicate that the given
1153 /// \brief Flag used by the Capture class to indciate that the
1195 class Capture { class in class:clang::LambdaExpr
1217 Capture(SourceLocation Loc, bool Implicit,
1273 ArrayRef<Capture> Captures,
1315 ArrayRef<Capture> Captures,
1336 typedef const Capture *capture_iterator;
H A DDeclCXX.h509 typedef LambdaExpr::Capture Capture; typedef in struct:clang::CXXRecordDecl::LambdaDefinitionData
547 Capture *Captures;
995 typedef const LambdaExpr::Capture* capture_const_iterator;
/external/clang/lib/AST/
H A DExprCXX.cpp801 LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit, function in class:LambdaExpr::Capture
825 LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
835 ArrayRef<Capture> Captures,
863 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures);
864 Capture *ToCapture = Data.Captures;
896 ArrayRef<Capture> Captures,
964 "Capture index out-of-range");
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp976 SmallVector<BlockDecl::Capture, 16> captures;
985 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1132 typedef LambdaExpr::Capture Capture; typedef
1141 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures);
1142 Capture *ToCapture = Lambda.Captures;
1150 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
H A DASTWriter.cpp4783 LambdaExpr::Capture &Capture = Lambda.Captures[I]; local
4784 AddSourceLocation(Capture.getLocation(), Record);
4785 Record.push_back(Capture.isImplicit());
4786 Record.push_back(Capture.getCaptureKind()); // FIXME: stable!
4787 VarDecl *Var = Capture.capturesVariable()? Capture.getCapturedVar() : 0;
4789 AddSourceLocation(Capture.isPackExpansion()? Capture.getEllipsisLoc()
/external/v8/src/
H A Dliveobjectlist.cc1098 MaybeObject* LiveObjectList::Capture() { function in class:v8::internal::LiveObjectList

Completed in 283 milliseconds