HomeSort by relevance Sort by last modified time
    Searched refs:Captures (Results 1 - 20 of 20) 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/include/clang/Sema/
ScopeInfo.h 238 /// CaptureMap - A map of captured variables to (index+1) into Captures.
245 /// Captures - The captures.
246 SmallVector<Capture, 4> Captures;
259 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
261 CaptureMap[Var] = Captures.size();
266 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType,
268 CXXThisCaptureIndex = Captures.size();
277 return Captures[CXXThisCaptureIndex - 1];
289 return Captures[CaptureMap[Var] - 1]
    [all...]
DeclSpec.h 211 /// \brief Captures information about "declaration specifiers".
709 /// \brief Captures information about "declaration specifiers" specific to
    [all...]
  /external/easymock/src/org/easymock/internal/
Invocation.java 27 import org.easymock.internal.matchers.Captures;
39 private final Collection<Captures<?>> currentCaptures = new ArrayList<Captures<?>>(
156 public void addCapture(Captures<Object> capture, Object value) {
162 for (Captures<?> c : currentCaptures) {
168 for (Captures<?> c : currentCaptures) {
  /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!");
CGBlocks.cpp 156 _CapturesTypes captures...;
181 info.Captures[Capture->getVariable()]
323 // Next, all the block captures.
348 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
521 // Walk through the captures (in order) and find the ones not
525 // Ignore __block captures; there's nothing special in the
541 // Block captures count as local values and have imprecise semantics.
611 // If the block has no captures, we won't have a pre-computed
687 // Ignore constant captures.
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 805 ArrayRef<Capture> Captures,
    [all...]
DeclCXX.cpp     [all...]
Decl.cpp     [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 441 // Handle explicit captures.
445 C = Intro.Captures.begin(),
446 E = Intro.Captures.end();
725 llvm::SmallVector<LambdaExpr::Capture, 4> Captures;
749 // Translate captures.
750 for (unsigned I = 0, N = LSI->Captures.size(); I != N; ++I) {
751 LambdaScopeInfo::Capture From = LSI->Captures[I];
757 Captures.push_back(LambdaExpr::Capture(From.getLocation(),
768 Captures.push_back(LambdaExpr::Capture(From.getLocation(), IsImplicit,
    [all...]
SemaExpr.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/include/clang/AST/
Decl.h     [all...]
DeclCXX.h 568 NumExplicitCaptures(0), ManglingNumber(0), ContextDecl(0), Captures(0)
583 /// \brief The number of captures in this lambda.
586 /// \brief The number of explicit captures in this lambda.
599 /// \brief The list of captures, both explicit and implicit, for this
601 Capture *Captures;
    [all...]
ExprCXX.h     [all...]
  /external/easymock/src/org/easymock/
EasyMock.java     [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 968 SmallVector<BlockDecl::Capture, 16> captures; local
    [all...]
ASTWriter.cpp     [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 650 !Intro.Captures.empty())) {
    [all...]

Completed in 139 milliseconds