HomeSort by relevance Sort by last modified time
    Searched defs:Capture (Results 1 - 15 of 15) sorted by null

  /external/easymock/src/org/easymock/
Capture.java 23 * Will contain what was captured by the <code>capture()</code> matcher. Knows
24 * if something was captured or not (allows to capture a null value).
29 public class Capture<T> implements Serializable {
40 public Capture() {
45 * Constructor allowing to select the capture type
48 * capture type
50 public Capture(CaptureType type) {
55 * Will reset capture to a "nothing captured yet" state
123 throw new IllegalArgumentException("Unknown capture type: " + type);
  /external/clang/lib/CodeGen/
CGBlocks.h 137 class Capture {
158 static Capture makeIndex(unsigned index) {
159 Capture v;
164 static Capture makeConstant(llvm::Value *value) {
165 Capture v;
187 llvm::DenseMap<const VarDecl*, Capture> Captures;
206 const Capture &getCapture(const VarDecl *var) const {
209 Capture &getCapture(const VarDecl *var) {
210 llvm::DenseMap<const VarDecl*, Capture>::iterator
CGBlocks.cpp 164 /// A chunk of data that we actually have to capture in the block.
168 const BlockDecl::Capture *Capture; // null for 'this'
172 const BlockDecl::Capture *capture,
174 : Alignment(align), Size(size), Capture(capture), Type(type) {}
178 if (!Capture)
181 info.Captures[Capture->getVariable()]
182 = CGBlockInfo::Capture::makeIndex(index)
527 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
681 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
890 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1082 const CGBlockInfo::Capture &capture = blockInfo.getCapture(self); local
1094 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1133 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1233 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1346 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
    [all...]
CGDebugInfo.cpp 768 // For C++11 Lambdas a Fields will be the same as a Capture, but the Capture
776 const LambdaExpr::Capture C = *I;
2459 const BlockDecl::Capture &capture = *i; local
2480 const BlockDecl::Capture *capture = i->Capture; local
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 149 class Capture {
150 // There are two categories of capture: capturing 'this', and capturing
151 // local variables. There are three ways to capture a local variable:
152 // capture by copy in the C++11 sense, capture by reference
153 // in the C++11 sense, and __block capture. Lambdas explicitly specify
154 // capture by copy or capture by reference. For blocks, __block capture
162 // and misc bits descibing the capture
    [all...]
Initialization.h 129 /// \brief The source location at which the capture occurs.
131 } Capture;
161 /// \brief Create the initialization entity for a lambda capture.
165 Capture.Var = Var;
166 Capture.Location = Loc.getRawEncoding();
268 /// \brief Create the initialization entity for a lambda capture.
349 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
350 return Capture.Var;
353 /// \brief Determine the location of the capture when initializing
356 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 759 LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit,
770 assert(Var == 0 && "'this' capture cannot have a variable!");
777 assert(Var && "capture must have a variable!");
783 LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
793 ArrayRef<Capture> Captures,
    [all...]
  /external/regex-re2/re2/
compile.cc 157 Frag Capture(Frag a, int n);
447 Frag Compiler::Capture(Frag a, int n) {
829 return Capture(child_frags[0], re->cap());
888 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
936 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
    [all...]
regexp.cc 255 Regexp* Regexp::Capture(Regexp* sub, ParseFlags flags, int cap) {
464 "invalid named capture group",
518 // Walker class to build map of named capture groups and their indices.
562 // Walker class to build map from capture group indices to their names.
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
DeclCXX.h 568 typedef LambdaExpr::Capture Capture;
605 Capture *Captures;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 107 /// \brief RAII class used to capture the first ID within a redeclaration
153 /// \brief Class used to capture the result of searching for an existing
    [all...]
ASTWriter.cpp     [all...]
  /external/v8/src/
liveobjectlist.cc     [all...]
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.jar 

Completed in 322 milliseconds