HomeSort by relevance Sort by last modified time
    Searched defs:Sink (Results 1 - 5 of 5) sorted by null

  /external/guava/guava/src/com/google/common/hash/
Sink.java 28 public interface Sink {
30 * Puts a byte into this sink.
35 Sink putByte(byte b);
38 * Puts an array of bytes into this sink.
43 Sink putBytes(byte[] bytes);
46 * Puts a chunk of an array of bytes into this sink. {@code bytes[off]} is the first byte written,
56 Sink putBytes(byte[] bytes, int off, int len);
59 * Puts a short into this sink.
61 Sink putShort(short s);
64 * Puts an int into this sink
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 27 /** Test we get the HashCode that is created by the sink. Later we ignore the result */
29 Sink sink = new Sink(4); local
30 assertEquals(0xDeadBeef, sink.makeHash().asInt());
34 Sink sink = new Sink(4); // byte order insignificant here local
36 sink.putByte((byte) 1);
37 sink.putBytes(new byte[] { 2, 3, 4, 5, 6 })
47 Sink sink = new Sink(4); local
55 Sink sink = new Sink(4); local
63 Sink sink = new Sink(8); local
71 Sink sink = new Sink(4); local
79 Sink sink = new Sink(4); local
87 Sink sink = new Sink(8); local
95 Sink sink = new Sink(4); local
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 139 Sink = 0x04 // Should this cl::list eat all unknown options?
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 510 /* sink */ true);
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 1398 milliseconds