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

  /external/easymock/src/org/easymock/internal/matchers/
Captures.java 24 public class Captures<T> implements IArgumentMatcher, Serializable {
32 public Captures(Capture<T> captured) {
46 LastControl.getCurrentInvocation().addCapture((Captures<Object>) this,
  /external/clang/lib/CodeGen/
CGBlocks.h 172 /// no non-constant captures.
187 llvm::DenseMap<const VarDecl*, Capture> Captures;
211 it = Captures.find(var);
212 assert(it != Captures.end() && "no entry for variable!");
  /external/clang/lib/Sema/
SemaLambda.cpp 292 // Handle explicit captures.
296 C = Intro.Captures.begin(),
297 E = Intro.Captures.end();
572 llvm::SmallVector<LambdaExpr::Capture, 4> Captures;
594 // Translate captures.
595 for (unsigned I = 0, N = LSI->Captures.size(); I != N; ++I) {
596 LambdaScopeInfo::Capture From = LSI->Captures[I];
602 Captures.push_back(LambdaExpr::Capture(From.getLocation(),
613 Captures.push_back(LambdaExpr::Capture(From.getLocation(), IsImplicit,
694 if (Captures.empty() && CaptureDefault == LCD_None
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 228 /// CaptureMap - A map of captured variables to (index+1) into Captures.
235 /// Captures - The captures.
236 SmallVector<Capture, 4> Captures;
249 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
251 CaptureMap[Var] = Captures.size();
256 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType,
258 CXXThisCaptureIndex = Captures.size();
267 return Captures[CXXThisCaptureIndex - 1];
279 return Captures[CaptureMap[Var] - 1]
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 572 NumExplicitCaptures(0), ManglingNumber(0), ContextDecl(0), Captures(0)
587 /// \brief The number of captures in this lambda.
590 /// \brief The number of explicit captures in this lambda.
603 /// \brief The list of captures, both explicit and implicit, for this
605 Capture *Captures;
    [all...]

Completed in 107 milliseconds