Home | History | Annotate | Download | only in hash

Lines Matching defs:ImmutableList

19 import com.google.common.collect.ImmutableList;
124 Hashing.combineOrdered(ImmutableList.of(HashCodes.fromInt(32), HashCodes.fromLong(32L)));
133 assertEquals(hash32, Hashing.combineOrdered(ImmutableList.of(hash32)));
135 Hashing.combineOrdered(ImmutableList.of(hash32, hash32)));
137 Hashing.combineOrdered(ImmutableList.of(hash32, hash32, hash32)));
139 Hashing.combineOrdered(ImmutableList.of(hash31, hash32)).equals(
140 Hashing.combineOrdered(ImmutableList.of(hash32, hash31))));
174 Hashing.combineUnordered(ImmutableList.of(HashCodes.fromInt(32), HashCodes.fromLong(32L)));
183 assertEquals(hash32, Hashing.combineUnordered(ImmutableList.of(hash32)));
184 assertEquals(HashCodes.fromInt(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32)));
186 Hashing.combineUnordered(ImmutableList.of(hash32, hash32, hash32)));
188 Hashing.combineUnordered(ImmutableList.of(hash31, hash32)),
189 Hashing.combineUnordered(ImmutableList.of(hash32, hash31)));