Lines Matching refs:_s

498         let mut _s = $crate::__private::TokenStream::new();
499 $crate::quote_token!{$tt _s}
500 _s
505 let mut _s = $crate::__private::TokenStream::new();
506 $crate::ToTokens::to_tokens(&$var, &mut _s);
507 _s
510 let mut _s = $crate::__private::TokenStream::new();
511 $crate::quote_token!{$tt1 _s}
512 $crate::quote_token!{$tt2 _s}
513 _s
518 let mut _s = $crate::__private::TokenStream::new();
519 $crate::quote_each_token!{_s $($tt)*}
520 _s
638 let mut _s = $crate::__private::TokenStream::new();
640 $crate::quote_token_spanned!{$tt _s _span}
641 _s
646 let mut _s = $crate::__private::TokenStream::new();
648 $crate::ToTokens::to_tokens(&$var, &mut _s);
649 _s
652 let mut _s = $crate::__private::TokenStream::new();
654 $crate::quote_token_spanned!{$tt1 _s _span}
655 $crate::quote_token_spanned!{$tt2 _s _span}
656 _s
661 let mut _s = $crate::__private::TokenStream::new();
663 $crate::quote_each_token_spanned!{_s _span $($tt)*}
664 _s
754 // quote_each_token!(_s a b c d e f g h i j);
758 // quote_tokens_with_context!(_s
770 // quote_token_with_context!(_s @ @ @ @ @ @ a);
771 // quote_token_with_context!(_s @ @ @ @ @ a b);
772 // quote_token_with_context!(_s @ @ @ @ a b c);
773 // quote_token_with_context!(_s @ @ @ (a) b c d);
774 // quote_token_with_context!(_s @ @ a (b) c d e);
775 // quote_token_with_context!(_s @ a b (c) d e f);
776 // quote_token_with_context!(_s a b c (d) e f g);
777 // quote_token_with_context!(_s b c d (e) f g h);
778 // quote_token_with_context!(_s c d e (f) g h i);
779 // quote_token_with_context!(_s d e f (g) h i j);
780 // quote_token_with_context!(_s e f g (h) i j @);
781 // quote_token_with_context!(_s f g h (i) j @ @);
782 // quote_token_with_context!(_s g h i (j) @ @ @);
783 // quote_token_with_context!(_s h i j @ @ @ @);
784 // quote_token_with_context!(_s i j @ @ @ @ @);
785 // quote_token_with_context!(_s j @ @ @ @ @ @);