/external/llvm/lib/Fuzzer/test/ |
D | SwitchTest.cpp | 11 static volatile int Sink; variable 19 case 1: Sink = __LINE__; break; in Switch() 20 case 101: Sink = __LINE__; break; in Switch() 21 case 1001: Sink = __LINE__; break; in Switch() 22 case 10001: Sink = __LINE__; break; in Switch() 23 case 100001: Sink = __LINE__; break; in Switch() 24 case 1000001: Sink = __LINE__; break; in Switch() 25 case 10000001: Sink = __LINE__; break; in Switch() 36 case 42: Sink = __LINE__; break; in ShortSwitch() 37 case 402: Sink = __LINE__; break; in ShortSwitch() [all …]
|
D | LeakTimeoutTest.cpp | 8 static volatile int *Sink; variable 12 Sink = new int; in LLVMFuzzerTestOneInput() 13 Sink = new int; in LLVMFuzzerTestOneInput() 14 while (Sink) *Sink = 0; // Infinite loop. in LLVMFuzzerTestOneInput()
|
D | TimeoutTest.cpp | 10 static volatile int Sink; variable 14 Sink = 1; in LLVMFuzzerTestOneInput() 16 Sink = 2; in LLVMFuzzerTestOneInput() 18 Sink = 2; in LLVMFuzzerTestOneInput() 19 while (Sink) in LLVMFuzzerTestOneInput()
|
D | LeakTest.cpp | 8 static volatile void *Sink; variable 12 Sink = new int; in LLVMFuzzerTestOneInput() 13 Sink = nullptr; in LLVMFuzzerTestOneInput()
|
D | NullDerefTest.cpp | 10 static volatile int Sink; variable 15 Sink = 1; in LLVMFuzzerTestOneInput() 17 Sink = 2; in LLVMFuzzerTestOneInput()
|
D | SignedIntOverflowTest.cpp | 12 static volatile int Sink; variable 18 Sink = 1; in LLVMFuzzerTestOneInput() 20 Sink = 2; in LLVMFuzzerTestOneInput()
|
D | SimpleTest.cpp | 11 static volatile int Sink; variable 16 Sink = 1; in LLVMFuzzerTestOneInput() 18 Sink = 2; in LLVMFuzzerTestOneInput()
|
D | CustomMutatorTest.cpp | 13 static volatile int Sink; variable 18 Sink = 1; in LLVMFuzzerTestOneInput() 20 Sink = 2; in LLVMFuzzerTestOneInput()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | AbstractStreamingHasherTest.java | 44 Sink sink = new Sink(4); // byte order insignificant here in testBytes() 57 Sink sink = new Sink(4); in testShort() 65 Sink sink = new Sink(4); in testInt() 73 Sink sink = new Sink(8); in testLong() 81 Sink sink = new Sink(4); in testChar() 95 new Sink(4).putUnencodedChars(s).hash(), in testString() 96 new Sink(4).putBytes(s.getBytes(UTF_16LE)).hash()); in testString() 98 new Sink(4).putUnencodedChars(s).hash(), in testString() 99 new Sink(4).putString(s, UTF_16LE).hash()); in testString() 104 Sink sink = new Sink(4); in testFloat() [all …]
|
/external/skia/dm/ |
D | DMSrcSink.h | 86 struct Sink { struct 87 virtual ~Sink() {} in ~Sink() argument 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 { 452 class DebugSink : public Sink { [all …]
|
/external/skqp/dm/ |
D | DMSrcSink.h | 86 struct Sink { struct 87 virtual ~Sink() {} in ~Sink() argument 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 { 441 class DebugSink : public Sink { [all …]
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | Okio.java | 55 public static BufferedSink buffer(Sink sink) { in buffer() 61 public static Sink sink(OutputStream out) { in sink() 65 private static Sink sink(final OutputStream out, final Timeout timeout) { in sink() 69 return new Sink() { in sink() 112 public static Sink sink(Socket socket) throws IOException { 115 Sink sink = sink(socket.getOutputStream(), timeout); 177 public static Sink sink(File file) throws FileNotFoundException { 183 public static Sink appendingSink(File file) throws FileNotFoundException {
|
D | ForwardingSink.java | 21 public abstract class ForwardingSink implements Sink { 22 private final Sink delegate; 24 public ForwardingSink(Sink delegate) { in ForwardingSink() 30 public final Sink delegate() { in delegate()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
D | FileSystem.java | 22 import okio.Sink; 47 @Override public Sink sink(File file) throws FileNotFoundException { 57 @Override public Sink appendingSink(File file) throws FileNotFoundException { 112 Sink sink(File file) throws FileNotFoundException; in sink() 118 Sink appendingSink(File file) throws FileNotFoundException; in appendingSink()
|
/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/internal/io/ |
D | InMemoryFileSystem.java | 30 import okio.Sink; 40 private final Map<Sink, File> openSinks = new IdentityHashMap<>(); 83 @Override public Sink sink(File file) throws FileNotFoundException { 87 @Override public Sink appendingSink(File file) throws FileNotFoundException { 91 private Sink sink(File file, boolean appending) { 101 final Sink sink = result;
|
/external/webrtc/talk/media/base/ |
D | audiorenderer.h | 38 class Sink { 51 virtual ~Sink() {} in ~Sink() 56 virtual void SetSink(Sink* sink) {} in SetSink()
|
/external/webrtc/talk/app/webrtc/ |
D | remoteaudiosource.cc | 57 class RemoteAudioSource::Sink : public AudioSinkInterface { class in webrtc::RemoteAudioSource 59 explicit Sink(RemoteAudioSource* source) : source_(source) {} in Sink() function in webrtc::RemoteAudioSource::Sink 60 ~Sink() override { source_->OnAudioProviderGone(); } in ~Sink() 69 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Sink); 100 ssrc, rtc::scoped_ptr<AudioSinkInterface>(new Sink(this))); in Initialize()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
D | FaultyFileSystem.java | 26 import okio.Sink; 49 @Override public Sink sink(File file) throws FileNotFoundException { in sink() 53 @Override public Sink appendingSink(File file) throws FileNotFoundException { in appendingSink() 80 public FaultySink(Sink delegate, File file) { in FaultySink()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | RetryableSink.java | 22 import okio.Sink; 32 public final class RetryableSink implements Sink { 74 public void writeToSocket(Sink socketOut) throws IOException { in writeToSocket()
|
D | CacheRequest.java | 19 import okio.Sink; 22 Sink body() throws IOException; in body()
|
D | Http1xStream.java | 34 import okio.Sink; 87 @Override public Sink createRequestBody(Request request, long contentLength) throws IOException { in createRequestBody() 217 public Sink newChunkedSink() { in newChunkedSink() 223 public Sink newFixedLengthSink(long contentLength) { in newFixedLengthSink() 268 private final class FixedLengthSink implements Sink { 311 private final class ChunkedSink implements Sink {
|
D | HttpStream.java | 23 import okio.Sink; 34 Sink createRequestBody(Request request, long contentLength) throws IOException; in createRequestBody()
|
/external/okhttp/okio/okio/src/test/java/okio/ |
D | AsyncTimeoutTest.java | 183 Sink sink = new ForwardingSink(new Buffer()) { in wrappedSinkTimesOut() 194 Sink timeoutSink = timeout.sink(sink); in wrappedSinkTimesOut() 224 Sink sink = new ForwardingSink(new Buffer()) { in wrappedThrowsWithTimeout() 236 Sink timeoutSink = timeout.sink(sink); in wrappedThrowsWithTimeout() 247 Sink sink = new ForwardingSink(new Buffer()) { in wrappedThrowsWithoutTimeout() 254 Sink timeoutSink = timeout.sink(sink); in wrappedThrowsWithoutTimeout()
|
/external/icu/icu4c/source/i18n/ |
D | collationruleparser.h | 71 class U_I18N_API Sink : public UObject { 73 virtual ~Sink(); 116 void setSink(Sink *sinkAlias) { in setSink() 188 Sink *sink;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | FaultHidingSink.java | 6 import okio.Sink; 12 public FaultHidingSink(Sink delegate) { in FaultHidingSink()
|