Searched refs:hashCodes (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontCacheKey.h61 unsigned hashCodes[3] = { local
66 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
H A DFontPlatformData.h135 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_isPrinterFont << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique) }; local
136 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
H A DCustomFilterProgramInfo.cpp82 uintptr_t hashCodes[6] = { local
90 return StringHasher::hashMemory<sizeof(hashCodes)>(&hashCodes);
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DSecurityOriginHash.h41 unsigned hashCodes[3] = { local
46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashingTest.java145 List<HashCode> hashCodes = Lists.newArrayList();
147 hashCodes.add(HashCodes.fromLong(random.nextLong()));
149 HashCode hashCode1 = Hashing.combineOrdered(hashCodes);
150 Collections.shuffle(hashCodes, random);
151 HashCode hashCode2 = Hashing.combineOrdered(hashCodes);
194 List<HashCode> hashCodes = Lists.newArrayList();
196 hashCodes.add(HashCodes.fromLong(random.nextLong()));
198 HashCode hashCode1 = Hashing.combineUnordered(hashCodes);
199 Collections.shuffle(hashCodes);
200 HashCode hashCode2 = Hashing.combineUnordered(hashCodes);
[all...]
/external/guava/guava/src/com/google/common/hash/
H A DHashing.java217 * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
220 public static HashCode combineOrdered(Iterable<HashCode> hashCodes) { argument
221 Iterator<HashCode> iterator = hashCodes.iterator();
225 for (HashCode hashCode : hashCodes) {
243 * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
246 public static HashCode combineUnordered(Iterable<HashCode> hashCodes) { argument
247 Iterator<HashCode> iterator = hashCodes.iterator();
250 for (HashCode hashCode : hashCodes) {
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 154 milliseconds