Lines Matching full:linkedhashmap
3 use linked_hash_map::{LinkedHashMap, Entry};
12 let mut map = LinkedHashMap::new(); in test_insert_and_get()
22 let mut map = LinkedHashMap::new(); in test_index()
32 let mut map = LinkedHashMap::new(); in test_insert_update()
41 let mut map = LinkedHashMap::new(); in test_entry_insert_vacant()
72 let mut map = LinkedHashMap::new(); in test_entries_replacing()
87 let mut map = LinkedHashMap::new(); in test_entries_remove()
145 let mut map = LinkedHashMap::new(); in entries_insert()
158 let mut map = LinkedHashMap::new(); in test_debug()
176 let mut map = LinkedHashMap::new(); in test_remove()
197 let mut map = LinkedHashMap::new(); in test_pop()
223 let mut map = LinkedHashMap::new(); in test_clear()
234 let mut map = LinkedHashMap::new(); in test_iter()
270 let mut map = LinkedHashMap::new(); in test_iter_mut()
300 let mut map = LinkedHashMap::new(); in test_consuming_iter()
321 let map = LinkedHashMap::<&str, i32>::new(); in test_consuming_iter_empty()
330 let mut map = LinkedHashMap::new(); in test_consuming_iter_with_free_list()
357 let mut map = LinkedHashMap::new(); in test_into_iter_drop()
381 let mut map = LinkedHashMap::new(); in test_borrow()
420 is_send_sync::<LinkedHashMap<u32, i32>>(); in test_send_sync()