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

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclOpenMP.cpp 52 // OMPAllocateDecl Implementation.
55 void OMPAllocateDecl::anchor() { }
57 OMPAllocateDecl *OMPAllocateDecl::Create(ASTContext &C, DeclContext *DC,
60 auto *D = OMPDeclarativeDirective::createDirective<OMPAllocateDecl>(
66 OMPAllocateDecl *OMPAllocateDecl::CreateDeserialized(ASTContext &C, unsigned ID,
69 return OMPDeclarativeDirective::createEmptyDirective<OMPAllocateDecl>(
73 void OMPAllocateDecl::setVars(ArrayRef<Expr *> VL) {
DeclPrinter.cpp 103 void VisitOMPAllocateDecl(OMPAllocateDecl *D);
449 isa<OMPAllocateDecl>(*D))
1644 void DeclPrinter::VisitOMPAllocateDecl(OMPAllocateDecl *D) {
1647 for (OMPAllocateDecl::varlist_iterator I = D->varlist_begin(),
ASTContext.cpp 10885 else if (isa<OMPAllocateDecl>(D))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclOpenMP.h 473 class OMPAllocateDecl final : public OMPDeclarativeDirective<Decl> {
479 OMPAllocateDecl(DeclContext *DC, SourceLocation L)
495 static OMPAllocateDecl *Create(ASTContext &C, DeclContext *DC,
498 static OMPAllocateDecl *CreateDeserialized(ASTContext &C, unsigned ID,
ASTNodeTraverser.h 473 void VisitOMPAllocateDecl(const OMPAllocateDecl *D) {
RecursiveASTVisitor.h 1635 DEF_TRAVERSE_DECL(OMPAllocateDecl, {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.h 1361 void EmitOMPAllocateDecl(const OMPAllocateDecl *D);
CGDecl.cpp 2617 void CodeGenModule::EmitOMPAllocateDecl(const OMPAllocateDecl *D) {
CodeGenModule.cpp 5894 EmitOMPAllocateDecl(cast<OMPAllocateDecl>(D));
CGOpenMPRuntime.cpp 6570 isa<OMPThreadPrivateDecl>(D) || isa<OMPAllocateDecl>(D))
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 449 void VisitOMPAllocateDecl(OMPAllocateDecl *D);
2683 void ASTDeclReader::VisitOMPAllocateDecl(OMPAllocateDecl *D) {
2848 isa<OMPDeclareMapperDecl>(D) || isa<OMPAllocateDecl>(D) ||
4036 D = OMPAllocateDecl::CreateDeserialized(Context, ID, NumVars, NumClauses);
ASTWriterDecl.cpp 152 void VisitOMPAllocateDecl(OMPAllocateDecl *D);
1845 void ASTDeclWriter::VisitOMPAllocateDecl(OMPAllocateDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 3249 Decl *TemplateDeclInstantiator::VisitOMPAllocateDecl(OMPAllocateDecl *D) {
SemaOpenMP.cpp 3192 auto *D = OMPAllocateDecl::Create(Context, Owner, Loc, Vars, Clauses);

Completed in 88 milliseconds