/external/llvm/lib/Fuzzer/test/ |
D | SwitchTest.cpp | 8 static volatile int Sink; variable 16 case 1: Sink = __LINE__; break; in Switch() 17 case 101: Sink = __LINE__; break; in Switch() 18 case 1001: Sink = __LINE__; break; in Switch() 19 case 10001: Sink = __LINE__; break; in Switch() 20 case 100001: Sink = __LINE__; break; in Switch() 21 case 1000001: Sink = __LINE__; break; in Switch() 22 case 10000001: Sink = __LINE__; break; in Switch() 33 case 42: Sink = __LINE__; break; in ShortSwitch() 34 case 402: Sink = __LINE__; break; in ShortSwitch() [all …]
|
D | TimeoutTest.cpp | 7 static volatile int Sink; variable 11 Sink = 1; in LLVMFuzzerTestOneInput() 13 Sink = 2; in LLVMFuzzerTestOneInput() 15 Sink = 2; in LLVMFuzzerTestOneInput() 16 while (Sink) in LLVMFuzzerTestOneInput()
|
D | NullDerefTest.cpp | 7 static volatile int Sink; variable 12 Sink = 1; in LLVMFuzzerTestOneInput() 14 Sink = 2; in LLVMFuzzerTestOneInput()
|
D | SimpleTest.cpp | 8 static volatile int Sink; variable 13 Sink = 1; in LLVMFuzzerTestOneInput() 15 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 | 73 struct Sink { struct 74 virtual ~Sink() {} in ~Sink() argument 203 class NullSink : public Sink { 213 class GPUSink : public Sink { 230 class PDFSink : public Sink { 241 class XPSSink : public Sink { 250 class RasterSink : public Sink { 261 class SKPSink : public Sink { 270 class SVGSink : public Sink { 282 class Via : public Sink { [all …]
|
D | DMSrcSinkAndroid.h | 21 class HWUISink : public Sink { 35 class ViaAndroidSDK : public Sink { 37 explicit ViaAndroidSDK(Sink*); 49 SkAutoTDelete<Sink> fSink;
|
/external/okhttp/okio/okio/src/main/java/okio/ |
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()
|
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 | AsyncTimeout.java | 149 public final Sink sink(final Sink sink) { in sink() 150 return new Sink() { in sink()
|
D | GzipSink.java | 38 public final class GzipSink implements Sink { 56 public GzipSink(Sink sink) { in GzipSink()
|
/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/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 | Transport.java | 23 import okio.Sink; 34 Sink createRequestBody(Request request, long contentLength) throws IOException; in createRequestBody()
|
D | HttpConnection.java | 35 import okio.Sink; 225 public Sink newChunkedSink() { in newChunkedSink() 231 public Sink newFixedLengthSink(long contentLength) { in newFixedLengthSink() 282 private final class FixedLengthSink implements Sink { 325 private final class ChunkedSink implements Sink {
|
D | HttpTransport.java | 24 import okio.Sink; 36 @Override public Sink createRequestBody(Request request, long contentLength) throws IOException { in createRequestBody()
|
/external/icu/icu4c/source/i18n/ |
D | collationruleparser.h | 69 class U_I18N_API Sink : public UObject { 71 virtual ~Sink(); 114 void setSink(Sink *sinkAlias) { in setSink() 186 Sink *sink;
|
/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/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/internal/io/ |
D | InMemoryFileSystem.java | 25 import okio.Sink; 38 @Override public Sink sink(File file) throws FileNotFoundException { in sink() 44 @Override public Sink appendingSink(File file) throws FileNotFoundException { in appendingSink()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | FaultHidingSink.java | 6 import okio.Sink; 12 public FaultHidingSink(Sink delegate) { in FaultHidingSink()
|
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/ |
D | CacheAdapter.java | 32 import okio.Sink; 62 @Override public Sink body() throws IOException { in put()
|