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

1 2 3 4

  /external/llvm/lib/Fuzzer/test/
LeakTest.cpp 8 static volatile void *Sink;
12 Sink = new int;
13 Sink = nullptr;
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)
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;
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...]
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/okio/okio/src/main/java/okio/
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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21048.go 26 var Source, Sink T
40 Sink.a = Source.a
41 Sink.b = Source.b
42 Sink.c = Source.c
43 Sink.d = Source.d
44 Sink.e = Source.e
61 Sink.a = t.a
62 Sink.b = t.b
63 Sink.c = t.c
64 Sink.d = t.
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue21048.go 26 var Source, Sink T
40 Sink.a = Source.a
41 Sink.b = Source.b
42 Sink.c = Source.c
43 Sink.d = Source.d
44 Sink.e = Source.e
61 Sink.a = t.a
62 Sink.b = t.b
63 Sink.c = t.c
64 Sink.d = t.
    [all...]
  /external/webrtc/talk/app/webrtc/
remoteaudiosource.cc 57 class RemoteAudioSource::Sink : public AudioSinkInterface {
59 explicit Sink(RemoteAudioSource* source) : source_(source) {}
60 ~Sink() override { source_->OnAudioProviderGone(); }
69 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Sink);
100 ssrc, rtc::scoped_ptr<AudioSinkInterface>(new Sink(this)));
132 void RemoteAudioSource::AddSink(AudioTrackSinkInterface* sink) {
134 RTC_DCHECK(sink);
137 LOG(LS_ERROR) << "Can't register sink as the source isn't live.";
142 RTC_DCHECK(std::find(sinks_.begin(), sinks_.end(), sink) == sinks_.end());
143 sinks_.push_back(sink);
    [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...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/
doxia-sink-api-1.0.jar 
  /external/icu/icu4c/source/i18n/
collationruleparser.h 71 class U_I18N_API Sink : public UObject {
73 virtual ~Sink();
106 * The Sink must be set before parsing.
113 * Sets the pointer to a Sink object.
116 void setSink(Sink *sinkAlias) {
117 sink = sinkAlias;
188 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);
669 sink->optimize(set, errorReason, errorCode)
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProvider.java 35 private final HashSet<Sink> mSinkSet = new HashSet<>();
57 public interface Sink {
76 public void registerSink(Sink sink) {
77 Preconditions.checkNotNull(sink);
79 mSinkSet.add(sink);
85 public void unregisterSink(Sink sink) {
86 Preconditions.checkNotNull(sink);
88 mSinkSet.remove(sink);
    [all...]
  /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...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UResource.java 451 * Sink for ICU resource bundle contents.
453 public static abstract class Sink {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UResource.java 449 * Sink for ICU resource bundle contents.
451 public static abstract class Sink {
  /prebuilts/go/darwin-x86/test/
escape_param.go 14 var sink interface{} var
28 sink = param0(&i) // ERROR "&i escapes to heap$" "param0\(&i\) escapes to heap"
39 sink, _ = param1(&i, &j) // ERROR "&i escapes to heap$" "caller1 &j does not escape$"
58 sink = p // ERROR "p escapes to heap$"
84 sink = p // ERROR "p escapes to heap$"
103 sink = p // ERROR "p escapes to heap$"
108 sink = i // ERROR "i escapes to heap$"
118 sink = *i // ERROR "\*i escapes to heap$"
130 sink = **i // ERROR "\* \(\*i\) escapes to heap"
142 sink = **i // ERROR "\* \(\*i\) escapes to heap
    [all...]
  /prebuilts/go/linux-x86/test/
escape_param.go 14 var sink interface{} var
28 sink = param0(&i) // ERROR "&i escapes to heap$" "param0\(&i\) escapes to heap"
39 sink, _ = param1(&i, &j) // ERROR "&i escapes to heap$" "caller1 &j does not escape$"
58 sink = p // ERROR "p escapes to heap$"
84 sink = p // ERROR "p escapes to heap$"
103 sink = p // ERROR "p escapes to heap$"
108 sink = i // ERROR "i escapes to heap$"
118 sink = *i // ERROR "\*i escapes to heap$"
130 sink = **i // ERROR "\* \(\*i\) escapes to heap"
142 sink = **i // ERROR "\* \(\*i\) escapes to heap
    [all...]
  /external/skia/dm/
DMSrcSink.h 86 struct Sink {
87 virtual ~Sink() {}
92 // Force Tasks using this Sink to run on the main thread?
329 class NullSink : public Sink {
339 class GPUSink : public Sink {
392 class PDFSink : public Sink {
402 class XPSSink : public Sink {
411 class PipeSink : public Sink {
420 class RasterSink : public Sink {
443 class SKPSink : public Sink {
    [all...]
  /external/skqp/dm/
DMSrcSink.h 86 struct Sink {
87 virtual ~Sink() {}
92 // Force Tasks using this Sink to run on the main thread?
329 class NullSink : public Sink {
339 class GPUSink : public Sink {
392 class PDFSink : public Sink {
402 class XPSSink : public Sink {
411 class PipeSink : public Sink {
420 class RasterSink : public Sink {
432 class SKPSink : public Sink {
    [all...]

Completed in 507 milliseconds

1 2 3 4