Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A DFortran-parsers.cpp449 construct<FillDecl>(space >> sourced("%FILL" >> construct<Name>()),
452 construct<ComponentOrFill>(Parser<FillDecl>{}))
H A Dunparse.cpp284 [](const FillDecl &) { return false; }, in Unparse() argument
320 void Unparse(const FillDecl &x) { // DEC extension in Unparse()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h1004 struct FillDecl { struct
1005 TUPLE_CLASS_BOILERPLATE(FillDecl);
1012 std::variant<ComponentDecl, FillDecl> u; argument
H A Ddump-parse-tree.h200 NODE(parser, FillDecl) in NODE()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names.cpp923 void Post(const parser::FillDecl &);
4697 void DeclarationVisitor::Post(const parser::FillDecl &x) { in Post()