Lines Matching refs:set
44 * Helper: check that the given map has exactly this set of (sorted) entries.
87 msg.getMapStringStringMap().set('asdf', 'jkl;').set('key 2', 'hello world');
88 msg.getMapStringInt32Map().set('a', 1).set('b', -2);
89 msg.getMapStringInt64Map().set('c', 0x100000000).set('d', 0x200000000);
90 msg.getMapStringBoolMap().set('e', true).set('f', false);
91 msg.getMapStringDoubleMap().set('g', 3.14159).set('h', 2.71828);
93 .set('i', proto.jspb.test.MapValueEnum.MAP_VALUE_BAR)
94 .set('j', proto.jspb.test.MapValueEnum.MAP_VALUE_BAZ);
96 .set('k', new submessageCtor())
97 .set('l', new submessageCtor());
100 msg.getMapInt32StringMap().set(-1, 'a').set(42, 'b');
101 msg.getMapInt64StringMap().set(0x123456789abc, 'c').set(0xcba987654321, 'd');
102 msg.getMapBoolStringMap().set(false, 'e').set(true, 'f');
179 m.set('asdf', 'hello world');
182 m.set('jkl;', 'key 2');
242 msg.getMapStringStringMap().set('A', 'a');