Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dio-parsers.cpp583 TYPE_PARSER(construct<format::IntrinsicTypeDataEditDesc>(
589 construct<format::IntrinsicTypeDataEditDesc>(
590 "F " >> pure(format::IntrinsicTypeDataEditDesc::Kind::F) ||
591 "D " >> pure(format::IntrinsicTypeDataEditDesc::Kind::D),
593 construct<format::IntrinsicTypeDataEditDesc>(
599 construct<format::IntrinsicTypeDataEditDesc>(
600 "G " >> pure(format::IntrinsicTypeDataEditDesc::Kind::G),
602 construct<format::IntrinsicTypeDataEditDesc>(
603 "G " >> pure(format::IntrinsicTypeDataEditDesc::Kind::G) ||
606 construct<format::IntrinsicTypeDataEditDesc>(
[all …]
H A Dunparse.cpp1468 const format::IntrinsicTypeDataEditDesc &x) { // R1307(1/2) - R1311 in Unparse()
1471 case format::IntrinsicTypeDataEditDesc::Kind::x: \ in Unparse()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dformat-specification.h37 struct IntrinsicTypeDataEditDesc { struct
39 IntrinsicTypeDataEditDesc() = delete; argument
40 IntrinsicTypeDataEditDesc(IntrinsicTypeDataEditDesc &&) = default;
41 IntrinsicTypeDataEditDesc &operator=(IntrinsicTypeDataEditDesc &&) = default; argument
42 IntrinsicTypeDataEditDesc(Kind &&k, std::optional<int> &&w, in IntrinsicTypeDataEditDesc() argument
125 std::variant<IntrinsicTypeDataEditDesc, DerivedTypeDataEditDesc,
H A Dparse-tree-visitor.h58 template <typename V> void Walk(const format::IntrinsicTypeDataEditDesc &, V &);
59 template <typename M> void Walk(format::IntrinsicTypeDataEditDesc &, M &);
757 void Walk(const format::IntrinsicTypeDataEditDesc &x, V &visitor) { in Walk()
767 void Walk(format::IntrinsicTypeDataEditDesc &x, M &mutator) { in Walk()
H A Ddump-parse-tree.h53 NODE(format, IntrinsicTypeDataEditDesc) in NODE()
54 NODE(format::IntrinsicTypeDataEditDesc, Kind) in NODE()