Searched refs:combineUnordered (Results 1 – 2 of 2) sorted by relevance
285 Hashing.combineUnordered(Collections.<HashCode>emptySet()); in testCombineUnordered_empty()293 Hashing.combineUnordered(ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L))); in testCombineUnordered_differentBitLengths()302 assertEquals(hash32, Hashing.combineUnordered(ImmutableList.of(hash32))); in testCombineUnordered()303 assertEquals(HashCode.fromInt(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32))); in testCombineUnordered()305 Hashing.combineUnordered(ImmutableList.of(hash32, hash32, hash32))); in testCombineUnordered()307 Hashing.combineUnordered(ImmutableList.of(hash31, hash32)), in testCombineUnordered()308 Hashing.combineUnordered(ImmutableList.of(hash32, hash31))); in testCombineUnordered()317 HashCode hashCode1 = Hashing.combineUnordered(hashCodes); in testCombineUnordered_randomHashCodes()319 HashCode hashCode2 = Hashing.combineUnordered(hashCodes); in testCombineUnordered_randomHashCodes()
389 public static HashCode combineUnordered(Iterable<HashCode> hashCodes) { in combineUnordered() method in Hashing