Home
last modified time | relevance | path

Searched refs:ExprYield (Results 1 – 11 of 11) sorted by relevance

/linux/rust/syn/
H A Dfixup.rs7 ExprBreak, ExprRange, ExprRawAddr, ExprReference, ExprReturn, ExprUnary, ExprYield,
389 | Expr::Yield(ExprYield { expr: None, .. }) in parenthesize()
413 | Expr::Yield(ExprYield { expr: None, .. }) = expr in precedence()
671 Expr::Return(ExprReturn { expr, .. }) | Expr::Yield(ExprYield { expr, .. }) => match expr { in scan_right()
H A Dprecedence.rs12 ExprTryBlock, ExprTuple, ExprUnsafe, ExprWhile, ExprYield,
114 | Expr::Yield(ExprYield { expr, .. }) => match expr { in of()
H A Dexpr.rs249 Yield(ExprYield),
711 pub struct ExprYield #full {
967 | Expr::Yield(ExprYield { attrs, .. }) => mem::replace(attrs, new), in replace_attrs()
1186 ExprWhile, ExprYield, Label, PointerMutability, RangeLimits,
2518 impl Parse for ExprYield { implementation
2520 Ok(ExprYield { in parse()
3134 ExprWhile, ExprYield, Label, PointerMutability, RangeLimits,
4079 impl ToTokens for ExprYield { implementation
4086 fn print_expr_yield(e: &ExprYield, tokens: &mut TokenStream, fixup: FixupContext) { in print_expr_yield() argument
H A Dlib.rs386 ExprWhile, ExprYield,
/linux/rust/syn/gen/
H A Dfold.rs341 fn fold_expr_yield(&mut self, i: crate::ExprYield) -> crate::ExprYield { in fold_expr_yield() argument
1950 pub fn fold_expr_yield<F>(f: &mut F, node: crate::ExprYield) -> crate::ExprYield in fold_expr_yield()
1954 crate::ExprYield { in fold_expr_yield()
H A Dclone.rs774 impl Clone for crate::ExprYield { implementation
776 crate::ExprYield { in clone()
H A Deq.rs755 impl Eq for crate::ExprYield {} implementation
758 impl PartialEq for crate::ExprYield { implementation
H A Ddebug.rs1184 impl Debug for crate::ExprYield { implementation
1190 impl crate::ExprYield { implementation
H A Dvisit_mut.rs339 fn visit_expr_yield_mut(&mut self, i: &mut crate::ExprYield) { in visit_expr_yield_mut() argument
1909 pub fn visit_expr_yield_mut<V>(v: &mut V, node: &mut crate::ExprYield) in visit_expr_yield_mut()
H A Dvisit.rs331 fn visit_expr_yield(&mut self, i: &'ast crate::ExprYield) { in visit_expr_yield() argument
1987 pub fn visit_expr_yield<'ast, V>(v: &mut V, node: &'ast crate::ExprYield) in visit_expr_yield()
H A Dhash.rs1005 impl Hash for crate::ExprYield { implementation