HomeSort by relevance Sort by last modified time
    Searched refs:OMPClause (Results 1 - 16 of 16) sorted by null

  /external/clang/include/clang/AST/
StmtOpenMP.h 52 MutableArrayRef<OMPClause *> getClauses() {
53 OMPClause **ClauseStorage = reinterpret_cast<OMPClause **>(
55 return MutableArrayRef<OMPClause *>(ClauseStorage, NumClauses);
74 llvm::alignOf<OMPClause *>())) {}
80 void setClauses(ArrayRef<OMPClause *> Clauses);
95 ArrayRef<OMPClause *>::const_iterator Current;
96 ArrayRef<OMPClause *>::const_iterator End;
104 typedef const OMPClause *value_type;
106 filtered_clause_iterator(ArrayRef<OMPClause *> Arr, FilterPredicate Pred
    [all...]
OpenMPClause.h 32 class OMPClause {
41 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
62 return const_cast<OMPClause *>(this)->children();
64 static bool classof(const OMPClause *T) { return true; }
70 template <class T> class OMPVarListClause : public OMPClause {
108 : OMPClause(K, StartLoc, EndLoc), LParenLoc(LParenLoc), NumVars(N) {}
154 class OMPIfClause : public OMPClause {
175 : OMPClause(OMPC_if, StartLoc, EndLoc), LParenLoc(LParenLoc),
181 : OMPClause(OMPC_if, SourceLocation(), SourceLocation()),
192 static bool classof(const OMPClause *T)
    [all...]
StmtVisitor.h 188 /// \brief This class implements a simple visitor for OMPClause
201 RetTy Visit(PTR(OMPClause) S) {
202 // Top switch clause: visit each OMPClause.
211 RetTy VisitOMPClause(PTR(OMPClause) Node) { return RetTy(); }
DataRecursiveASTVisitor.h 427 bool TraverseOMPClause(OMPClause *C);
    [all...]
RecursiveASTVisitor.h 432 bool TraverseOMPClause(OMPClause *C);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp     [all...]
StmtPrinter.cpp 772 ArrayRef<OMPClause *> Clauses = S->clauses();
773 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end();
    [all...]
StmtProfile.cpp 352 ArrayRef<OMPClause *> Clauses = S->clauses();
353 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end();
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 115 SmallVector<OMPClause *, 5> Clauses;
116 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>, OMPC_unknown + 1>
164 OMPClause *Clause =
299 OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind,
301 OMPClause *Clause = nullptr;
406 OMPClause *Parser::ParseOpenMPSingleExprClause(OpenMPClauseKind Kind) {
435 OMPClause *Parser::ParseOpenMPSimpleClause(OpenMPClauseKind Kind) {
466 OMPClause *Parser::ParseOpenMPClause(OpenMPClauseKind Kind) {
480 OMPClause *Parser::ParseOpenMPSingleExprWithArgClause(OpenMPClauseKind Kind) {
580 OMPClause *Parser::ParseOpenMPVarListClause(OpenMPClauseKind Kind)
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
TreeTransform.h 328 OMPClause *TransformOMPClause(OMPClause *S);
631 OMPClause *Transform ## Class(Class *S);
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 147 class OMPClause;
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 48 class OMPClause;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 258 milliseconds