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

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 1536 OMPInitClause *OMPInitClause::Create(const ASTContext &C, Expr *InteropVar,
1545 new (Mem) OMPInitClause(IsTarget, IsTargetSync, StartLoc, LParenLoc,
1552 OMPInitClause *OMPInitClause::CreateEmpty(const ASTContext &C, unsigned N) {
1554 return new (Mem) OMPInitClause(N);
1799 void OMPClausePrinter::VisitOMPInitClause(OMPInitClause *Node) {
StmtProfile.cpp 558 void OMPClauseProfiler::VisitOMPInitClause(const OMPInitClause *C) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 7374 class OMPInitClause final
7375 : public OMPVarListClause<OMPInitClause>,
7376 private llvm::TrailingObjects<OMPInitClause, Expr *> {
7405 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc,
7408 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, StartLoc,
7413 OMPInitClause(unsigned N)
7414 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, SourceLocation(),
7430 static OMPInitClause *Create(const ASTContext &C, Expr *InteropVar,
7440 static OMPInitClause *CreateEmpty(const ASTContext &C, unsigned N);
7461 auto Children = const_cast<OMPInitClause *>(this)->children()
    [all...]
RecursiveASTVisitor.h 3222 bool RecursiveASTVisitor<Derived>::VisitOMPInitClause(OMPInitClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 14781 if (const auto *InitClause = dyn_cast<OMPInitClause>(C)) {
14804 const auto *IC = cast<OMPInitClause>(C);
14907 return OMPInitClause::Create(Context, InteropVar, PrefExprs, IsTarget,
TreeTransform.h 9384 OMPClause *TreeTransform<Derived>::TransformOMPInitClause(OMPInitClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 6147 void OMPClauseWriter::VisitOMPInitClause(OMPInitClause *C) {
ASTReader.cpp 11946 C = OMPInitClause::CreateEmpty(Context, Record.readInt());
12123 void OMPClauseReader::VisitOMPInitClause(OMPInitClause *C) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2281 void OMPClauseEnqueue::VisitOMPInitClause(const OMPInitClause *C) {

Completed in 105 milliseconds