HomeSort by relevance Sort by last modified time
    Searched refs:Captures (Results 1 - 25 of 25) 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/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/include/clang/Sema/
ScopeInfo.h 335 // local variables, and C++1y initialized captures (which can have an
445 /// CaptureMap - A map of captured variables to (index+1) into Captures.
452 /// Captures - The captures.
453 SmallVector<Capture, 4> Captures;
466 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
468 CaptureMap[Var] = Captures.size();
475 Captures.push_back(Capture(Field, Init));
484 return Captures[CXXThisCaptureIndex - 1];
496 return Captures[CaptureMap[Var] - 1]
    [all...]
DeclSpec.h 211 /// \brief Captures information about "declaration specifiers".
738 /// \brief Captures information about "declaration specifiers" specific to
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.h 187 /// no non-constant captures.
206 llvm::DenseMap<const VarDecl*, Capture> Captures;
238 it = Captures.find(var);
239 assert(it != Captures.end() && "no entry for variable!");
CGBlocks.cpp 176 _CapturesTypes captures...;
204 info.Captures[Capture->getVariable()]
372 // Next, all the block captures.
398 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
582 // Walk through the captures (in order) and find the ones not
586 // Ignore __block captures; there's nothing special in the
602 // Block captures count as local values and have imprecise semantics.
672 // If the block has no captures, we won't have a pre-computed
749 // Ignore constant captures.
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 608 // Handle explicit captures.
612 C = Intro.Captures.begin(),
613 E = Intro.Captures.end();
    [all...]
SemaStmt.cpp     [all...]
SemaExpr.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/AST/
ExprCXX.cpp     [all...]
Stmt.cpp     [all...]
DeclCXX.cpp     [all...]
Decl.cpp     [all...]
  /external/clang/include/clang/AST/
Decl.h     [all...]
DeclCXX.h 519 NumExplicitCaptures(0), ManglingNumber(0), ContextDecl(0), Captures(0),
535 /// \brief The number of captures in this lambda.
538 /// \brief The number of explicit captures in this lambda.
551 /// \brief The list of captures, both explicit and implicit, for this
553 Capture *Captures;
    [all...]
Stmt.h     [all...]
ExprCXX.h     [all...]
  /external/easymock/src/org/easymock/
EasyMock.java     [all...]
  /external/chromium_org/v8/test/mjsunit/
string-replace.js 264 // Test $60 .. $99. Captures reach up to 59. Per spec, how to deal
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/internal/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 1015 SmallVector<BlockDecl::Capture, 16> captures; local
    [all...]
ASTWriter.cpp     [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 694 /// sometimes skip the initializers for init-captures and not fully
731 !Intro.Captures.empty())) {
889 // Parse it again, but this time parse the init-captures too.
    [all...]

Completed in 184 milliseconds