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/v8/testing/
H A Dgmock-support.h13 class Capture { class in namespace:testing
15 Capture() : value_(), has_value_(false) {} function in class:testing::Capture
37 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
57 Capture<T>* capture_;
66 Matcher<T> CaptureEq(Capture<T>* 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.cpp195 const BlockDecl::Capture *Capture; // null for 'this' member in struct:__anon929::BlockLayoutChunk
200 const BlockDecl::Capture *capture,
203 Capture(capture), Type(type) {}
207 if (!Capture)
210 info.Captures[Capture->getVariable()]
211 = CGBlockInfo::Capture::makeIndex(index);
219 bool LeftByref = left.Capture ? left.Capture->isByRef() : false;
220 bool RightByref = right.Capture
[all...]
H A DCGDebugInfo.cpp875 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
3011 const BlockDecl::Capture *Capture; member in struct:__anon948::BlockLayoutChunk
3069 chunk.Capture = nullptr;
3076 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
3085 chunk.Capture = &capture;
3096 const BlockDecl::Capture *capture = i->Capture;
/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/AST/
H A DExprCXX.h1382 typedef LambdaCapture Capture; typedef in class:clang::LambdaExpr
1388 ArrayRef<Capture> Captures,
1430 ArrayRef<Capture> Captures,
1457 typedef const Capture *capture_iterator;
H A DDeclCXX.h531 typedef LambdaCapture Capture; typedef in struct:clang::CXXRecordDecl::LambdaDefinitionData
562 /// \brief The Default Capture.
583 Capture *Captures;
H A DStmt.h1996 class Capture { class in class:clang::CapturedStmt
2009 Capture(SourceLocation Loc, VariableCaptureKind Kind, function in class:clang::CapturedStmt::Capture
2068 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures,
2078 Capture *getStoredCaptures() const;
2085 ArrayRef<Capture> Captures,
2133 typedef Capture *capture_iterator;
2134 typedef const Capture *const_capture_iterator;
/external/clang/include/clang/Sema/
H A DInitialization.h158 struct C Capture; member in union:clang::InitializedEntity::__anon718
193 Capture.VarID = VarID;
194 Capture.Location = Loc.getRawEncoding();
421 return Capture.VarID->getName();
427 return SourceLocation::getFromRawEncoding(Capture.Location);
H A DScopeInfo.h375 class Capture { class in class:clang::sema::CapturingScopeInfo
414 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, function in class:clang::sema::CapturingScopeInfo::Capture
423 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, function in class:clang::sema::CapturingScopeInfo::Capture
486 SmallVector<Capture, 4> Captures;
499 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
505 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false,
518 Capture &getCXXThisCapture() {
533 Capture &getCapture(VarDecl *Var) {
538 const Capture &getCapture(VarDecl *Var) const {
842 Captures.push_back(Capture(Captur
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1162 SmallVector<BlockDecl::Capture, 16> captures;
1171 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1348 typedef LambdaCapture Capture; typedef
1359 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures);
1360 Capture *ToCapture = Lambda.Captures;
1369 *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation());
1375 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
/external/v8/src/
H A Dhydrogen.h980 void Capture(HBasicBlock* true_branch, function in class:v8::internal::FINAL

Completed in 1432 milliseconds