Home | History | Annotate | Download | only in collect

Lines Matching refs:RandomAccess

55 import java.util.RandomAccess;
409 assertTrue(list instanceof RandomAccess);
437 assertTrue(list instanceof RandomAccess);
450 assertTrue(list instanceof RandomAccess);
470 assertTrue(list instanceof RandomAccess);
664 assertTrue(list instanceof RandomAccess);
669 assertFalse(list instanceof RandomAccess);
843 @GwtIncompatible("ArrayList.subList doesn't implement RandomAccess in GWT.")
848 assertTrue("partition should be RandomAccess, but not: "
850 partitions instanceof RandomAccess);
852 assertTrue("partition[0] should be RandomAccess, but not: "
854 partitions.get(0) instanceof RandomAccess);
856 assertTrue("partition[1] should be RandomAccess, but not: "
858 partitions.get(1) instanceof RandomAccess);
864 assertFalse(partitions instanceof RandomAccess);
865 assertFalse(partitions.get(0) instanceof RandomAccess);
866 assertFalse(partitions.get(1) instanceof RandomAccess);