HomeSort by relevance Sort by last modified time
    Searched refs:Captures (Results 1 - 25 of 28) sorted by null

1 2

  /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 360 // local variables, and C++1y initialized captures (which can have an
455 /// CaptureMap - A map of captured variables to (index+1) into Captures.
462 /// Captures - The captures.
463 SmallVector<Capture, 4> Captures;
476 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
478 CaptureMap[Var] = Captures.size();
490 return Captures[CXXThisCaptureIndex - 1];
502 return Captures[CaptureMap[Var] - 1];
509 return Captures[Known->second - 1]
    [all...]
DeclSpec.h 211 /// \brief Captures information about "declaration specifiers".
754 /// \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.
373 for (const auto &CI : block->captures()) {
396 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
580 // Walk through the captures (in order) and find the ones not
582 for (const auto &CI : block->captures()) {
583 // Ignore __block captures; there's nothing special in the
599 // Block captures count as local values and have imprecise semantics.
669 // If the block has no captures, we won't have a pre-compute
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 1033 LambdaExpr::capture_range LambdaExpr::captures() const { function in class:LambdaExpr
    [all...]
Stmt.cpp     [all...]
DeclCXX.cpp     [all...]
Decl.cpp     [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp     [all...]
SemaStmt.cpp     [all...]
  /external/chromium_org/chrome/test/chromedriver/extension/
background.js 21 * Captures a screenshot of the visible tab.
  /external/clang/include/clang/AST/
Decl.h     [all...]
DeclCXX.h 538 ManglingNumber(0), ContextDecl(nullptr), Captures(nullptr),
559 /// \brief The number of captures in this lambda is limited 2^NumCaptures.
562 /// \brief The number of explicit captures in this lambda.
575 /// \brief The list of captures, both explicit and implicit, for this
577 Capture *Captures;
1060 capture_const_range captures() const { function in class:clang::CXXRecordDecl
    [all...]
Stmt.h 2113 capture_range captures() { function in class:clang::CapturedStmt
2116 capture_const_range captures() const { function in class:clang::CapturedStmt
    [all...]
ExprCXX.h     [all...]
  /external/easymock/src/org/easymock/
EasyMock.java     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 452 bool Captures = true;
455 Captures = false;
458 if (Captures)
489 Captures &= !CS.doesNotCapture(A - B);
547 // something that captures pointers, so treat them like declarations.
618 // captures.
    [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/m2/repository/org/easymock/easymock/2.4/
easymock-2.4.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 1089 SmallVector<BlockDecl::Capture, 16> captures; local
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 730 /// sometimes skip the initializers for init-captures and not fully
767 !Intro.Captures.empty())) {
    [all...]

Completed in 4459 milliseconds

1 2