Home | History | Annotate | Download | only in collect

Lines Matching defs:headset

120     assertSame(set, set.headSet("c"));
165 assertTrue(set.headSet("g") instanceof ImmutableSortedSet);
166 ASSERT.that(set.headSet("g")).hasContentsInOrder("e");
167 assertSame(of(), set.headSet("c"));
168 assertSame(of(), set.headSet("e"));
267 assertTrue(set.headSet("e") instanceof ImmutableSortedSet);
268 ASSERT.that(set.headSet("e")).hasContentsInOrder("b", "c", "d");
269 ASSERT.that(set.headSet("g")).hasContentsInOrder("b", "c", "d", "e", "f");
270 assertSame(of(), set.headSet("a"));
271 assertSame(of(), set.headSet("b"));
361 assertTrue(set.headSet("a") instanceof ImmutableSortedSet);
362 assertTrue(set.headSet("fish") instanceof ImmutableSortedSet);
363 ASSERT.that(set.headSet("fish")).hasContentsInOrder("a", "in", "the");
365 set.headSet("california")).hasContentsInOrder("a", "in", "the", "over", "quick", "jumped");
366 assertTrue(set.headSet("a").isEmpty());
367 assertTrue(set.headSet("").isEmpty());
450 SortedSet<String> headset = set.headSet("d");
451 SortedSet<String> copy = copyOf(headset);
452 assertEquals(headset, copy);
823 ASSERT.that(set.headSet(strings[i], true))
833 ASSERT.that(set.headSet(strings[i], false)).hasContentsInOrder(sortedNumberNames(0, i));