Searched refs:throws_tokens (Results 1 – 5 of 5) sorted by relevance
/third_party/rust/crates/cxx/syntax/ |
D | tokens.rs | 266 throws_tokens, in to_tokens() 274 if let Some((result, langle, rangle)) = throws_tokens { in to_tokens() 282 } else if let Some((result, langle, rangle)) = throws_tokens { in to_tokens()
|
D | parse.rs | 668 let mut throws_tokens = None; in parse_extern_fn() localVariable 669 let ret = parse_return_type(&foreign_fn.sig.output, &mut throws_tokens)?; in parse_extern_fn() 670 let throws = throws_tokens.is_some(); in parse_extern_fn() 701 throws_tokens, in parse_extern_fn() 1414 let mut throws_tokens = None; in parse_type_fn() localVariable 1415 let ret = parse_return_type(&ty.output, &mut throws_tokens)?; in parse_type_fn() 1416 let throws = throws_tokens.is_some(); in parse_type_fn() 1435 throws_tokens, in parse_type_fn() 1441 throws_tokens: &mut Option<(kw::Result, Token![<], Token![>])>, in parse_return_type() 1457 *throws_tokens = in parse_return_type()
|
D | impls.rs | 321 throws_tokens: _, in eq() 333 throws_tokens: _, in eq() 377 throws_tokens: _, in hash()
|
D | mod.rs | 191 pub throws_tokens: Option<(kw::Result, Token![<], Token![>])>, field
|
/third_party/rust/crates/cxx/macro/src/ |
D | expand.rs | 1169 let ret = if let Some((result, _langle, rangle)) = sig.throws_tokens { in expand_rust_function_shim_super()
|