Lines Matching refs:floor
47 res.set("test getKeyAt-2:", proxy.getKeyAt(Math.floor(1.3)) == "b");
77 res.set("test getValueAt:", dProxy.getValueAt(Math.floor(0)) === "cc");
78 res.set("test getValueAt:", dProxy.getValueAt(Math.floor(1)) === "ee");
79 res.set("test setValueAt-2:", dProxy.setValueAt(Math.floor(1.3), "ff"));
80 res.set("test getValueAt-2:", dProxy.getValueAt(Math.floor(1.3)) === "ff");
83 res.set("test removeAt-2:", dProxy.removeAt(Math.floor(1.3)) && dProxy.length == 2);
86 dProxy.increaseCapacityTo(Math.floor(1.3));
137 // Math.floor as index input should not throw exception.
141 myLm.getKeyAt(Math.floor(1.5));
142 myLm.getValueAt(Math.floor(1.5));
143 myLm.setValueAt(Math.floor(1.5), "cc");
144 myLm.removeAt(Math.floor(1.5));