HomeSort by relevance Sort by last modified time
    Searched full:captureddecl (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/include/clang/AST/
GlobalDecl.h 44 GlobalDecl(const CapturedDecl *D) { Init(D); }
Stmt.h 37 class CapturedDecl;
    [all...]
Decl.h     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 257 void VisitCapturedDecl(const CapturedDecl *D) {
649 else if (const CapturedDecl *CD = dyn_cast_or_null<CapturedDecl>(D))
650 Walker.TraverseDecl(const_cast<CapturedDecl *>(CD));
714 else if (const CapturedDecl *CD = dyn_cast_or_null<CapturedDecl>(D))
715 Walker.VisitCapturedDecl(const_cast<CapturedDecl *>(CD));
CGException.cpp 430 // Check if CapturedDecl is nothrow and create terminate scope for it.
431 if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) {
509 // Check if CapturedDecl is nothrow and pop terminate scope for it.
510 if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) {
    [all...]
CGDecl.cpp 162 if (auto *CD = dyn_cast<CapturedDecl>(DC))
245 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC)) {
    [all...]
CGStmt.cpp     [all...]
CGStmtOpenMP.cpp 77 const CapturedDecl *CD = S.getCapturedDecl();
79 assert(CD->hasBody() && "missing CapturedDecl body");
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 32 class CapturedDecl;
598 /// \brief The CapturedDecl for this statement.
599 CapturedDecl *TheCapturedDecl;
609 CapturedRegionScopeInfo(DiagnosticsEngine &Diag, Scope *S, CapturedDecl *CD,
Sema.h 74 class CapturedDecl;
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 990 CapturedDecl *CD,
    [all...]
Decl.cpp     [all...]
DeclBase.cpp 803 } else if (CapturedDecl *CD = dyn_cast<CapturedDecl>(D)) {
    [all...]
Expr.cpp 664 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(CurrentDecl)) {
667 // CapturedDecl.
672 llvm_unreachable("CapturedDecl not inside a function or method");
    [all...]
MicrosoftMangle.cpp 61 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(DC))
    [all...]
ItaniumMangle.cpp 69 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(DC))
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
Sema.cpp     [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 311 void VisitCapturedDecl(CapturedDecl *CD);
    [all...]
ASTWriterDecl.cpp 110 void VisitCapturedDecl(CapturedDecl *D);
    [all...]
ASTReaderStmt.cpp 407 S->setCapturedDecl(ReadDeclAs<CapturedDecl>(Record, Idx));
    [all...]
ASTWriterStmt.cpp 315 // CapturedDecl and captured region kind
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h     [all...]

Completed in 390 milliseconds

1 2