Lines Matching refs:OMPParallelDirective
1149 OMPParallelDirective *OMPParallelDirective::Create(
1155 void *Mem = C.Allocate(sizeof(OMPParallelDirective) +
1157 llvm::alignOf<OMPParallelDirective>());
1158 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc,
1165 OMPParallelDirective *OMPParallelDirective::CreateEmpty(ASTContext &C,
1168 void *Mem = C.Allocate(sizeof(OMPParallelDirective) +
1170 llvm::alignOf<OMPParallelDirective>());
1171 return new (Mem) OMPParallelDirective(N);