/third_party/boost/boost/iostreams/ |
D | tee.hpp | 74 template<typename Sink> 75 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() 90 template<typename Sink> 91 bool flush(Sink& snk) in flush() 106 template<typename Device, typename Sink> 110 typedef typename detail::param_type<Sink>::type sink_param; 112 typedef typename detail::value_type<Sink>::type sink_value; 125 BOOST_STATIC_ASSERT(is_device<Sink>::value); 129 BOOST_DEDUCED_TYPENAME char_type_of<Sink>::type 134 BOOST_DEDUCED_TYPENAME iostreams::category_of<Sink>::type, [all …]
|
D | copy.hpp | 53 template<typename Source, typename Sink> 54 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() 72 template<typename Source, typename Sink> 73 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() 93 template<typename Source, typename Sink> 94 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() 122 template<typename Source, typename Sink> 123 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() 129 non_blocking_adapter<Sink> nb(snk); in copy_impl() 149 template<typename Source, typename Sink> [all …]
|
D | combine.hpp | 46 template<typename Source, typename Sink> 50 typedef typename category_of<Sink>::type out_category; 51 typedef typename char_type_of<Sink>::type sink_char_type; 61 BOOST_STATIC_ASSERT(is_device<Sink>::value); 65 combined_device(const Source& src, const Sink& snk); 74 Sink sink_; 110 template<typename Sink> 111 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() 114 template<typename Sink> 115 void close(Sink& snk, BOOST_IOS::openmode which) in close() [all …]
|
D | close.hpp | 43 template<typename T, typename Sink> 44 void close(T& t, Sink& snk, BOOST_IOS::openmode which); 62 template<typename T, typename Sink> 63 void close_all(T& t, Sink& snk) in close_all() 106 template<typename T, typename Sink> 107 void close(T& t, Sink& snk, BOOST_IOS::openmode which) in close() 173 template<typename T, typename Sink> 174 static void close(T& t, Sink& snk, BOOST_IOS::openmode which) in close() 177 non_blocking_adapter<Sink> nb(snk); in close() 222 template<typename T, typename Sink> [all …]
|
D | flush.hpp | 43 template<typename T, typename Sink> 44 bool flush(T& t, Sink& snk) in flush() 109 template<typename T, typename Sink> 110 static bool flush(T& t, Sink& snk) { return t.flush(snk); } in flush() 115 template<typename T, typename Sink> 116 static bool flush(T&, Sink&) { return false; } in flush()
|
D | write.hpp | 51 template<typename T, typename Sink> 53 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write() 138 template<typename T, typename Sink> 140 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write() 147 template<typename T, typename Sink> 149 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write()
|
/third_party/json/test/thirdparty/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() 25 case 10000001: Sink = __LINE__; break; in Switch() 36 case 42: Sink = __LINE__; break; in ShortSwitch() 37 case 402: Sink = __LINE__; break; in ShortSwitch() 38 case 4002: Sink = __LINE__; break; in ShortSwitch() 39 case 5002: 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()
|
/third_party/boost/boost/iostreams/detail/ |
D | functional.hpp | 46 template<typename T, typename Sink> 50 filter_close_operation(T& t, Sink& snk, BOOST_IOS::openmode which) in filter_close_operation() 57 Sink& snk_; 66 template<typename T, typename Sink> 67 filter_close_operation<T, Sink> 68 call_close(T& t, Sink& snk, BOOST_IOS::openmode which) in call_close() 69 { return filter_close_operation<T, Sink>(t, snk, which); } in call_close() 85 template<typename T, typename Sink> 89 filter_close_all_operation(T& t, Sink& snk) : t_(t), snk_(snk) { } in filter_close_all_operation() 94 Sink& snk_; [all …]
|
/third_party/boost/libs/iostreams/test/detail/ |
D | filters.hpp | 49 template<typename Sink> 50 bool put(Sink& s, char c) in put() 74 template<typename Sink> 75 std::streamsize write(Sink& s, const char* buf, std::streamsize n) in write() 109 template<typename Sink> 110 bool put(Sink& s, char c) in put() 136 template<typename Sink> 137 bool put(Sink&, char c) in put() 142 template<typename Sink> 143 bool flush(Sink& s) in flush() [all …]
|
D | closable.hpp | 220 template<typename Sink> 221 bool put(Sink&, char) { return true; } in put() argument 223 template<typename Sink> 224 void close(Sink&) { close_.execute(); } in close() argument 240 template<typename Sink> 241 bool put(Sink&, char) { return true; } in put() argument 272 template<typename Sink> 273 bool put(Sink&, char) { return true; } in put() argument 304 template<typename Sink> 305 bool put(Sink&, char) { return true; } in put() argument
|
/third_party/boost/boost/iostreams/filter/ |
D | aggregate.hpp | 74 template<typename Sink> 75 std::streamsize write(Sink&, const char_type* s, std::streamsize n) in write() argument 83 template<typename Sink> 84 void close(Sink& sink, BOOST_IOS::openmode which) in close() 128 template<typename Sink> 129 void do_write(Sink& sink, const char_type* s, std::streamsize n) in do_write() 131 typedef typename iostreams::category_of<Sink>::type category; in do_write() 136 template<typename Sink> 137 void do_write(Sink& sink, const char_type* s, std::streamsize n, mpl::true_) in do_write() 140 template<typename Sink> [all …]
|
D | symmetric.hpp | 140 template<typename Sink> 141 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() 159 template<typename Sink> 160 void close(Sink& snk, BOOST_IOS::openmode mode) in close() 217 template<typename Sink> 218 bool flush(Sink& snk) in flush() 220 typedef typename iostreams::category_of<Sink>::type category; in flush() 225 template<typename Sink> 226 bool flush(Sink& snk, mpl::true_) in flush() 238 template<typename Sink> [all …]
|
D | newline.hpp | 184 template<typename Sink> 185 bool put(Sink& dest, char c) in put() 214 template<typename Sink> 215 void close(Sink& dest, BOOST_IOS::openmode) in close() 247 template<typename Sink> 248 bool newline(Sink& dest) in newline() 284 template<typename Sink> 285 void newline_if_sink(Sink& dest, mpl::true_) { newline(dest); } in newline_if_sink() 361 template<typename Sink> 362 bool put(Sink& dest, int c) in put() [all …]
|
/third_party/boost/libs/iostreams/example/ |
D | line_wrapping_filter.hpp | 76 template<typename Sink> 77 void close(Sink&) in close() argument 103 template<typename Sink> 104 bool put(Sink& dest, int c) in put() 111 template<typename Sink> 112 void close(Sink&) { col_no_ = 0; } in close() argument 114 template<typename Sink> 115 bool put_char(Sink& dest, int c) in put_char()
|
D | unix2dos_filter.hpp | 64 template<typename Sink> 65 bool put(Sink& dest, int c) in put() 76 template<typename Sink> 77 void close(Sink&) { has_linefeed_ = false; } in close() argument 79 template<typename Sink> 80 bool put_char(Sink& dest, int c) in put_char()
|
D | tab_expanding_filter.hpp | 115 template<typename Sink> 116 bool put(Sink& dest, int c) in put() 130 template<typename Sink> 131 void close(Sink&) in close() argument 137 template<typename Sink> 138 bool put_char(Sink& dest, int c) in put_char()
|
D | shell_comments_filter.hpp | 84 template<typename Sink> 85 bool put(Sink& dest, int c) in put() 130 template<typename Sink> 131 bool put(Sink& dest, int c) in put() 194 template<typename Sink> 195 std::streamsize write(Sink& dest, const char* s, std::streamsize n) in write()
|
/third_party/flutter/skia/modules/skottie/src/ |
D | SkottieTool.cpp | 35 class Sink { class 37 virtual ~Sink() = default; 38 Sink(const Sink&) = delete; 39 Sink& operator=(const Sink&) = delete; 55 Sink(const char* ext) : fExtension(ext) {} in Sink() function in __anonb12106730111::Sink 63 class PNGSink final : public Sink { 98 using INHERITED = Sink; 101 class SKPSink final : public Sink { 121 using INHERITED = Sink; 177 std::unique_ptr<Sink> sink; in main()
|
/third_party/skia/modules/skottie/src/ |
D | SkottieTool.cpp | 63 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>(new PNGSink(std::move(surface), scale_matrix)); in Make() 118 class SKPSink final : public Sink { 120 static std::unique_ptr<Sink> Make(const SkMatrix& scale_matrix) { in Make() [all …]
|
/third_party/flutter/skia/dm/ |
D | DMSrcSink.h | 85 struct Sink { struct 86 virtual ~Sink() {} in ~Sink() argument 320 class NullSink : public Sink { 329 class GPUSink : public Sink { 415 class PDFSink : public Sink { 425 class XPSSink : public Sink { 434 class RasterSink : public Sink { 453 class SKPSink : public Sink { 462 class DebugSink : public Sink { 469 class SVGSink : public Sink { [all …]
|
/third_party/grpc/third_party/upb/upb/ |
D | sink.h | 28 class Sink; variable 239 class upb::Sink { 242 Sink() {} in Sink() function 244 Sink(const Sink&) = default; 245 Sink& operator=(const Sink&) = default; 247 Sink(const upb_sink& sink) : sink_(sink) {} in Sink() function 248 Sink &operator=(const upb_sink &sink) { 259 template <class T> Sink(const upb_handlers* handlers, T* closure) { in Sink() function 335 bool StartString(HandlersPtr::Selector s, size_t size_hint, Sink* sub) { in StartString() 356 bool StartSubMessage(HandlersPtr::Selector s, Sink* sub) { in StartSubMessage() [all …]
|
/third_party/skia/dm/ |
D | DMSrcSink.h | 110 struct Sink { struct 111 virtual ~Sink() {} in ~Sink() argument 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 { 563 class DebugSink : public Sink { 570 class SVGSink : public Sink { [all …]
|