Lines Matching refs:put

98         empty.put("something", "here");
119 empty.put("something", "here");
130 myMap.put(objArray2[counter], objArray[counter]);
145 hm.put("T", "HELLO");
150 m.put(null, "test");
157 * java.util.LinkedHashMap#put(java.lang.Object, java.lang.Object)
161 // java.util.LinkedHashMap.put(java.lang.Object, java.lang.Object)
162 hm.put("KEY", "VALUE");
167 m.put(new Short((short) 0), "short");
168 m.put(null, "test");
169 m.put(new Integer(0), "int");
179 m.put("KEY", "VALUE");
180 m.put("WOMBAT", "COMBAT");
181 m.put("KEY", "VALUE");
244 m1.put(key, value);
245 m1.put("jumbo", "shrimp");
264 m.put(null, "test");
269 map.put(new Integer(1), "1");
270 map.put(new Integer(102), "102");
271 map.put(new Integer(203), "203");
288 map2.put(new Integer(1), "1");
289 map2.put(new Integer(4), "4");
319 myLinkedHashMap.put(objArray2[i], objArray[i]);
347 m.put(null, "test");
378 map.put("key", "value");
387 map2.put("key", "value2");
395 map2.put("key2", "value3");
408 hm1.put("a", "a");
409 hm1.put("b", "b");
410 hm1.put("c", "c");
431 hashMap.put("key", value);
437 hashMap.put("key", "value b");
444 public Object put(Object k, Object v) {
446 return super.put(k, v);
455 * put/get interaction in access-order map where removeEldest
466 map.put("N", "E");
467 map.put("F", "I");
482 m.put(null, "test");
527 lhm.put(ii, ii.toString());
542 lruhm.put(ii, ii.toString());
589 lhm.put(ii, ii.toString());
603 lruhm.put(ii, ii.toString());
645 lhm.put(ii, new Integer(i * 2));
659 lruhm.put(ii, new Integer(i * 2));
701 lhm.put(ii, new Integer(i * 2));
716 map.put("three", "3");
717 map.put("two", "2");
718 map.put("one", "1");
721 map.forEach((k, v) -> output.put(k,v));
763 map.put("one", "1");
764 map.put("two", "2");
765 map.put("three", "3");
772 outputMap.put(k, v);
773 map.put("foo1", v);
786 outputMap.put(k, "foo");
787 map.put("foo2", "boo");
800 outputMap.put(k, "foo");
801 map.put("foo3", "boo");
814 outputMap.put(k.getKey(), "foo");
815 map.put("foo4", "boo");
826 hashMap.put("a", "1");
827 hashMap.put("b", "2");
828 hashMap.put("c", "3");
829 hashMap.put("d", "4");
830 hashMap.put("e", "5");
831 hashMap.put("f", "6");
832 hashMap.put("g", "7");
833 hashMap.put("h", "8");
834 hashMap.put("i", "9");
835 hashMap.put("j", "10");
836 hashMap.put("k", "11");
837 hashMap.put("l", "12");
838 hashMap.put("m", "13");
839 hashMap.put("n", "14");
840 hashMap.put("o", "15");
841 hashMap.put("p", "16");
857 hashMap.put("a", "1");
858 hashMap.put("b", "2");
859 hashMap.put("c", "3");
860 hashMap.put("d", "4");
861 hashMap.put("e", "5");
862 hashMap.put("f", "6");
863 hashMap.put("g", "7");
864 hashMap.put("h", "8");
865 hashMap.put("i", "9");
866 hashMap.put("j", "10");
867 hashMap.put("k", "11");
868 hashMap.put("l", "12");
869 hashMap.put("m", "13");
870 hashMap.put("n", "14");
871 hashMap.put("o", "15");
872 hashMap.put("p", "16");
888 hashMap.put("a", "1");
889 hashMap.put("b", "2");
890 hashMap.put("c", "3");
891 hashMap.put("d", "4");
892 hashMap.put("e", "5");
893 hashMap.put("f", "6");
894 hashMap.put("g", "7");
895 hashMap.put("h", "8");
896 hashMap.put("i", "9");
897 hashMap.put("j", "10");
898 hashMap.put("k", "11");
899 hashMap.put("l", "12");
900 hashMap.put("m", "13");
901 hashMap.put("n", "14");
902 hashMap.put("o", "15");
903 hashMap.put("p", "16");
935 hm.put(objArray2[i], objArray[i]);
936 hm.put("test", null);
937 hm.put(null, "test");