Lines Matching defs:DIR
53 template <Direction DIR>
58 return &New<InternalListIoStatementState<DIR>>{oom}(
78 template <Direction DIR>
84 return &New<InternalFormattedIoStatementState<DIR>>{oom}(descriptor, format,
108 template <Direction DIR>
110 std::conditional_t<DIR == Direction::Input, const char, char> *internal,
114 return &New<InternalListIoStatementState<DIR>>{oom}(
134 template <Direction DIR>
136 std::conditional_t<DIR == Direction::Input, const char, char> *internal,
141 return &New<InternalFormattedIoStatementState<DIR>>{oom}(internal,
172 template <Direction DIR>
179 unitNumber, DIR, false /*!unformatted*/, terminator, errorCookie)};
192 iostat = child->CheckFormattingAndDirection(false, DIR);
195 return &child->BeginIoStatement<ChildFormattedIoStatementState<DIR>>(
204 iostat = unit->SetDirection(DIR);
207 return &unit->BeginIoStatement<ExternalFormattedIoStatementState<DIR>>(
231 template <Direction DIR>
237 unitNumber, DIR, true /*unformatted*/, terminator, errorCookie)};
250 iostat = child->CheckFormattingAndDirection(true, DIR);
253 return &child->BeginIoStatement<ChildUnformattedIoStatementState<DIR>>(
261 iostat = unit->SetDirection(DIR);
265 unit->BeginIoStatement<ExternalUnformattedIoStatementState<DIR>>(
267 if constexpr (DIR == Direction::Output) {