Home | History | Annotate | Download | only in collect

Lines Matching defs:of

6  * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 ImmutableSet.of(
36 ImmutableSet.of('a', 'b');
39 ImmutableSet.of(1, 2);
51 return ImmutableList.<ImmutableTable<Character, Integer, String>>of(SPARSE,
98 assertTrue(RegularImmutableTable.forCells(ImmutableSet.of(
119 assertEquals(ImmutableMap.of('a', "foo", 'b', "bar"),
121 assertEquals(ImmutableMap.of('a', "baz"), testInstance.column(2));
122 assertEquals(ImmutableMap.of(), testInstance.column(3));
129 assertEquals(ImmutableSet.of(1, 2), testInstance.columnKeySet());
136 assertEquals(ImmutableMap.of(1, ImmutableMap.of('a', "foo", 'b', "bar"),
137 2, ImmutableMap.of('a', "baz")), testInstance.columnMap());
173 assertEquals(ImmutableMap.of(1, "foo", 2, "baz"),
175 assertEquals(ImmutableMap.of(1, "bar"), testInstance.row('b'));
176 assertEquals(ImmutableMap.of(), testInstance.row('c'));
183 assertEquals(ImmutableSet.of('a', 'b'), testInstance.rowKeySet());
190 assertEquals(ImmutableMap.of('a', ImmutableMap.of(1, "foo", 2, "baz"),
191 'b', ImmutableMap.of(1, "bar")), testInstance.rowMap());