Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dio-parsers.cpp64 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
67 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
70 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
73 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
76 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
79 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
82 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
90 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
95 construct<ConnectSpec>(construct<ConnectSpec::Newunit>(
97 construct<ConnectSpec>(construct<ConnectSpec::CharExpr>(
[all …]
H A Dunparse.cpp1207 bool Pre(const ConnectSpec &x) { // R1205 in Pre()
1217 [&](const ConnectSpec::CharExpr &y) { in Pre()
1229 [&](const ConnectSpec::Recl &) { in Pre()
1233 [&](const ConnectSpec::Newunit &) { in Pre()
2567 WALK_NESTED_ENUM(ConnectSpec::CharExpr, Kind) // R1205 in WALK_NESTED_ENUM()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-io.h41 void Enter(const parser::ConnectSpec &);
42 void Enter(const parser::ConnectSpec::CharExpr &);
43 void Enter(const parser::ConnectSpec::Newunit &);
44 void Enter(const parser::ConnectSpec::Recl &);
H A Dcheck-do-forall.h18 struct ConnectSpec;
43 void Leave(const parser::ConnectSpec &); in ENUM_CLASS()
H A Dcheck-io.cpp93 void IoChecker::Enter(const parser::ConnectSpec &spec) { in Enter()
108 void IoChecker::Enter(const parser::ConnectSpec::CharExpr &spec) { in Enter()
110 using ParseKind = parser::ConnectSpec::CharExpr::Kind; in Enter()
178 void IoChecker::Enter(const parser::ConnectSpec::Newunit &var) { in Enter()
183 void IoChecker::Enter(const parser::ConnectSpec::Recl &spec) { in Enter()
H A Dcheck-do-forall.cpp993 void DoForallChecker::Leave(const parser::ConnectSpec &connectSpec) { in Leave()
995 std::get_if<parser::ConnectSpec::Newunit>(&connectSpec.u)}; in Leave()
/llvm-project-15.0.7/flang/lib/Lower/
H A DIO.cpp946 case Fortran::parser::ConnectSpec::CharExpr::Kind::Access: in genIOOption()
949 case Fortran::parser::ConnectSpec::CharExpr::Kind::Action: in genIOOption()
955 case Fortran::parser::ConnectSpec::CharExpr::Kind::Blank: in genIOOption()
958 case Fortran::parser::ConnectSpec::CharExpr::Kind::Decimal: in genIOOption()
961 case Fortran::parser::ConnectSpec::CharExpr::Kind::Delim: in genIOOption()
967 case Fortran::parser::ConnectSpec::CharExpr::Kind::Form: in genIOOption()
970 case Fortran::parser::ConnectSpec::CharExpr::Kind::Pad: in genIOOption()
976 case Fortran::parser::ConnectSpec::CharExpr::Kind::Round: in genIOOption()
979 case Fortran::parser::ConnectSpec::CharExpr::Kind::Sign: in genIOOption()
985 case Fortran::parser::ConnectSpec::CharExpr::Kind::Convert: in genIOOption()
[all …]
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h207 NODE(parser, ConnectSpec) in NODE()
208 NODE(ConnectSpec, CharExpr) in NODE()
209 NODE_ENUM(ConnectSpec::CharExpr, Kind) in NODE()
210 NODE(ConnectSpec, Newunit) in NODE()
211 NODE(ConnectSpec, Recl) in NODE()
H A Dparse-tree.h2578 struct ConnectSpec { struct
2579 UNION_CLASS_BOILERPLATE(ConnectSpec);
2595 WRAPPER_CLASS(OpenStmt, std::list<ConnectSpec>); argument