Lines Matching defs:expected

27     let expected = concat!(  in test_quote_impl()  localVariable
49 let expected = concat!( in test_quote_spanned_impl() localVariable
65 let expected = "X < X > (X) [X] { X }"; in test_substitution() localVariable
115 let expected = concat!( in test_advanced() localVariable
155 let expected = "- 1i8 - 1i16 - 1i32 - 1i64 - 1i128 - 1isize 1u8 1u16 1u32 1u64 1u128 1usize"; in test_integer() localVariable
169 let expected = concat!("2.345f32 2.345f64"); in test_floating() localVariable
185 let expected = "'\\u{0}' '#' '\"' '\\'' '\\n' '\u{2764}'"; in test_char() localVariable
193 let expected = "\"\\u{0} a 'b \\\" c\""; in test_str() localVariable
201 let expected = "\"\\u{0} a 'b \\\" c\""; in test_string() localVariable
210 let expected = "struct Foo ; enum Bar7 { }"; in test_ident() localVariable
220 let expected = "'x' 'x'"; in test_duplicate() localVariable
233 let expected = r#""a" : true , "b" : false"#; in test_fancy_repetition() localVariable
247 let expected = "'a' 'b' 'c' , 'x' 'y' 'z'"; in test_nested_fancy_repetition() localVariable
260 let expected = r#""a" : "a" , "b" : "b" "a" : "a" , "b" : "b""#; in test_duplicate_name_repetition() localVariable
272 let expected = r#""a" : "a" , "b" : "b""#; in test_duplicate_name_repetition_no_copy() localVariable
286 let expected = r#""a" : "a" , "b" : "b""#; in test_btreeset_repetition() localVariable
296 let expected = "'a' , 'b'"; in test_variable_name_conflict() localVariable
309 let expected = r#""a" "a" : "c" "c" , "b" "b" : "c" "c""#; in test_nonrep_in_repetition() localVariable
392 let expected = "# [doc = r\" doc\"]"; in test_outer_line_comment() localVariable
401 let expected = "# ! [doc = r\" doc\"]"; in test_inner_line_comment() localVariable
410 let expected = "# [doc = r\" doc \"]"; in test_outer_block_comment() localVariable
419 let expected = "# ! [doc = r\" doc \"]"; in test_inner_block_comment() localVariable
428 let expected = "# [inline]"; in test_outer_attr() localVariable
437 let expected = "# ! [no_std]"; in test_inner_attr() localVariable
451 let expected = "f ('0') ; f ('1') ; * out = None ;"; in test_star_after_repetition() localVariable