Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dprogram-parsers.cpp324 TYPE_PARSER(construct<InterfaceSpecification>(Parser<InterfaceBody>{}) ||
338 construct<InterfaceBody>(
339 construct<InterfaceBody::Function>(statement(functionStmt),
341 construct<InterfaceBody>(construct<InterfaceBody::Subroutine>(
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h383 NODE(parser, InterfaceBody) in NODE()
384 NODE(InterfaceBody, Function) in NODE()
385 NODE(InterfaceBody, Subroutine) in NODE()
H A Dparse-tree.h3082 struct InterfaceBody { struct
3083 UNION_CLASS_BOILERPLATE(InterfaceBody);
3109 std::variant<InterfaceBody, Statement<ProcedureStmt>> u; argument
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-labels.cpp378 void Post(const parser::InterfaceBody::Function &func) { in Post()
481 void Post(const parser::InterfaceBody::Subroutine &sub) { in Post()
H A Dresolve-names.cpp820 bool Pre(const parser::InterfaceBody::Subroutine &);
821 void Post(const parser::InterfaceBody::Subroutine &);
822 bool Pre(const parser::InterfaceBody::Function &);
823 void Post(const parser::InterfaceBody::Function &);
3273 bool SubprogramVisitor::Pre(const parser::InterfaceBody::Subroutine &x) { in Pre()
3278 void SubprogramVisitor::Post(const parser::InterfaceBody::Subroutine &x) { in Post()
3283 bool SubprogramVisitor::Pre(const parser::InterfaceBody::Function &x) { in Pre()
3288 void SubprogramVisitor::Post(const parser::InterfaceBody::Function &x) { in Post()