Lines Matching refs:hasher
55 let mut hasher = DefaultHasher::new(); in insert_into_name_table() localVariable
56 path.hash(&mut hasher); in insert_into_name_table()
57 let hash = hasher.finish(); in insert_into_name_table()
63 let mut hasher = DefaultHasher::new(); in contains_name() localVariable
64 path.hash(&mut hasher); in contains_name()
65 let hash = hasher.finish(); in contains_name()
71 let mut hasher = DefaultHasher::new(); in get_unit_with_name() localVariable
72 name.hash(&mut hasher); in get_unit_with_name()
73 let hash = hasher.finish(); in get_unit_with_name()
97 let mut hasher = DefaultHasher::new(); in get_id_with_path() localVariable
98 path.hash(&mut hasher); in get_id_with_path()
99 let hash = hasher.finish(); in get_id_with_path()