HomeSort by relevance Sort by last modified time
    Searched refs:Sink (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/lib/Fuzzer/test/
LeakTimeoutTest.cpp 8 static volatile int *Sink;
12 Sink = new int;
13 Sink = new int;
14 while (Sink) *Sink = 0; // Infinite loop.
TimeoutTest.cpp 10 static volatile int Sink;
14 Sink = 1;
16 Sink = 2;
18 Sink = 2;
19 while (Sink)
LeakTest.cpp 8 static volatile void *Sink;
12 Sink = new int;
13 Sink = nullptr;
SwitchTest.cpp 11 static volatile int Sink;
19 case 1: Sink = __LINE__; break;
20 case 101: Sink = __LINE__; break;
21 case 1001: Sink = __LINE__; break;
22 case 10001: Sink = __LINE__; break;
23 case 100001: Sink = __LINE__; break;
24 case 1000001: Sink = __LINE__; break;
25 case 10000001: Sink = __LINE__; break;
36 case 42: Sink = __LINE__; break;
37 case 402: Sink = __LINE__; break
    [all...]
NullDerefTest.cpp 10 static volatile int Sink;
15 Sink = 1;
17 Sink = 2;
SignedIntOverflowTest.cpp 12 static volatile int Sink;
18 Sink = 1;
20 Sink = 2;
SimpleTest.cpp 11 static volatile int Sink;
16 Sink = 1;
18 Sink = 2;
CustomMutatorTest.cpp 13 static volatile int Sink;
18 Sink = 1;
20 Sink = 2;
  /external/webrtc/talk/media/base/
audiorenderer.h 38 class Sink {
51 virtual ~Sink() {}
54 // Sets a sink to the AudioRenderer. There can be only one sink connected
56 virtual void SetSink(Sink* sink) {}
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheRequest.java 19 import okio.Sink;
22 Sink body() throws IOException;
HttpStream.java 23 import okio.Sink;
34 Sink createRequestBody(Request request, long contentLength) throws IOException;
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StatelessTestOp.java 37 public Sink opWrapSink(int flags, Sink<T> sink) {
38 return op.opWrapSink(flags, isParallel(), sink);
43 public Sink opWrapSink(int flags, Sink sink) {
44 return op.opWrapSink(flags, isParallel(), sink);
50 public Sink opWrapSink(int flags, Sink sink)
    [all...]
FlagDeclaringOp.java 58 public Sink<T> opWrapSink(int flags, boolean parallel, Sink sink) {
59 return sink;
StatefulTestOp.java 40 public Sink opWrapSink(int flags, Sink sink) {
41 return op.opWrapSink(flags, isParallel(), sink);
60 public Sink opWrapSink(int flags, Sink sink) {
61 return op.opWrapSink(flags, isParallel(), sink);
80 public Sink opWrapSink(int flags, Sink sink)
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 20 /** A {@link Sink} which forwards calls to another. Useful for subclassing. */
21 public abstract class ForwardingSink implements Sink {
22 private final Sink delegate;
24 public ForwardingSink(Sink delegate) {
29 /** {@link Sink} to which this instance is delegating. */
30 public final Sink delegate() {
Sink.java 28 * <p>Most application code shouldn't operate on a sink directly, but rather
30 * {@link Okio#buffer(Sink)} to wrap any sink with a buffer.
43 * <p>Sink is also easier to layer: there is no {@linkplain
48 * Use {@link Okio#sink} to adapt an {@code OutputStream} to a sink. Use {@link
49 * BufferedSink#outputStream} to adapt a sink to an {@code OutputStream}.
51 public interface Sink extends Closeable, Flushable {
58 /** Returns the timeout for this sink. */
63 * resources held by this sink. It is an error to write a closed sink. It i
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
Sink.java 37 * {@code Sink} for the first time, you must first call the {@code begin()}
38 * method to inform it that data is coming (optionally informing the sink how
41 * {@code accept()} without again calling {@code begin()}. {@code Sink} also
42 * offers a mechanism by which the sink can cooperatively signal that it does
45 * {@code Sink}.
47 * <p>A sink may be in one of two states: an initial state and an active state.
71 * <p>A {@code Sink} instance is used to represent each stage of this pipeline,
72 * whether the stage accepts objects, ints, longs, or doubles. Sink has entry
75 * might be called a "kitchen sink" for this omnivorous tendency.) The entry
76 * point to the pipeline is the {@code Sink} for the filtering stage, whic
    [all...]
TerminalSink.java 30 * A {@link Sink} which accumulates state as elements are accepted, and allows
38 interface TerminalSink<T, R> extends Sink<T>, Supplier<R> { }
PipelineHelper.java 48 * such as {@link #wrapAndCopyInto(Sink, Spliterator)},
49 * {@link #copyInto(Sink, Spliterator)}, and {@link #wrapSink(Sink)} to execute
97 * {@code Sink}.
102 * intoWrapped(wrapSink(sink), spliterator);
105 * @param sink the {@code Sink} to receive the results
108 abstract<P_IN, S extends Sink<P_OUT>> S wrapAndCopyInto(S sink, Spliterator<P_IN> spliterator);
112 * {@code Sink}. If the stream pipeline is known to have short-circuitin
    [all...]
LongPipeline.java 96 * Adapt a {@code Sink<Long> to an {@code LongConsumer}, ideally simply
99 private static LongConsumer adapt(Sink<Long> sink) {
100 if (sink instanceof LongConsumer) {
101 return (LongConsumer) sink;
105 "using LongStream.adapt(Sink<Long> s)");
106 return sink::accept;
158 public final void forEachWithCancel(Spliterator<Long> spliterator, Sink<Long> sink) {
160 LongConsumer adaptedSink = adapt(sink);
    [all...]
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
StatelessTestOp.java 31 import java.util.stream.Sink;
46 public Sink opWrapSink(int flags, Sink<T> sink) {
47 return op.opWrapSink(flags, isParallel(), sink);
53 public Sink opWrapSink(int flags, Sink sink) {
54 return op.opWrapSink(flags, isParallel(), sink);
60 public Sink opWrapSink(int flags, Sink sink)
    [all...]
FlagDeclaringOp.java 25 import java.util.stream.Sink;
61 public Sink<T> opWrapSink(int flags, boolean parallel, Sink sink) {
62 return sink;
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 44 Sink sink = new Sink(4); // byte order insignificant here local
46 sink.putByte((byte) 1);
47 sink.putBytes(new byte[] { 2, 3, 4, 5, 6 });
48 sink.putByte((byte) 7);
49 sink.putBytes(new byte[] {});
50 sink.putBytes(new byte[] { 8 });
51 sink.hash();
52 sink.assertInvariants(8)
57 Sink sink = new Sink(4); local
65 Sink sink = new Sink(4); local
73 Sink sink = new Sink(8); local
81 Sink sink = new Sink(4); local
104 Sink sink = new Sink(4); local
112 Sink sink = new Sink(8); local
120 Sink sink = new Sink(4); local
    [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/skia/dm/
DMSrcSink.h 84 struct Sink {
85 virtual ~Sink() {}
90 // Force Tasks using this Sink to run on the main thread?
296 class NullSink : public Sink {
306 class GPUSink : public Sink {
331 class PDFSink : public Sink {
340 class XPSSink : public Sink {
349 class PipeSink : public Sink {
358 class RasterSink : public Sink {
370 class SKPSink : public Sink {
    [all...]

Completed in 328 milliseconds

1 2 3 4 5 6 7 8