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

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 80 return static_cast<const OMPLinearClause *>(C);
187 return static_cast<const OMPLinearClause *>(C);
534 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) {
540 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) {
546 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) {
552 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) {
558 void OMPLinearClause::setUsedExprs(ArrayRef<Expr *> UE) {
565 OMPLinearClause *OMPLinearClause::Create(
575 OMPLinearClause *Clause = new (Mem) OMPLinearClause
    [all...]
StmtProfile.cpp 716 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 3637 class OMPLinearClause final
3638 : public OMPVarListClause<OMPLinearClause>,
3640 private llvm::TrailingObjects<OMPLinearClause, Expr *> {
3667 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc,
3671 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, StartLoc,
3679 explicit OMPLinearClause(unsigned NumVars)
3680 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear,
3763 static OMPLinearClause *
3774 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
3890 auto Children = const_cast<OMPLinearClause *>(this)->children()
    [all...]
RecursiveASTVisitor.h 3328 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 2739 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
4476 SmallVector<const OMPLinearClause *, 4> LCs;
4521 LCs.push_back(cast<OMPLinearClause>(Clause));
4550 for (const OMPLinearClause *C : LCs) {
5088 auto *PC = cast<OMPLinearClause>(Cl);
9649 if (auto *LC = dyn_cast<OMPLinearClause>(C))
9688 if (auto *LC = dyn_cast<OMPLinearClause>(C))
9725 if (auto *LC = dyn_cast<OMPLinearClause>(C))
9992 if (auto *LC = dyn_cast<OMPLinearClause>(C))
10033 if (auto *LC = dyn_cast<OMPLinearClause>(C)
    [all...]
TreeTransform.h 9690 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 1518 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) {
1857 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
2096 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
2135 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
2300 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
CGOpenMPRuntime.cpp 12189 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 6308 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) {
ASTReader.cpp 11826 C = OMPLinearClause::CreateEmpty(Context, Record.readInt());
12370 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2469 void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) {

Completed in 92 milliseconds