Home
last modified time | relevance | path

Searched refs:EntityDecl (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-data.h42 void Leave(const parser::EntityDecl &);
H A Dcheck-data.cpp250 void DataChecker::Leave(const parser::EntityDecl &decl) { in Leave()
H A Dresolve-names.cpp862 void Post(const parser::EntityDecl &);
3884 void DeclarationVisitor::Post(const parser::EntityDecl &x) { in Post()
5016 const auto &decls{std::get<std::list<parser::EntityDecl>>(structStmt.t)}; in Pre()
7587 bool Pre(const parser::EntityDecl &decl) { in Pre()
/llvm-project-15.0.7/flang/lib/Parser/
H A Duser-state.cpp102 for (const auto &entity : std::get<std::list<EntityDecl>>(stmt->t)) { in Parse()
H A Dtype-parsers.h72 constexpr Parser<EntityDecl> entityDecl; // R803
H A Dunparse.cpp439 const auto &decls{std::get<std::list<EntityDecl>>(x.t)}; in Unparse()
446 static const auto hasAssignmentInitializer{[](const EntityDecl &d) { in Unparse()
451 static const auto hasSlashDelimitedInitializer{[](const EntityDecl &d) { in Unparse()
489 Put(' '), Walk(std::get<std::list<EntityDecl>>(x.t), ", "); in Unparse()
507 void Unparse(const EntityDecl &x) { // R803 in Unparse()
2532 Walk(" ", std::get<std::list<EntityDecl>>(x.t), ", "); in Unparse()
H A DFortran-parsers.cpp615 constexpr auto entityDeclWithoutEqInit{construct<EntityDecl>(name,
665 TYPE_PARSER(construct<EntityDecl>(objectName, maybe(arraySpec),
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h1344 struct EntityDecl { struct
1345 TUPLE_CLASS_BOILERPLATE(EntityDecl);
1355 std::tuple<DeclarationTypeSpec, std::list<AttrSpec>, std::list<EntityDecl>> t; argument
3284 std::tuple<std::optional<Name>, std::list<EntityDecl>> t;
H A Ddump-parse-tree.h275 NODE(parser, EntityDecl) in NODE()