Lines Matching refs:insert

460             self.insert(k, v);  in extend()
949 self.insert(k, v); in replace_or_insert()
1021 pub fn insert(&mut self, k: K, v: V) { in insert() method
1425 m.insert(1, 2); in test_insert()
1427 m.insert(2, 4); in test_insert()
1429 m.insert(2, 6); in test_insert()
1440 m.insert(2, 4); in test_replace()
1451 m.insert(1, 2); in test_clone()
1453 m.insert(2, 4); in test_clone()
1488 m.insert(i, i); in test_lots_of_insertions()
1523 m.insert(i, i); in test_lots_of_insertions()
1544 m.insert(1, 12); in test_find_mut()
1545 m.insert(2, 8); in test_find_mut()
1546 m.insert(5, 14); in test_find_mut()
1558 m.insert(1, 2); in test_remove()
1560 m.insert(5, 3); in test_remove()
1562 m.insert(9, 4); in test_remove()
1575 m.insert(1, 2); in test_is_empty()
1584 m.insert(2, 4); in test_pop()
1585 m.insert(1, 2); in test_pop()
1586 m.insert(3, 6); in test_pop()
1600 m.insert(i, i * 2); in test_iterate()
1653 m.insert(1, 2); in test_find()
1663 m1.insert(1, 2); in test_eq()
1664 m1.insert(2, 3); in test_eq()
1665 m1.insert(3, 4); in test_eq()
1668 m2.insert(1, 2); in test_eq()
1669 m2.insert(2, 3); in test_eq()
1673 m2.insert(3, 4); in test_eq()
1683 map.insert(1, 2); in test_show()
1684 map.insert(3, 4); in test_show()
1759 map.insert(1, 2); in test_index()
1760 map.insert(2, 1); in test_index()
1761 map.insert(3, 4); in test_index()
1771 map.insert(1, 2); in test_index_nonexistent()
1772 map.insert(2, 1); in test_index_nonexistent()
1773 map.insert(3, 4); in test_index_nonexistent()
1781 a.insert(1, "one"); in test_extend_iter()
1783 b.insert(2, "two"); in test_extend_iter()
1784 b.insert(3, "three"); in test_extend_iter()