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

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 374 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C,
377 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false);
380 OMPUpdateClause *
381 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc,
386 alignof(OMPUpdateClause));
388 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true);
395 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C,
398 return new (C) OMPUpdateClause(/*IsExtended=*/false)
    [all...]
StmtProfile.cpp 538 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {}
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 1883 class OMPUpdateClause final
1885 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation,
1922 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc,
1928 OMPUpdateClause(bool IsExtended)
1938 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
1949 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
1960 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
RecursiveASTVisitor.h 3172 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 6120 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) {
ASTReader.cpp 11757 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt());
12097 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 4828 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2261 void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {}
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 14274 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind,
14686 return OMPUpdateClause::Create(Context, StartLoc, EndLoc);
TreeTransform.h 9316 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) {

Completed in 148 milliseconds