Searched defs:funnel (Results 1 - 11 of 11) sorted by relevance

/external/guava/guava/src/com/google/common/hash/
H A DFunnel.java32 void funnel(T from, Sink into); method in interface:Funnel
H A DFunnels.java30 * Returns a funnel that extracts the bytes from a {@code byte} array.
39 public void funnel(byte[] from, Sink into) { method in class:Funnels.ByteArrayFunnel
49 * Returns a funnel that extracts the characters from a {@code CharSequence}.
58 public void funnel(CharSequence from, Sink into) { method in class:Funnels.StringFunnel
H A DAbstractNonStreamingHashFunction.java95 public <T> Hasher putObject(T instance, Funnel<? super T> funnel) { argument
96 funnel.funnel(instance, this);
H A DBloomFilter.java50 <T> void put(T object, Funnel<? super T> funnel, int numHashFunctions, BitArray bits); argument
57 T object, Funnel<? super T> funnel, int numHashFunctions, BitArray bits);
66 /** The funnel to translate Ts to bytes */
67 private final Funnel<T> funnel; field in class:BloomFilter
77 private BloomFilter(BitArray bits, int numHashFunctions, Funnel<T> funnel, argument
82 this.funnel = checkNotNull(funnel);
91 return strategy.mightContain(object, funnel, numHashFunctions, bits);
99 strategy.put(object, funnel, numHashFunctions, bits);
123 * @param funnel th
56 mightContain( T object, Funnel<? super T> funnel, int numHashFunctions, BitArray bits) argument
130 create(Funnel<T> funnel, int expectedInsertions , double falsePositiveProbability) argument
164 create(Funnel<T> funnel, int expectedInsertions ) argument
219 final Funnel<T> funnel; field in class:BloomFilter.SerialForm
[all...]
H A DHasher.java60 * A simple convenience for {@code funnel.funnel(object, this)}.
62 <T> Hasher putObject(T instance, Funnel<? super T> funnel); argument
H A DMessageDigestHashFunction.java158 @Override public <T> Hasher putObject(T instance, Funnel<? super T> funnel) { argument
160 funnel.funnel(instance, this);
H A DAbstractStreamingHashFunction.java214 public final <T> Hasher putObject(T instance, Funnel<? super T> funnel) { argument
215 funnel.funnel(instance, this);
/external/guava/guava-tests/test/com/google/common/hash/
H A DFunnelsTest.java26 Funnels.byteArrayFunnel().funnel(new byte[]{4, 3, 2, 1}, byteSink);
42 Funnels.stringFunnel().funnel("test", byteSink);
51 private static void assertNullsThrowException(Funnel<?> funnel) { argument
62 funnel.funnel(null, byteSink);
/external/droiddriver/libs/
H A Dguava-13.0.jar ... Object instance com.google.common.hash.Funnel funnel public 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/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 397 milliseconds