Home
last modified time | relevance | path

Searched refs:parsedExpr (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/flang/lib/Semantics/
Dcheck-arithmeticif.cpp27 auto &parsedExpr{std::get<parser::Expr>(arithmeticIfStmt.t)}; in Leave() local
28 if (const auto *expr{GetExpr(parsedExpr)}) { in Leave()
30 context_.Say(parsedExpr.source, in Leave()
33 context_.Say(parsedExpr.source, in Leave()
36 context_.Say(parsedExpr.source, in Leave()
Dcheck-do-forall.cpp986 if (const auto *parsedExpr{ in Leave() local
988 CheckIfArgIsDoVar(checkedArg, parsedExpr->value().source, context_); in Leave()
1023 void DoForallChecker::Enter(const parser::Expr &parsedExpr) { ++exprDepth_; } in Enter() argument
1025 void DoForallChecker::Leave(const parser::Expr &parsedExpr) { in Leave() argument
1028 if (const SomeExpr * expr{GetExpr(parsedExpr)}) { in Leave()
1031 CheckIfArgIsDoVar(*argRef, parsedExpr.source, context_); in Leave()
Dresolve-names.cpp2722 const auto &parsedExpr{std::get<parser::Scalar<parser::Expr>>(x.t)}; in HandleStmtFunction() local
2723 Walk(parsedExpr); in HandleStmtFunction()