HomeSort by relevance Sort by last modified time
    Searched defs:Captures (Results 1 - 11 of 11) 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/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 395 bool Captures = true;
398 Captures = false;
401 if (Captures)
443 Captures &= !CS.doesNotCapture(UseIndex);
572 // captures.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 440 bool Captures = true;
443 Captures = false;
446 if (Captures)
488 Captures &= !CS.doesNotCapture(UseIndex);
706 // captures.
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.h 207 /// no non-constant captures.
226 llvm::DenseMap<const VarDecl*, Capture> Captures;
259 it = Captures.find(var);
260 assert(it != Captures.end() && "no entry for variable!");
CGException.cpp     [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 412 // local variables, and C++1y initialized captures (which can have an
520 /// CaptureMap - A map of captured variables to (index+1) into Captures.
527 /// Captures - The captures.
528 SmallVector<Capture, 4> Captures;
541 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
543 CaptureMap[Var] = Captures.size();
547 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false,
565 return Captures[CXXThisCaptureIndex - 1];
580 return Captures[CaptureMap[Var] - 1]
    [all...]
DeclSpec.h 224 /// \brief Captures information about "declaration specifiers".
774 /// \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 535 ManglingNumber(0), ContextDecl(nullptr), Captures(nullptr),
562 /// \brief The number of captures in this lambda is limited 2^NumCaptures.
565 /// \brief The number of explicit captures in this lambda.
578 /// \brief The list of captures, both explicit and implicit, for this
580 Capture *Captures;
1075 capture_const_range captures() const { function in class:clang::CXXRecordDecl
    [all...]

Completed in 1030 milliseconds