Home
last modified time | relevance | path

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

/external/llvm-project/flang/runtime/
Dio-stmt.h44 template <Direction> class UnformattedIoStatementState; variable
125 std::reference_wrapper<UnformattedIoStatementState<Direction::Output>>,
126 std::reference_wrapper<UnformattedIoStatementState<Direction::Input>>,
321 class UnformattedIoStatementState : public ExternalIoStatementState<DIR> {
405 extern template class UnformattedIoStatementState<Direction::Output>;
406 extern template class UnformattedIoStatementState<Direction::Input>;
Dunit.h119 UnformattedIoStatementState<Direction::Output>,
120 UnformattedIoStatementState<Direction::Input>, InquireUnitState,
Dio-stmt.cpp682 bool UnformattedIoStatementState<DIR>::Receive( in Receive()
692 bool UnformattedIoStatementState<DIR>::Emit( in Emit()
713 template class UnformattedIoStatementState<Direction::Output>; variable
714 template class UnformattedIoStatementState<Direction::Input>; variable
Dio-api.cpp230 IoStatementState &io{unit.BeginIoStatement<UnformattedIoStatementState<DIR>>( in BeginUnformattedIO()
905 if (auto *unf{io.get_if<UnformattedIoStatementState<Direction::Output>>()}) { in IONAME()
917 if (auto *unf{io.get_if<UnformattedIoStatementState<Direction::Input>>()}) { in IONAME()
Ddescriptor-io.h224 if (auto *unf{io.get_if<UnformattedIoStatementState<DIR>>()}) { in DescriptorIO()