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

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 945 OMPAllocateClause *
946 OMPAllocateClause::Create(const ASTContext &C, SourceLocation StartLoc,
952 auto *Clause = new (Mem) OMPAllocateClause(StartLoc, LParenLoc, Allocator,
958 OMPAllocateClause *OMPAllocateClause::CreateEmpty(const ASTContext &C,
961 return new (Mem) OMPAllocateClause(N);
1874 void OMPClausePrinter::VisitOMPAllocateClause(OMPAllocateClause *Node) {
StmtProfile.cpp 793 void OMPClauseProfiler::VisitOMPAllocateClause(const OMPAllocateClause *C) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 332 class OMPAllocateClause final
333 : public OMPVarListClause<OMPAllocateClause>,
334 private llvm::TrailingObjects<OMPAllocateClause, Expr *> {
353 OMPAllocateClause(SourceLocation StartLoc, SourceLocation LParenLoc,
356 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, StartLoc,
363 explicit OMPAllocateClause(unsigned N)
364 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate,
383 static OMPAllocateClause *Create(const ASTContext &C, SourceLocation StartLoc,
398 static OMPAllocateClause *CreateEmpty(const ASTContext &C, unsigned N);
406 auto Children = const_cast<OMPAllocateClause *>(this)->children()
    [all...]
RecursiveASTVisitor.h 3037 bool RecursiveASTVisitor<Derived>::VisitOMPAllocateClause(OMPAllocateClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 5064 llvm::make_filter_range(Clauses, OMPAllocateClause::classof);
5126 auto *AC = cast<OMPAllocateClause>(C);
20563 return OMPAllocateClause::Create(Context, StartLoc, LParenLoc, Allocator,
TreeTransform.h 9886 TreeTransform<Derived>::TransformOMPAllocateClause(OMPAllocateClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 6436 void OMPClauseWriter::VisitOMPAllocateClause(OMPAllocateClause *C) {
ASTReader.cpp 11931 C = OMPAllocateClause::CreateEmpty(Context, Record.readInt());
12561 void OMPClauseReader::VisitOMPAllocateClause(OMPAllocateClause *C) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2365 void OMPClauseEnqueue::VisitOMPAllocateClause(const OMPAllocateClause *C) {

Completed in 106 milliseconds