Home
last modified time | relevance | path

Searched refs:ComponentAttrSpec (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A DFortran-parsers.cpp419 optionalListBeforeColons(Parser<ComponentAttrSpec>{}),
427 TYPE_PARSER(construct<ComponentAttrSpec>(accessSpec) ||
428 construct<ComponentAttrSpec>(allocatable) ||
429 construct<ComponentAttrSpec>("CODIMENSION" >> coarraySpec) ||
430 construct<ComponentAttrSpec>(contiguous) ||
431 construct<ComponentAttrSpec>("DIMENSION" >> Parser<ComponentArraySpec>{}) ||
432 construct<ComponentAttrSpec>(pointer) ||
433 construct<ComponentAttrSpec>(recovery(
H A Dunparse.cpp267 const auto &attrs{std::get<std::list<ComponentAttrSpec>>(x.t)}; in Unparse()
297 void Before(const ComponentAttrSpec &x) { in Before()
305 void Post(const ComponentAttrSpec &x) { in Post()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h965 struct ComponentAttrSpec { struct
966 UNION_CLASS_BOILERPLATE(ComponentAttrSpec);
1020 std::tuple<DeclarationTypeSpec, std::list<ComponentAttrSpec>,
H A Ddump-parse-tree.h197 NODE(parser, ComponentAttrSpec) in NODE()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names.cpp432 void Post(const parser::ComponentAttrSpec &) { PostAttrSpec(); } in Post() argument
4728 Walk(std::get<std::list<parser::ComponentAttrSpec>>(x.t)); in Pre()