Home
last modified time | relevance | path

Searched refs:Sink (Results 1 - 25 of 101) sorted by relevance

12345

/third_party/json/tests/thirdparty/Fuzzer/test/
H A DSwitchTest.cpp11 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 in ShortSwitch()
[all...]
H A DLeakTimeoutTest.cpp8 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()
H A DTimeoutTest.cpp10 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()
H A DLeakTest.cpp8 static volatile void *Sink; variable
12 Sink = new int; in LLVMFuzzerTestOneInput()
13 Sink = nullptr; in LLVMFuzzerTestOneInput()
H A DNullDerefTest.cpp10 static volatile int Sink; variable
15 Sink = 1; in LLVMFuzzerTestOneInput()
17 Sink = 2; in LLVMFuzzerTestOneInput()
H A DSimpleTest.cpp11 static volatile int Sink; variable
16 Sink = 1; in LLVMFuzzerTestOneInput()
18 Sink = 2; in LLVMFuzzerTestOneInput()
H A DSignedIntOverflowTest.cpp12 static volatile int Sink; variable
18 Sink = 1; in LLVMFuzzerTestOneInput()
20 Sink = 2; in LLVMFuzzerTestOneInput()
H A DCustomMutatorTest.cpp13 static volatile int Sink; variable
18 Sink = 1; in LLVMFuzzerTestOneInput()
20 Sink = 2; in LLVMFuzzerTestOneInput()
H A DDivTest.cpp11 static volatile int Sink; variable
17 Sink = 12345678 / (987654 - a); in LLVMFuzzerTestOneInput()
H A DThreadedLeakTest.cpp9 static volatile int *Sink; variable
14 std::thread T([&] { Sink = new int; }); in LLVMFuzzerTestOneInput()
H A DLoadTest.cpp11 static volatile int Sink; variable
19 Sink = array[a % (kArraySize + 1)]; in LLVMFuzzerTestOneInput()
H A DStrncmpOOBTest.cpp12 static volatile int Sink; variable
18 Sink = strncmp(Ch + Size - 3, "abcdefg", 6); in LLVMFuzzerTestOneInput()
H A DShrinkControlFlowTest.cpp11 static volatile int Sink; variable
23 Sink++; in LLVMFuzzerTestOneInput()
H A DShrinkValueProfileTest.cpp11 static volatile uint32_t Sink; variable
19 Sink = X == Y; in LLVMFuzzerTestOneInput()
/third_party/skia/modules/skottie/src/
H A DSkottieTool.cpp63 class Sink { class
65 Sink() = default;
66 virtual ~Sink() = default;
67 Sink(const Sink&) = delete;
68 Sink& operator=(const Sink&) = delete;
74 class PNGSink final : public Sink {
76 static std::unique_ptr<Sink> Make(const SkMatrix& scale_matrix) { in Make()
83 return std::unique_ptr<Sink>(ne in Make()
[all...]
/third_party/skia/dm/
H A DDMSrcSink.h110 struct Sink { struct
111 virtual ~Sink() {} in ~Sink()
116 // Override the color space of this Sink, after creation
119 // Force Tasks using this Sink to run on the main thread?
376 class NullSink : public Sink {
385 class GPUSink : public Sink {
521 class PDFSink : public Sink {
531 class XPSSink : public Sink {
540 class RasterSink : public Sink {
554 class SKPSink : public Sink {
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dcollationruleparser.h71 class U_I18N_API Sink : public UObject { class in CollationRuleParser
73 virtual ~Sink();
106 * The Sink must be set before parsing.
113 * Sets the pointer to a Sink object.
116 void setSink(Sink *sinkAlias) { in setSink()
188 Sink *sink;
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationruleparser.h71 class U_I18N_API Sink : public UObject { class in CollationRuleParser
73 virtual ~Sink();
106 * The Sink must be set before parsing.
113 * Sets the pointer to a Sink object.
116 void setSink(Sink *sinkAlias) { in setSink()
188 Sink *sink;
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationruleparser.h71 class U_I18N_API Sink : public UObject { class in CollationRuleParser
73 virtual ~Sink();
106 * The Sink must be set before parsing.
113 * Sets the pointer to a Sink object.
116 void setSink(Sink *sinkAlias) { in setSink()
188 Sink *sink;
/third_party/node/test/fixtures/wpt/streams/writable-streams/
H A Dproperties.any.js42 function Sink() {}
43 Sink.prototype = {
48 const ws = new WritableStream(new Sink());
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-iter.hh786 template <typename Sink>
789 hb_sink_t (Sink s) : s (s) {} in hb_sink_t()
800 Sink s;
804 template <typename Sink> hb_sink_t<Sink>
805 operator () (Sink&& s) const in operator ()()
806 { return hb_sink_t<Sink> (s); } in operator ()()
808 template <typename Sink> hb_sink_t<Sink&>
809 operator () (Sink *
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp111 if (Use *Sink = RS.getSelection()) { in connectToSink()
112 User *U = Sink->getUser(); in connectToSink()
113 unsigned OpNo = Sink->getOperandNo(); in connectToSink()
/third_party/node/test/parallel/
H A Dtest-crypto-authenticated-stream.js14 class Sink extends stream.Writable {
50 const crypt = new Sink();
61 const plain = new Sink();
/third_party/skia/third_party/externals/abseil-cpp/absl/functional/
H A Dbind_front_test.cc168 int Sink(std::unique_ptr<int> p) { in Sink() function
175 EXPECT_EQ(42, absl::bind_front(Sink)(absl::make_unique<int>(42))); in TEST()
176 EXPECT_EQ(42, absl::bind_front(Sink, absl::make_unique<int>(42))()); in TEST()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/range/
H A DStandardPluralRanges.java37 private static final class PluralRangeSetsDataSink extends UResource.Sink {
74 private static final class PluralRangesDataSink extends UResource.Sink {

Completed in 10 milliseconds

12345