Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/unittests/Runtime/
H A DFormat.cpp120 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)); in TEST()
154 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST()
167 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST()
180 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST()
/llvm-project-15.0.7/flang/runtime/
H A Dio-stmt.h268 std::optional<DataEdit> GetNextDataEdit(
292 std::optional<DataEdit> GetNextDataEdit(
311 std::optional<DataEdit> GetNextDataEdit(
378 std::optional<DataEdit> GetNextDataEdit(
380 return format_.GetNextDataEdit(*this, maxRepeat);
401 using ListDirectedStatementState<DIR>::GetNextDataEdit;
464 std::optional<DataEdit> GetNextDataEdit(
466 return format_.GetNextDataEdit(*this, maxRepeat);
478 using ListDirectedStatementState<DIR>::GetNextDataEdit;
525 std::optional<DataEdit> GetNextDataEdit(
[all …]
H A Ddescriptor-io.cpp16 std::optional<DataEdit> peek{io.GetNextDataEdit(0 /*to peek at it*/)}; in DefinedFormattedIo()
22 DataEdit edit{*io.GetNextDataEdit(1)}; // now consume it; no repeats in DefinedFormattedIo()
H A Ddescriptor-io.h54 if (auto edit{io.GetNextDataEdit()}) { in FormattedIntegerIO()
87 if (auto edit{io.GetNextDataEdit()}) { in FormattedRealIO()
134 auto edit{io.GetNextDataEdit()}; in FormattedComplexIO()
174 } else if (auto edit{io.GetNextDataEdit()}) { in FormattedCharacterIO()
214 } else if (auto edit{io.GetNextDataEdit()}) { in FormattedLogicalIO()
H A Dformat.h98 DataEdit GetNextDataEdit(Context &, int maxRepeat = 1);
H A Dio-stmt.cpp47 std::optional<DataEdit> IoStatementBase::GetNextDataEdit( in GetNextDataEdit() function in Fortran::runtime::io::IoStatementBase
462 std::optional<DataEdit> IoStatementState::GetNextDataEdit(int n) { in GetNextDataEdit() function in Fortran::runtime::io::IoStatementState
464 [&](auto &x) { return x.get().GetNextDataEdit(*this, n); }, u_); in GetNextDataEdit()
764 ListDirectedStatementState<Direction::Output>::GetNextDataEdit( in GetNextDataEdit() function in Fortran::runtime::io::ListDirectedStatementState::Output
774 ListDirectedStatementState<Direction::Input>::GetNextDataEdit( in GetNextDataEdit() function in Fortran::runtime::io::ListDirectedStatementState::Input
H A Dformat-implementation.h364 DataEdit FormatControl<CONTEXT>::GetNextDataEdit( in GetNextDataEdit() function