Home | History | Annotate | Download | only in protobuf

Lines Matching defs:Collections

37 import java.util.Collections;
255 assertTrue(list.addAll(Collections.singleton(false)));
266 assertFalse(list.addAll(Collections.<Boolean>emptyList()));
314 list.addAll(Collections.<Boolean>emptyList());
321 list.addAll(Collections.singletonList(false));
342 list.addAll(0, Collections.singleton(true));
356 list.addAll(0, Collections.<Boolean>emptyList());
391 list.removeAll(Collections.<Boolean>emptyList());
398 list.removeAll(Collections.singleton(Boolean.TRUE));
412 list.retainAll(Collections.<Boolean>emptyList());
419 list.retainAll(Collections.singleton(Boolean.TRUE));