Lines Matching refs:IoControlSpec

172             construct<std::list<IoControlSpec>>(), many("," >> inputItem)))
191 TYPE_PARSER(first(construct<IoControlSpec>("UNIT =" >> ioUnit),
192 construct<IoControlSpec>("FMT =" >> format),
193 construct<IoControlSpec>("NML =" >> name),
194 construct<IoControlSpec>(
195 "ADVANCE =" >> construct<IoControlSpec::CharExpr>(
196 pure(IoControlSpec::CharExpr::Kind::Advance),
198 construct<IoControlSpec>(construct<IoControlSpec::Asynchronous>(
200 construct<IoControlSpec>("BLANK =" >>
201 construct<IoControlSpec::CharExpr>(
202 pure(IoControlSpec::CharExpr::Kind::Blank), scalarDefaultCharExpr)),
203 construct<IoControlSpec>(
204 "DECIMAL =" >> construct<IoControlSpec::CharExpr>(
205 pure(IoControlSpec::CharExpr::Kind::Decimal),
207 construct<IoControlSpec>("DELIM =" >>
208 construct<IoControlSpec::CharExpr>(
209 pure(IoControlSpec::CharExpr::Kind::Delim), scalarDefaultCharExpr)),
210 construct<IoControlSpec>("END =" >> endLabel),
211 construct<IoControlSpec>("EOR =" >> eorLabel),
212 construct<IoControlSpec>("ERR =" >> errLabel),
213 construct<IoControlSpec>("ID =" >> idVariable),
214 construct<IoControlSpec>("IOMSG = " >> msgVariable),
215 construct<IoControlSpec>("IOSTAT = " >> statVariable),
216 construct<IoControlSpec>("PAD =" >>
217 construct<IoControlSpec::CharExpr>(
218 pure(IoControlSpec::CharExpr::Kind::Pad), scalarDefaultCharExpr)),
219 construct<IoControlSpec>(
220 "POS =" >> construct<IoControlSpec::Pos>(scalarIntExpr)),
221 construct<IoControlSpec>(
222 "REC =" >> construct<IoControlSpec::Rec>(scalarIntExpr)),
223 construct<IoControlSpec>("ROUND =" >>
224 construct<IoControlSpec::CharExpr>(
225 pure(IoControlSpec::CharExpr::Kind::Round), scalarDefaultCharExpr)),
226 construct<IoControlSpec>("SIGN =" >>
227 construct<IoControlSpec::CharExpr>(
228 pure(IoControlSpec::CharExpr::Kind::Sign), scalarDefaultCharExpr)),
229 construct<IoControlSpec>(
230 "SIZE =" >> construct<IoControlSpec::Size>(scalarIntVariable))))