HomeSort by: relevance | last modified time | path
    Searched refs:OMPCapturedExprDecl (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclOpenMP.cpp 9 /// This file implements OMPThreadPrivateDecl, OMPCapturedExprDecl
169 // OMPCapturedExprDecl Implementation.
172 void OMPCapturedExprDecl::anchor() {}
174 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC,
177 return new (C, DC) OMPCapturedExprDecl(
181 OMPCapturedExprDecl *OMPCapturedExprDecl::CreateDeserialized(ASTContext &C,
183 return new (C, ID) OMPCapturedExprDecl(C, nullptr, nullptr, QualType(),
187 SourceRange OMPCapturedExprDecl::getSourceRange() const
    [all...]
DeclPrinter.cpp 107 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
1729 void DeclPrinter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) {
OpenMPClause.cpp 275 if (auto *OED = dyn_cast<OMPCapturedExprDecl>(DS->getSingleDecl()))
1865 if (isa<OMPCapturedExprDecl>(DRE->getDecl()))
TextNodeDumper.cpp 1820 void TextNodeDumper::VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) {
StmtPrinter.cpp 992 if (const auto *OCED = dyn_cast<OMPCapturedExprDecl>(Node->getDecl())) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclOpenMP.h 383 class OMPCapturedExprDecl final : public VarDecl {
387 OMPCapturedExprDecl(ASTContext &C, DeclContext *DC, IdentifierInfo *Id,
396 static OMPCapturedExprDecl *Create(ASTContext &C, DeclContext *DC,
400 static OMPCapturedExprDecl *CreateDeserialized(ASTContext &C, unsigned ID);
TextNodeDumper.h 336 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
ASTNodeTraverser.h 469 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) {
RecursiveASTVisitor.h 1633 DEF_TRAVERSE_DECL(OMPCapturedExprDecl, { TRY_TO(TraverseVarHelper(D)); })
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.cpp 331 if (isa<OMPCapturedExprDecl>(VD))
393 if (isa<OMPCapturedExprDecl>(VD))
406 if (E->isInitCapture(&C) || isa<OMPCapturedExprDecl>(VD))
419 if (isa<OMPCapturedExprDecl>(VD) || VD->isInitCapture())
447 if (isa<OMPCapturedExprDecl>(VD))
CGStmtOpenMP.cpp 227 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D))
233 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D))
2381 const auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD);
6447 // OMPCapturedExprDecl that refers to the original declaration.
6449 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) {
6450 // OMPCapturedExprDecl are used to privative fields of the current
6517 // OMPCapturedExprDecl that refers to the original declaration.
6519 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) {
6520 // OMPCapturedExprDecl are used to privative fields of the current
7122 if (isa<OMPCapturedExprDecl>(VD))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 1130 if (const auto *CED = dyn_cast<OMPCapturedExprDecl>(D))
2127 !(isa<OMPCapturedExprDecl>(D) && !D->hasAttr<OMPCaptureNoInitAttr>() &&
2128 !cast<OMPCapturedExprDecl>(D)->getInit()->isGLValue()) &&
3473 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD))
3478 } else if (VD->isImplicit() || isa<OMPCapturedExprDecl>(VD))
4294 static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id,
4314 auto *CED = OMPCapturedExprDecl::Create(C, S.CurContext, Id, Ty,
4326 OMPCapturedExprDecl *CD;
4328 CD = cast<OMPCapturedExprDecl>(VD);
4339 OMPCapturedExprDecl *CD = buildCaptureDecl
    [all...]
SemaTemplateInstantiateDecl.cpp 3451 OMPCapturedExprDecl * /*D*/) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 453 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
2717 void ASTDeclReader::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) {
4055 D = OMPCapturedExprDecl::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp 156 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
1879 void ASTDeclWriter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) {

Completed in 52 milliseconds