HomeSort by relevance Sort by last modified time
    Searched defs:Captures (Results 1 - 9 of 9) 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 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!");
  /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/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/Sema/
SemaLambda.cpp     [all...]
SemaStmt.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/AST/
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...]

Completed in 188 milliseconds