Home | History | Annotate | Download | only in hash

Lines Matching defs:into

46     public void funnel(byte[] from, PrimitiveSink into) {
47 into.putBytes(from);
69 public void funnel(CharSequence from, PrimitiveSink into) {
70 into.putUnencodedChars(from);
95 public void funnel(CharSequence from, PrimitiveSink into) {
96 into.putString(from, charset);
146 public void funnel(Integer from, PrimitiveSink into) {
147 into.putInt(from);
172 public void funnel(Iterable<? extends E> from, PrimitiveSink into) {
174 elementFunnel.funnel(e, into);
207 public void funnel(Long from, PrimitiveSink into) {
208 into.putLong(from);