Searched refs:OMPLinearClause (Results 1 - 11 of 11) sorted by relevance

/external/clang/include/clang/AST/
H A DOpenMPClause.h1001 class OMPLinearClause : public OMPVarListClause<OMPLinearClause> { class in namespace:clang
1017 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, function in class:clang::OMPLinearClause
1020 : OMPVarListClause<OMPLinearClause>(OMPC_linear, StartLoc, LParenLoc,
1028 explicit OMPLinearClause(unsigned NumVars) function in class:clang::OMPLinearClause
1029 : OMPVarListClause<OMPLinearClause>(OMPC_linear, SourceLocation(),
1045 static OMPLinearClause *Create(const ASTContext &C, SourceLocation StartLoc,
1055 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
H A DDataRecursiveASTVisitor.h2413 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
H A DRecursiveASTVisitor.h2435 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
/external/clang/lib/AST/
H A DStmt.cpp1215 OMPLinearClause *OMPLinearClause::Create(const ASTContext &C,
1221 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause),
1224 OMPLinearClause *Clause = new (Mem)
1225 OMPLinearClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size());
1231 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C,
1233 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause),
1236 return new (Mem) OMPLinearClause(NumVars);
H A DStmtPrinter.cpp724 void OMPClausePrinter::VisitOMPLinearClause(OMPLinearClause *Node) {
H A DStmtProfile.cpp331 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1724 C = OMPLinearClause::CreateEmpty(Context, Record[Idx++]);
1848 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) {
H A DASTWriterStmt.cpp1766 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) {
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp3361 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, ColonLoc, EndLoc,
H A DTreeTransform.h6678 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) {
/external/clang/tools/libclang/
H A DCIndex.cpp1988 void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) {

Completed in 290 milliseconds