Home
last modified time | relevance | path

Searched refs:ItemMod (Results 1 – 13 of 13) sorted by relevance

/external/rust/crates/bindgen/codegen/postprocessing/
Dsort_semantically.rs3 Item, ItemMod,
6 pub(super) fn sort_semantically(item_mod: &mut ItemMod) { in sort_semantically() argument
13 fn visit_item_mod_mut(&mut self, item_mod: &mut ItemMod) { in visit_item_mod_mut() argument
Dmerge_extern_blocks.rs3 Item, ItemForeignMod, ItemMod,
6 pub(super) fn merge_extern_blocks(item_mod: &mut ItemMod) { in merge_extern_blocks() argument
13 fn visit_item_mod_mut(&mut self, item_mod: &mut ItemMod) { in visit_item_mod_mut() argument
Dmod.rs3 use syn::{parse2, ItemMod};
15 run: fn(&mut ItemMod),
50 let mut item_mod = parse2::<ItemMod>(module_wrapped_tokens).unwrap(); in postprocessing()
/external/rust/crates/syn/src/
Ditem.rs49 Mod(ItemMod),
230 pub struct ItemMod {
368 | Item::Mod(ItemMod { attrs, .. }) in replace_attrs()
1102 input.parse::<ItemMod>()?; in parse()
1681 impl Parse for ItemMod { implementation
1690 Ok(ItemMod { in parse()
1708 Ok(ItemMod { in parse()
2844 impl ToTokens for ItemMod { implementation
Dlib.rs365 ItemEnum, ItemExternCrate, ItemFn, ItemForeignMod, ItemImpl, ItemMacro, ItemMacro2, ItemMod,
/external/rust/crates/syn/src/gen/
Dfold.rs398 fn fold_item_mod(&mut self, i: ItemMod) -> ItemMod { in fold_item_mod() argument
2106 pub fn fold_item_mod<F>(f: &mut F, node: ItemMod) -> ItemMod in fold_item_mod()
2110 ItemMod { in fold_item_mod()
Dclone.rs1178 impl Clone for ItemMod { implementation
1180 ItemMod { in clone()
Deq.rs1129 impl Eq for ItemMod {} implementation
1132 impl PartialEq for ItemMod { implementation
Dvisit_mut.rs398 fn visit_item_mod_mut(&mut self, i: &mut ItemMod) { in visit_item_mod_mut() argument
2352 pub fn visit_item_mod_mut<V>(v: &mut V, node: &mut ItemMod) in visit_item_mod_mut()
Dvisit.rs397 fn visit_item_mod(&mut self, i: &'ast ItemMod) { in visit_item_mod() argument
2352 pub fn visit_item_mod<'ast, V>(v: &mut V, node: &'ast ItemMod) in visit_item_mod()
Dhash.rs1537 impl Hash for ItemMod { implementation
Ddebug.rs1656 impl Debug for ItemMod { implementation
/external/rust/crates/syn/tests/debug/
Dgen.rs3168 impl Debug for Lite<syn::ItemMod> {