Home
last modified time | relevance | path

Searched refs:otherUnits (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DSetsTest.java289 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units); in testComplementOfEnumSet() local
290 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C)); in testComplementOfEnumSet()
295 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units, SomeEnum.class); in testComplementOfEnumSetWithType() local
296 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C)); in testComplementOfEnumSetWithType()
301 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units); in testComplementOfRegularSet() local
302 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C)); in testComplementOfRegularSet()
307 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units, SomeEnum.class); in testComplementOfRegularSetWithType() local
308 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C)); in testComplementOfRegularSetWithType()
/external/guava/guava-tests/test/com/google/common/collect/
DSetsTest.java559 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units);
560 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C));
565 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units, SomeEnum.class);
566 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C));
571 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units);
572 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C));
577 EnumSet<SomeEnum> otherUnits = Sets.complementOf(units, SomeEnum.class);
578 verifySetContents(otherUnits, EnumSet.of(SomeEnum.A, SomeEnum.C));