HomeSort by: relevance | last modified time | path
    Searched defs:capturesVariable (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
LambdaCapture.h 88 bool capturesVariable() const {
105 assert(capturesVariable() && "No variable available for capture");
Stmt.h 3512 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; }
3598 bool capturesVariable(const VarDecl *Var) const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1291 assert((capturesVariable() || capturesVariableByCopy()) &&
1411 bool CapturedStmt::capturesVariable(const VarDecl *Var) const {
1413 if (!I.capturesVariable() && !I.capturesVariableByCopy())

Completed in 21 milliseconds