Searched defs:newHasher (Results 1 - 13 of 13) sorted by relevance

/external/guava/guava/src/com/google/common/hash/
H A DAbstractCompositeHashFunction.java8 * An abstract composition of multiple hash functions. {@linkplain #newHasher()} delegates to the
30 public Hasher newHasher() { method in class:AbstractCompositeHashFunction
33 hashers[i] = functions[i].newHasher();
H A DHashFunction.java91 * {@link Hasher}. Obtain a new hasher from the hash function using {@link #newHasher},
94 * an {@linkplain #newHasher example} of this.)
137 * HashCode hc = hf.newHasher()
142 Hasher newHasher(); method in interface:HashFunction
145 * Begins a new hash code computation as {@link #newHasher()}, but provides a hint of the
150 Hasher newHasher(int expectedInputSize); method in interface:HashFunction
153 * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the
160 * Shortcut for {@code newHasher().putBytes(input).hash()}. The implementation
167 * Shortcut for {@code newHasher().putBytes(input, off, len).hash()}. The implementation
177 * Shortcut for {@code newHasher()
[all...]
H A DMurmur3_32HashFunction.java40 @Override public Hasher newHasher() { method in class:Murmur3_32HashFunction
H A DMurmur3_128HashFunction.java42 @Override public Hasher newHasher() { method in class:Murmur3_128HashFunction
H A DAbstractNonStreamingHashFunction.java13 * All the hash computation done using {@linkplain #newHasher()} are delegated to the {@linkplain
20 public Hasher newHasher() { method in class:AbstractNonStreamingHashFunction
25 public Hasher newHasher(int expectedInputSize) { method in class:AbstractNonStreamingHashFunction
H A DMessageDigestHashFunction.java58 @Override public Hasher newHasher() { method in class:MessageDigestHashFunction
H A DAbstractStreamingHashFunction.java27 * invokes the appropriate method on {@link #newHasher()}, then return the result of
30 * <p>Invocations of {@link #newHasher(int)} also delegate to {@linkplain #newHasher()}, ignoring
37 return newHasher().putString(input).hash();
41 return newHasher().putString(input, charset).hash();
45 return newHasher().putLong(input).hash();
49 return newHasher().putBytes(input).hash();
53 return newHasher().putBytes(input, off, len).hash();
56 @Override public Hasher newHasher(int expectedInputSize) { method in class:AbstractStreamingHashFunction
58 return newHasher();
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DAbstractNonStreamingHashFunctionTest.java23 * and checks that their results are identical, no matter which newHasher version we used.
27 new StreamingVersion().newHasher(),
28 new StreamingVersion().newHasher(52),
29 new NonStreamingVersion().newHasher(),
30 new NonStreamingVersion().newHasher(123));
51 public Hasher newHasher() { method in class:AbstractNonStreamingHashFunctionTest.StreamingVersion
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 127 milliseconds