/third_party/rust/crates/syn/src/ |
D | macros.rs | 127 ($($arms:tt)*) $tokens:ident $name:ident { 135 ($($arms)* $(#[cfg $cfg_attr])* $name::$variant => {}) 141 ($($arms:tt)*) $tokens:ident $name:ident { 149 ($($arms)* $(#[cfg $cfg_attr])* $name::$variant(_e) => _e.to_tokens($tokens),) 154 (($($arms:tt)*) $tokens:ident $name:ident {}) => { 159 $($arms)*
|
D | expr.rs | 564 pub arms: Vec<Arm>, 2269 let mut arms = Vec::new(); in parse() localVariable 2271 arms.push(content.call(Arm::parse)?); in parse() 2279 arms, in parse() 3219 for (i, arm) in self.arms.iter().enumerate() { in to_tokens() 3223 let is_last = i == self.arms.len() - 1; in to_tokens()
|
/third_party/rust/crates/codespan/codespan-reporting/tests/snapshots/ |
D | term__multiline_overlapping__rich_no_color.snap | 5 error[E0308]: match arms have incompatible types 20 │ ╰─────────' `match` arms have incompatible types
|
D | term__multiline_overlapping__rich_color.snap | 5 {fg:Red bold bright}error[E0308]{bold bright}: match arms have incompatible types{/} 20 {fg:Blue}│{/} {fg:Blue}╰{/}{fg:Blue}─────────' `match` arms have incompatible types{/}
|
D | term__multiline_overlapping__short_no_color.snap | 5 codespan/src/file.rs:4:34: error[E0308]: match arms have incompatible types
|
D | term__multiline_overlapping__short_color.snap | 5 codespan/src/file.rs:4:34: {fg:Red bold bright}error[E0308]{bold bright}: match arms have incompati…
|
D | term__multiline_overlapping__medium_no_color.snap | 5 codespan/src/file.rs:4:34: error[E0308]: match arms have incompatible types
|
D | term__multiline_overlapping__medium_color.snap | 5 codespan/src/file.rs:4:34: {fg:Red bold bright}error[E0308]{bold bright}: match arms have incompati…
|
/third_party/rust/crates/syn/codegen/src/ |
D | debug.rs | 15 let arms = variants.iter().map(|(variant_name, fields)| { in expand_impl_body() localVariable 58 #(#arms)* in expand_impl_body()
|
D | clone.rs | 15 let arms = variants.iter().map(|(variant_name, fields)| { in expand_impl_body() localVariable 58 #(#arms)* in expand_impl_body()
|
D | hash.rs | 26 let arms = variants in expand_impl_body() localVariable 94 #(#arms)* in expand_impl_body()
|
D | eq.rs | 26 let arms = variants.iter().map(|(variant_name, fields)| { in expand_impl_body() localVariable 77 #(#arms)* in expand_impl_body()
|
D | snapshot.rs | 136 let arms = variants.iter().map(|(v, fields)| { in expand_impl_body() localVariable 201 #(#arms)* in expand_impl_body()
|
/third_party/rust/crates/codespan/codespan-reporting/ |
D | CHANGELOG.md | 188 error[E0308]: match arms have incompatible types 200 │ ╰─────────' `match` arms have incompatible types 218 error[E0308]: match arms have incompatible types 234 │ ╰─────────' `match` arms have incompatible types
|
/third_party/rust/crates/cxx/book/src/ |
D | shared.md | 87 arms to handle the situation of an enum value that is not one of the listed
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrInteger.td | 119 // And again, this time with seteq instead of setne and the arms reversed.
|
D | WebAssemblyInstrFloat.td | 119 // And again, this time with seteq instead of setne and the arms reversed.
|
/third_party/skia/third_party/externals/brotli/tests/testdata/ |
D | plrabn12.txt | 119 Who durst defy th' Omnipotent to arms. 164 The force of those dire arms? Yet not for those, 189 In arms not worse, in foresight much advanced, 339 With rallied arms to try what may be yet 395 With scattered arms and ensigns, till anon 609 Seraphic arms and trophies; all the while 634 Of dreadful length and dazzling arms, in guise 737 Against the Highest, and fierce with grasped arms 929 Millions that stand in arms, and longing wait 937 Turning our tortures into horrid arms [all …]
|
/third_party/rust/crates/serde/serde_derive/src/ |
D | ser.rs | 409 let arms: Vec<_> = variants in serialize_enum() localVariable 419 #(#arms)* in serialize_enum()
|
/third_party/rust/crates/syn/src/gen/ |
D | clone.rs | 555 arms: self.arms.clone(), in clone()
|
D | eq.rs | 542 self.attrs == other.attrs && self.expr == other.expr && self.arms == other.arms in eq()
|
/third_party/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 492 took him in my arms, and rocked him. I said to him: “The flower that you love is not in danger. I 1583 him in my arms and set out walking once more. I felt deeply moved, and stirred. It seemed to me 1626 the effort of my arms. It was good for the heart, like a present. When I was a little boy, the ligh… 1709 reached the wall just in time to catch my little man in my arms; his face was white as snow. 1715 me very gravely, and put his arms around my neck. I felt his heart beating like the heart of a 1726 extraordinary was happening. I was holding him close in my arms as if he were a little child; and
|
/third_party/skia/third_party/externals/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 492 took him in my arms, and rocked him. I said to him: “The flower that you love is not in danger. I 1583 him in my arms and set out walking once more. I felt deeply moved, and stirred. It seemed to me 1626 the effort of my arms. It was good for the heart, like a present. When I was a little boy, the ligh… 1709 reached the wall just in time to catch my little man in my arms; his face was white as snow. 1715 me very gravely, and put his arms around my neck. I felt his heart beating like the heart of a 1726 extraordinary was happening. I was holding him close in my arms as if he were a little child; and
|
/third_party/rust/crates/syn/tests/debug/ |
D | gen.rs | 792 if !_val.arms.is_empty() { in fmt() 793 formatter.field("arms", Lite(&_val.arms)); in fmt() 1528 if !_val.arms.is_empty() { in fmt() 1529 formatter.field("arms", Lite(&_val.arms)); in fmt()
|
/third_party/rust/crates/tracing/tracing/ |
D | CHANGELOG.md | 384 - Fixed broken match arms in event macros ([#1239])
|