Lines Matching refs:CheckRef
1193 void Post(const parser::MaskedElsewhereStmt &x) { CheckRef(x.t); } in Post()
1194 void Post(const parser::ElsewhereStmt &x) { CheckRef(x.v); } in Post()
1195 void Post(const parser::EndWhereStmt &x) { CheckRef(x.v); } in Post()
1196 void Post(const parser::EndForallStmt &x) { CheckRef(x.v); } in Post()
1197 void Post(const parser::EndCriticalStmt &x) { CheckRef(x.v); } in Post()
1198 void Post(const parser::EndDoStmt &x) { CheckRef(x.v); } in Post()
1199 void Post(const parser::ElseIfStmt &x) { CheckRef(x.t); } in Post()
1200 void Post(const parser::ElseStmt &x) { CheckRef(x.v); } in Post()
1201 void Post(const parser::EndIfStmt &x) { CheckRef(x.v); } in Post()
1202 void Post(const parser::CaseStmt &x) { CheckRef(x.t); } in Post()
1203 void Post(const parser::EndSelectStmt &x) { CheckRef(x.v); } in Post()
1204 void Post(const parser::SelectRankCaseStmt &x) { CheckRef(x.t); } in Post()
1205 void Post(const parser::TypeGuardStmt &x) { CheckRef(x.t); } in Post()
1206 void Post(const parser::CycleStmt &x) { CheckRef(x.v); } in Post()
1207 void Post(const parser::ExitStmt &x) { CheckRef(x.v); } in Post()
1231 template <typename T> void CheckRef(const T &t) { in CheckRef() function in Fortran::semantics::ConstructVisitor
1232 CheckRef(std::get<std::optional<parser::Name>>(t)); in CheckRef()
1235 void CheckRef(const std::optional<parser::Name> &);
6069 CheckRef(x.v); in Pre()
6096 CheckRef(x.v); in Post()
6135 CheckRef(x.t); in Post()
6251 void ConstructVisitor::CheckRef(const std::optional<parser::Name> &x) { in CheckRef() function in Fortran::semantics::ConstructVisitor