Lines Matching refs:I
46 fn ident<I>() -> impl Parser<I, Output = String> in ident() argument
48 I: Stream<Token = char>, in ident()
49 I::Error: ParseError<I::Token, I::Range, I::Position>, in ident()
54 fn integer<I>() -> impl Parser<I, Output = i64> in integer() argument
56 I: Stream<Token = char>, in integer()
57 I::Error: ParseError<I::Token, I::Range, I::Position>, in integer()
70 fn register<I>() -> impl Parser<I, Output = i64> in register() argument
72 I: Stream<Token = char>, in register()
73 I::Error: ParseError<I::Token, I::Range, I::Position>, in register()
80 fn operand<I>() -> impl Parser<I, Output = Operand> in operand() argument
82 I: Stream<Token = char>, in operand()
83 I::Error: ParseError<I::Token, I::Range, I::Position>, in operand()
92 fn instruction<I>() -> impl Parser<I, Output = Instruction> in instruction() argument
94 I: Stream<Token = char>, in instruction()
95 I::Error: ParseError<I::Token, I::Range, I::Position>, in instruction()