Home
last modified time | relevance | path

Searched refs:CoarrayAssociation (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-coarray.h19 struct CoarrayAssociation;
43 void CheckNamesAreDistinct(const std::list<parser::CoarrayAssociation> &);
H A Dcheck-coarray.cpp86 CheckNamesAreDistinct(std::get<std::list<parser::CoarrayAssociation>>(x.t)); in Leave()
152 const std::list<parser::CoarrayAssociation> &list) { in CheckNamesAreDistinct()
H A Dresolve-names.cpp1171 void Post(const parser::CoarrayAssociation &);
6113 void ConstructVisitor::Post(const parser::CoarrayAssociation &x) { in Post()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dexecutable-parsers.cpp202 defaulted("," >> nonemptyList(Parser<CoarrayAssociation>{})),
208 construct<CoarrayAssociation>(Parser<CodimensionDecl>{}, "=>" >> selector))
H A Dunparse.cpp967 Walk(", ", std::get<std::list<CoarrayAssociation>>(x.t), ", "); in Unparse()
971 void Unparse(const CoarrayAssociation &x) { // R1113 in Unparse()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h2139 struct CoarrayAssociation { struct
2140 TUPLE_CLASS_BOILERPLATE(CoarrayAssociation);
2149 std::tuple<std::optional<Name>, TeamValue, std::list<CoarrayAssociation>, argument
H A Ddump-parse-tree.h183 NODE(parser, CoarrayAssociation) in NODE()