Lines Matching refs:CheckDef
1174 bool Pre(const parser::WhereConstructStmt &x) { return CheckDef(x.t); } in Pre()
1175 bool Pre(const parser::ForallConstructStmt &x) { return CheckDef(x.t); } in Pre()
1176 bool Pre(const parser::CriticalStmt &x) { return CheckDef(x.t); } in Pre()
1180 bool Pre(const parser::NonLabelDoStmt &x) { return CheckDef(x.t); } in Pre()
1181 bool Pre(const parser::IfThenStmt &x) { return CheckDef(x.t); } in Pre()
1182 bool Pre(const parser::SelectCaseStmt &x) { return CheckDef(x.t); } in Pre()
1186 return CheckDef(std::get<0>(x.t)); in Pre()
1189 return CheckDef(std::get<0>(x.t)); in Pre()
1228 template <typename T> bool CheckDef(const T &t) { in CheckDef() function in Fortran::semantics::ConstructVisitor
1229 return CheckDef(std::get<std::optional<parser::Name>>(t)); in CheckDef()
1234 bool CheckDef(const std::optional<parser::Name> &);
6063 CheckDef(x.v); in Pre()
6078 CheckDef(x.t); in Post()
6107 CheckDef(x.t); in Pre()
6244 bool ConstructVisitor::CheckDef(const std::optional<parser::Name> &x) { in CheckDef() function in Fortran::semantics::ConstructVisitor