Home
last modified time | relevance | path

Searched refs:ComponentDecl (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-data.h41 void Leave(const parser::ComponentDecl &);
H A Dcheck-data.cpp246 void DataChecker::Leave(const parser::ComponentDecl &decl) { in Leave()
H A Dresolve-names.cpp922 void Post(const parser::ComponentDecl &);
4642 void DeclarationVisitor::Post(const parser::ComponentDecl &x) { in Post()
7592 bool Pre(const parser::ComponentDecl &decl) { in Pre()
/llvm-project-15.0.7/flang/lib/Parser/
H A Duser-state.cpp89 if (const auto *decl{std::get_if<ComponentDecl>(&item.u)}) { in Parse()
H A DFortran-parsers.cpp443 construct<ComponentDecl>(name, maybe(Parser<ComponentArraySpec>{}),
451 TYPE_PARSER(construct<ComponentOrFill>(Parser<ComponentDecl>{}) ||
H A Dunparse.cpp276 [](const ComponentDecl &d) { in Unparse()
313 void Unparse(const ComponentDecl &x) { // R739 in Unparse()
2522 if (const auto *comp{std::get_if<ComponentDecl>(&item.u)}) { in Post()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h994 struct ComponentDecl { struct
995 TUPLE_CLASS_BOILERPLATE(ComponentDecl);
1012 std::variant<ComponentDecl, FillDecl> u; argument
H A Ddump-parse-tree.h199 NODE(parser, ComponentDecl) in NODE()