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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 111 class OMPClauseWithPreInit {
121 OMPClauseWithPreInit(const OMPClause *This) {
143 static OMPClauseWithPreInit *get(OMPClause *C);
144 static const OMPClauseWithPreInit *get(const OMPClause *C);
149 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
156 OMPClauseWithPostUpdate(const OMPClause *This) : OMPClauseWithPreInit(This) {
429 class OMPIfClause : public OMPClause, public OMPClauseWithPreInit {
477 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), Condition(Cond),
486 OMPClauseWithPreInit(this) {}
530 class OMPFinalClause : public OMPClause, public OMPClauseWithPreInit {
    [all...]
RecursiveASTVisitor.h 504 bool VisitOMPClauseWithPreInit(OMPClauseWithPreInit *Node);
3016 OMPClauseWithPreInit *Node) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 58 OMPClauseWithPreInit *OMPClauseWithPreInit::get(OMPClause *C) {
59 auto *Res = OMPClauseWithPreInit::get(const_cast<const OMPClause *>(C));
60 return Res ? const_cast<OMPClauseWithPreInit *>(Res) : nullptr;
63 const OMPClauseWithPreInit *OMPClauseWithPreInit::get(const OMPClause *C) {
StmtProfile.cpp 420 void VistOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
425 const OMPClauseWithPreInit *C) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 5995 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
6012 void OMPClauseWriter::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
ASTReader.cpp 11690 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
11988 void OMPClauseReader::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 44 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
211 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2184 void VisitOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
2189 const OMPClauseWithPreInit *C) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 4477 SmallVector<const OMPClauseWithPreInit *, 4> PICs;
4509 if (auto *C = OMPClauseWithPreInit::get(Clause))
4573 for (const clang::OMPClauseWithPreInit *C : PICs) {

Completed in 113 milliseconds