OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:anotherset
(Results
1 - 4
of
4
) sorted by null
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
EnumSetTest.java
191
EnumSet<EnumFoo>
anotherSet
= EnumSet.allOf(EnumFoo.class);
192
assertEquals("Should be equal", enumSet,
anotherSet
);
193
assertNotSame("Should not be identical", enumSet,
anotherSet
);
533
Set<EnumFoo>
anotherSet
= EnumSet.noneOf(EnumFoo.class);
536
anotherSet
.add((EnumFoo) elements[i]);
538
assertTrue("Should return true", set.equals(
anotherSet
));
540
anotherSet
.remove(EnumFoo.a);
542
"Should return false", set.equals(
anotherSet
));
[
all
...]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
BoundSet.java
[
all
...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java
540
* {@code union = Sets.union(union,
anotherSet
);}, since iterating over the resulting
[
all
...]
/external/guava/guava/src/com/google/common/collect/
Sets.java
576
* {@code union = Sets.union(union,
anotherSet
);}, since iterating over the resulting
[
all
...]
Completed in 350 milliseconds