| /third_party/rust/crates/clap/clap_derive/src/ |
| D | dummies.rs | 7 pub fn parser_struct(name: &Ident) { in parser_struct() 13 pub fn parser_enum(name: &Ident) { in parser_enum() 19 pub fn into_app(name: &Ident) { in into_app() 32 pub fn from_arg_matches(name: &Ident) { in from_arg_matches() 45 pub fn subcommand(name: &Ident) { in subcommand() 62 pub fn args(name: &Ident) { in args() 76 pub fn value_enum(name: &Ident) { in value_enum()
|
| /third_party/rust/crates/syn/src/ |
| D | ident.rs | 15 pub fn Ident(marker: lookahead::TokenMarker) -> Ident { in Ident() function 39 impl Parse for Ident { implementation 53 impl Token for Ident { implementation 83 impl From<Token![_]> for Ident { implementation 84 fn from(token: Token![_]) -> Ident { in from()
|
| D | ext.rs | 86 fn unraw(&self) -> Ident; in unraw() 89 impl IdentExt for Ident { implementation 97 fn unraw(&self) -> Ident { in unraw() 128 impl Sealed for Ident {} implementation
|
| D | buffer.rs | 26 Ident(Ident), enumerator 224 pub fn ident(mut self) -> Option<(Ident, Cursor<'a>)> { in ident()
|
| /third_party/rust/crates/cxx/syntax/ |
| D | resolve.rs | 27 fn ident(&self) -> &Ident; in ident() 30 impl UnresolvedName for Ident { implementation 31 fn ident(&self) -> &Ident { in ident() 37 fn ident(&self) -> &Ident { in ident() 43 fn ident(&self) -> &Ident { in ident()
|
| D | trivial.rs | 21 structs: &UnorderedMap<&'a Ident, &'a Struct>, in required_trivial_reasons() 22 enums: &UnorderedMap<&'a Ident, &'a Enum>, in required_trivial_reasons() 23 cxx: &UnorderedSet<&'a Ident>, in required_trivial_reasons() 24 ) -> UnorderedMap<&'a Ident, Vec<TrivialReason<'a>>> { in required_trivial_reasons()
|
| D | namespace.rs | 23 pub fn iter(&self) -> Iter<Ident> { in iter()
|
| D | atom.rs | 93 impl PartialEq<Atom> for &Ident { implementation
|
| /third_party/rust/crates/clap/clap_derive/src/derives/ |
| D | into_app.rs | 21 pub fn gen_for_struct(item: &Item, item_name: &Ident, generics: &Generics) -> TokenStream { in gen_for_struct() 57 pub fn gen_for_enum(item: &Item, item_name: &Ident, generics: &Generics) -> TokenStream { in gen_for_enum()
|
| D | value_enum.rs | 44 pub fn gen_for_enum(item: &Item, item_name: &Ident, variants: &[(&Variant, Item)]) -> TokenStream { in gen_for_enum() 77 fn lits(variants: &[(&Variant, Item)]) -> Vec<(TokenStream, Ident)> { in lits() argument
|
| D | parser.rs | 93 item_name: &Ident, in gen_for_struct() 112 item_name: &Ident, in gen_for_enum()
|
| D | args.rs | 72 item_name: &Ident, in gen_for_struct() 167 app_var: &Ident, in gen_augment() 636 field_name: &Ident, in gen_parsers()
|
| /third_party/rust/crates/syn/tests/ |
| D | test_ident.rs | 5 fn parse(s: &str) -> Result<Ident> { in parse() 9 fn new(s: &str) -> Ident { in new()
|
| /third_party/rust/crates/proc-macro2/src/ |
| D | lib.rs | 557 Ident(Ident), enumerator 925 pub struct Ident { struct 926 inner: imp::Ident, argument 930 impl Ident { argument 998 impl PartialEq for Ident { implementation 1004 impl<T> PartialEq<T> for Ident implementation 1013 impl Eq for Ident {} implementation 1015 impl PartialOrd for Ident { implementation 1021 impl Ord for Ident { implementation 1027 impl Hash for Ident { implementation [all …]
|
| D | fallback.rs | 714 pub(crate) struct Ident { struct 720 impl Ident { implementation 793 impl PartialEq for Ident { implementation 799 impl<T> PartialEq<T> for Ident implementation 813 impl Display for Ident { implementation 822 impl Debug for Ident { implementation
|
| D | wrapper.rs | 692 pub(crate) enum Ident { enum 697 impl Ident { impl 747 fn unwrap_nightly(self) -> proc_macro::Ident { in unwrap_nightly() 755 impl PartialEq for Ident { implementation 765 impl<T> PartialEq<T> for Ident implementation 778 impl Display for Ident { implementation 787 impl Debug for Ident { implementation
|
| /third_party/rust/crates/bindgen/bindgen/codegen/ |
| D | dyngen.rs | 78 lib_ident: Ident, in get_tokens() 129 ident: Ident, in push()
|
| D | impl_partialeq.rs | 79 name_ident: proc_macro2::Ident, in gen_field()
|
| /third_party/rust/crates/rust-std-candidates/mod_path/ |
| D | lib.rs | 14 fn expand_mod_path<'a>(cx: &'a mut ExtCtxt, sp: Span, ident: Ident, tts: Vec<TokenTree>) in expand_mod_path()
|
| /third_party/rust/crates/serde/serde_derive/src/ |
| D | dummy.rs | 10 ty: &Ident, in wrap_in_const()
|
| D | de.rs | 440 variant_ident: Option<&syn::Ident>, in deserialize_tuple() 541 variant_ident: Option<syn::Ident>, in deserialize_tuple_in_place() 895 variant_ident: Option<&syn::Ident>, in deserialize_struct() 1046 variant_ident: Option<syn::Ident>, in deserialize_struct_in_place() 1841 variant_ident: &syn::Ident, in deserialize_externally_tagged_newtype_variant() 1880 variant_ident: &syn::Ident, in deserialize_untagged_newtype_variant() 1905 fields: &[(String, Ident, Vec<String>)], in deserialize_generated_identifier() argument 2086 fields: &[(String, Ident, Vec<String>)], in deserialize_identifier() argument 2836 fn field_i(i: usize) -> Ident { in field_i()
|
| /third_party/rust/crates/syn/codegen/src/ |
| D | gen.rs | 8 pub fn under_name(name: &str) -> Ident { in under_name()
|
| /third_party/rust/crates/serde/serde_derive/src/internals/ |
| D | symbol.rs | 40 impl PartialEq<Symbol> for Ident { implementation 46 impl<'a> PartialEq<Symbol> for &'a Ident { implementation
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Frontend/OpenMP/ |
| D | OMPIRBuilder.cpp | 166 Value *OpenMPIRBuilder::getOrCreateThreadID(Value *Ident) { in getOrCreateThreadID() 253 Value *Ident = getOrCreateIdent(SrcLocStr); in CreateCancel() local 312 Value *Ident = getOrCreateIdent(SrcLocStr); in CreateParallel() local
|
| /third_party/rust/crates/quote/src/ |
| D | ident_fragment.rs | 43 impl IdentFragment for Ident { implementation
|