Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dexpr-parsers.cpp483 TYPE_PARSER(construct<WhereBodyConstruct>(statement(assignmentStmt)) ||
484 construct<WhereBodyConstruct>(statement(whereStmt)) ||
485 construct<WhereBodyConstruct>(indirect(whereConstruct)))
H A Dtype-parsers.h98 constexpr Parser<WhereBodyConstruct> whereBodyConstruct; // R1044
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dexpression.h473 bool Pre(const parser::WhereBodyConstruct &) { in Pre() argument
478 void Post(const parser::WhereBodyConstruct &) { in Post() argument
/llvm-project-15.0.7/flang/lib/Lower/
H A DBridge.cpp2396 std::get<std::list<Fortran::parser::WhereBodyConstruct>>(c.t)) in genFIR()
2411 void genFIR(const Fortran::parser::WhereBodyConstruct &body) { in genFIR()
2435 std::get<std::list<Fortran::parser::WhereBodyConstruct>>(ew.t)) in genFIR()
2447 std::get<std::list<Fortran::parser::WhereBodyConstruct>>(ew.t)) in genFIR()
3051 for (const Fortran::parser::WhereBodyConstruct &body : in analyzeExplicitSpace()
3052 std::get<std::list<Fortran::parser::WhereBodyConstruct>>(c.t)) in analyzeExplicitSpace()
3077 for (const Fortran::parser::WhereBodyConstruct &e : in analyzeExplicitSpace()
3078 std::get<std::list<Fortran::parser::WhereBodyConstruct>>(ew.t)) in analyzeExplicitSpace()
3081 void analyzeExplicitSpace(const Fortran::parser::WhereBodyConstruct &body) { in analyzeExplicitSpace()
3098 for (const Fortran::parser::WhereBodyConstruct &e : in analyzeExplicitSpace()
[all …]
H A DPFTBuilder.cpp199 bool Pre(const parser::WhereBodyConstruct &whereBody) { in Pre()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h1999 struct WhereBodyConstruct { struct
2000 UNION_CLASS_BOILERPLATE(WhereBodyConstruct);
2026 std::tuple<Statement<MaskedElsewhereStmt>, std::list<WhereBodyConstruct>> t; argument
2030 std::tuple<Statement<ElsewhereStmt>, std::list<WhereBodyConstruct>> t;
2033 std::tuple<Statement<WhereConstructStmt>, std::list<WhereBodyConstruct>,
H A Ddump-parse-tree.h711 NODE(parser, WhereBodyConstruct) in NODE()