Lines Matching refs:InterfaceName
41 enum InterfaceName { enum
76 interface_names: HashMap<InterfaceId, InterfaceName>,
89 name: InterfaceName,
96 modules: Vec<(InterfaceId, String, InterfaceName)>,
266 InterfaceName::Remapped { in name_interface()
271 InterfaceName::Path(path) in name_interface()
274 let remapped = matches!(entry, InterfaceName::Remapped { .. }); in name_interface()
434 InterfaceName::Remapped { name_at_root, .. } => name_at_root, in import()
435 InterfaceName::Path(_) => unreachable!(), in import()
1054 fn emit_modules(&mut self, modules: Vec<(InterfaceId, String, InterfaceName)>) { in emit_modules() argument
1063 InterfaceName::Remapped { local_path, .. } => local_path, in emit_modules()
1064 InterfaceName::Path(path) => path, in emit_modules()
1309 InterfaceName::Path(path) => path.join("::"), in import_interface_paths()
1310 InterfaceName::Remapped { name_at_root, .. } => name_at_root.clone(), in import_interface_paths()
1319 InterfaceName::Path(path) => path.join("::"), in import_interface_path()
1320 InterfaceName::Remapped { name_at_root, .. } => name_at_root.clone(), in import_interface_path()
3188 InterfaceName::Remapped { name_at_root, .. } => path_to_root.push_str(name_at_root), in path_to_interface()
3189 InterfaceName::Path(path) => { in path_to_interface()