Home
last modified time | relevance | path

Searched refs:snk (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/third_party/boost/boost/iostreams/
Dcopy.hpp54 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() argument
62 pair_type p2 = iostreams::output_sequence(snk); in copy_impl()
73 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() argument
86 iostreams::write(snk, p.first + total, size - total); in copy_impl()
94 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() argument
101 pair_type p = snk.output_sequence(); in copy_impl()
123 std::streamsize copy_impl( Source& src, Sink& snk, in copy_impl() argument
129 non_blocking_adapter<Sink> nb(snk); in copy_impl()
153 copy_operation(Source& src, Sink& snk, std::streamsize buffer_size) in copy_operation() argument
154 : src_(src), snk_(snk), buffer_size_(buffer_size) in copy_operation()
[all …]
Dclose.hpp44 void close(T& t, Sink& snk, BOOST_IOS::openmode which);
63 void close_all(T& t, Sink& snk) in close_all() argument
66 boost::iostreams::close(t, snk, BOOST_IOS::in); in close_all()
69 boost::iostreams::close(t, snk, BOOST_IOS::out); in close_all()
73 boost::iostreams::close(t, snk, BOOST_IOS::out); in close_all()
107 void close(T& t, Sink& snk, BOOST_IOS::openmode which) in close() argument
113 detail::close_all(t, snk); in close()
117 detail::close_impl<T>::close(detail::unwrap(t), snk, which); in close()
174 static void close(T& t, Sink& snk, BOOST_IOS::openmode which) in close()
177 non_blocking_adapter<Sink> nb(snk); in close()
[all …]
Dcombine.hpp65 combined_device(const Source& src, const Sink& snk);
111 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
112 { return boost::iostreams::write(out_, snk, s, n); } in write()
115 void close(Sink& snk, BOOST_IOS::openmode which) in close() argument
119 iostreams::close(in_, snk, BOOST_IOS::in); in close()
121 detail::close_all(in_, snk); in close()
126 iostreams::close(out_, snk, BOOST_IOS::out); in close()
128 detail::close_all(out_, snk); in close()
204 (const Source& src, const Sink& snk) in combined_device() argument
205 : src_(src), sink_(snk) { } in combined_device()
Dtee.hpp75 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
77 std::streamsize result = iostreams::write(snk, s, n); in write()
91 bool flush(Sink& snk) in flush() argument
93 bool r1 = iostreams::flush(snk); in flush()
207 tee_filter<Sink> tee(Sink& snk) in tee() argument
208 { return tee_filter<Sink>(snk); } in tee()
211 tee_filter<Sink> tee(const Sink& snk) in tee() argument
212 { return tee_filter<Sink>(snk); } in tee()
Dwrite.hpp53 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write() argument
55 { return detail::write_filter_impl<T>::write(detail::unwrap(t), snk, s, n); } in write()
140 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write()
142 { return t.write(snk, s, n); } in write()
149 write( T& t, Sink& snk, const typename char_type_of<T>::type* s, in write()
153 if (!t.put(snk, s[off])) in write()
Dflush.hpp44 bool flush(T& t, Sink& snk) in flush() argument
45 { return detail::flush_filter_impl<T>::flush(detail::unwrap(t), snk); } in flush()
110 static bool flush(T& t, Sink& snk) { return t.flush(snk); } in flush()
Dinvert.hpp87 filtered_array_sink snk(filter(), array_sink(s, n)); in read() local
90 snk.second().count() < n && status == traits_type::good(); ) in read()
93 buf().flush(snk); in read()
95 return snk.second().count() == 0 && in read()
100 snk.second().count(); in read()
Dcompose.hpp170 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
172 composite_device<filter_ref, Sink> cmp(boost::ref(filter2_), snk); in write()
/third_party/boost/boost/iostreams/detail/
Dfunctional.hpp50 filter_close_operation(T& t, Sink& snk, BOOST_IOS::openmode which) in filter_close_operation() argument
51 : t_(t), snk_(snk), which_(which) in filter_close_operation()
68 call_close(T& t, Sink& snk, BOOST_IOS::openmode which) in call_close() argument
69 { return filter_close_operation<T, Sink>(t, snk, which); } in call_close()
89 filter_close_all_operation(T& t, Sink& snk) : t_(t), snk_(snk) { } in filter_close_all_operation() argument
103 call_close_all(T& t, Sink& snk) in call_close_all() argument
104 { return filter_close_all_operation<T, Sink>(t, snk); } in call_close_all()
Drestrict_impl.hpp159 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
162 open(snk, BOOST_IOS::out); in write()
166 snk, s, end_ - pos_); in write()
170 iostreams::write(this->component(), snk, s, n); in write()
/third_party/boost/boost/iostreams/filter/
Dline.hpp92 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
99 if (pos_ != string_type::npos && !write_line(snk)) in write()
111 if (!write_line(snk)) in write()
121 void close(Sink& snk, BOOST_IOS::openmode which) in close() argument
129 write_line(snk); in close()
178 bool write_line(Sink& snk) in write_line() argument
184 bool result = iostreams::write_if(snk, line.data(), amt) == amt; in write_line()
Dsymmetric.hpp141 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
149 if (buf.ptr() == buf.eptr() && !flush(snk)) in write()
152 flush(snk); in write()
160 void close(Sink& snk, BOOST_IOS::openmode mode) in close() argument
177 flush(snk); in close()
218 bool flush(Sink& snk) in flush() argument
222 return flush(snk, can_write()); in flush()
226 bool flush(Sink& snk, mpl::true_) in flush() argument
231 boost::iostreams::write(snk, buf().data(), amt); in flush()
Dgzip.hpp236 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
241 offset_ += boost::iostreams::write_if(snk, header_.data() + offset_, amt); in write()
247 return base_type::write(snk, s, n); in write()
251 void close(Sink& snk, BOOST_IOS::openmode m) in close() argument
255 this->write(snk, 0, 0); in close()
258 base_type::close(snk, m); in close()
264 write_long(this->crc(), snk); in close()
265 write_long(this->total_in(), snk); in close()
417 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
434 base_type::write(snk, s + result, n - result); in write()
[all …]
Dcounter.hpp61 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
63 std::streamsize result = iostreams::write(snk, s, n); in write()
Dgrep.hpp61 void close(Sink& snk, BOOST_IOS::openmode which) in close() argument
63 base_type::close(snk, which); in close()
/third_party/grpc/src/csharp/keys/
DREADME.md4 - Grpc.public.snk:
6 - Grpc.snk:
/third_party/protobuf/csharp/keys/
DREADME.md4 - Google.Protobuf.public.snk:
6 - Google.Protobuf.snk:
/third_party/boost/boost/iostreams/detail/adapter/
Dconcept_adapter.hpp84 std::streamsize write(const char_type* s, std::streamsize n, Sink* snk) in write() argument
85 { return output_impl::write(t_, snk, s, n); } in write()
276 write( Filter& f, Sink* snk, const typename char_type_of<Filter>::type* s, in write()
278 { return iostreams::write(f, *snk, s, n); } in write()
Dmode_adapter.hpp63 std::streamsize write(Sink& snk, const char_type* s, std::streamsize n) in write() argument
64 { return iostreams::write(t_, snk, s, n); } in write()
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
DGoogle.Protobuf.Benchmarks.csproj6 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DGoogle.Protobuf.Test.csproj6 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DGoogle.Protobuf.Test.csproj5 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/
DGoogle.Protobuf.Test.TestProtos.csproj11 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/
Daz_Cyrl.txt322 snk{"сонинке"}
/third_party/skia/third_party/externals/icu/source/data/lang/
Daz_Cyrl.txt322 snk{"сонинке"}

12345678910>>...15