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

  /external/okhttp/okio/src/main/java/okio/
Sink.java 27 * <p>Most application code shouldn't operate on a sink directly, but rather
29 * {@link Okio#buffer(Sink)} to wrap any sink with a buffer.
42 * <p>Sink is also easier to layer: there is no {@link
47 * Use {@link Okio#sink} to adapt an {@code OutputStream} to a sink. Use {@link
48 * BufferedSink#outputStream} to adapt a sink to an {@code OutputStream}.
50 public interface Sink extends Closeable {
58 * Sets the deadline for all operations on this sink.
59 * @return this sink
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
audiorenderer.h 36 class Sink {
49 virtual ~Sink() {}
52 // Sets a sink to the AudioRenderer. There can be only one sink connected
54 virtual void SetSink(Sink* sink) {}
61 // AudioRenderer::Sink interface.
67 // AudioRenderer::Sink interface.
  /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/chromium_org/content/renderer/media/
webrtc_audio_device_impl.h 238 // WebRtcPlayoutDataSource::Sink.
241 class Sink {
249 // Callback to notify the sink that the source has changed.
254 virtual ~Sink() {}
257 // Adds/Removes the sink of WebRtcAudioRendererSource to the ADM.
260 virtual void AddPlayoutSink(Sink* sink) = 0;
261 virtual void RemovePlayoutSink(Sink* sink) = 0;
358 typedef std::list<WebRtcPlayoutDataSource::Sink*> PlayoutDataSinkList
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/
doxia-sink-api-1.0-alpha-7.jar 
  /external/icu/icu4c/source/i18n/
collationruleparser.h 69 class U_I18N_API Sink : public UObject {
71 virtual ~Sink();
103 * The Sink must be set before parsing.
110 * Sets the pointer to a Sink object.
113 void setSink(Sink *sinkAlias) {
114 sink = sinkAlias;
186 Sink *sink; member in class:CollationRuleParser
collationruleparser.cpp 48 CollationRuleParser::Sink::~Sink() {}
51 CollationRuleParser::Sink::suppressContractions(const UnicodeSet &, const char *&, UErrorCode &) {}
54 CollationRuleParser::Sink::optimize(const UnicodeSet &, const char *&, UErrorCode &) {}
63 sink(NULL), importer(NULL),
201 sink->addReset(resetStrength, str, errorReason, errorCode);
284 sink->addRelation(strength, prefix, str, extension, errorReason, errorCode);
307 sink->addRelation(strength, empty, UnicodeString(c), empty, errorReason, errorCode);
349 sink->addRelation(strength, empty, s, empty, errorReason, errorCode);
667 sink->optimize(set, errorReason, errorCode)
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProvider.java 34 private final HashSet<Sink> mSinkSet = new HashSet<Sink>();
55 public interface Sink {
74 public void registerSink(Sink sink) {
75 Preconditions.checkNotNull(sink);
77 mSinkSet.add(sink);
83 public void unregisterSink(Sink sink) {
84 Preconditions.checkNotNull(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 137 Sink = 0x04 // Should this cl::list eat all unknown options?
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.inject-0.0.0.M5.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 2384 milliseconds