Home
last modified time | relevance | path

Searched refs:s_ (Results 1 – 25 of 129) sorted by relevance

123456

/third_party/grpc/src/core/ext/transport/chttp2/transport/
Dwriting.cc322 s_(s), in DataSendContext()
323 sending_bytes_before_(s_->sending_bytes) {} in DataSendContext()
327 0, s_->flow_control->remote_window_delta() + in stream_remote_window()
342 max_outgoing(), s_->flow_controlled_buffer.length); in FlushUncompressedBytes()
343 is_last_frame_ = send_bytes == s_->flow_controlled_buffer.length && in FlushUncompressedBytes()
344 s_->fetching_send_message == nullptr && in FlushUncompressedBytes()
345 s_->send_trailing_metadata != nullptr && in FlushUncompressedBytes()
346 grpc_metadata_batch_is_empty(s_->send_trailing_metadata); in FlushUncompressedBytes()
347 grpc_chttp2_encode_data(s_->id, &s_->flow_controlled_buffer, send_bytes, in FlushUncompressedBytes()
348 is_last_frame_, &s_->stats.outgoing, &t_->outbuf); in FlushUncompressedBytes()
[all …]
/third_party/boost/boost/beast/http/impl/
Drfc7230.hpp24 std::string s_; member in boost::beast::http::param_list::const_iterator
105 return const_iterator{s_.begin(), s_.end()}; in begin()
114 return const_iterator{s_.end(), s_.end()}; in end()
123 return const_iterator{s_.begin(), s_.end()}; in cbegin()
132 return const_iterator{s_.end(), s_.end()}; in cend()
217 return const_iterator{s_.begin(), s_.end()}; in begin()
226 return const_iterator{s_.end(), s_.end()}; in end()
235 return const_iterator{s_.begin(), s_.end()}; in cbegin()
244 return const_iterator{s_.end(), s_.end()}; in cend()
330 return const_iterator{s_.begin(), s_.end()}; in begin()
[all …]
Dserializer.hpp74 switch(s_) in next()
82 s_ = do_init; in next()
105 s_ = do_header; in next()
115 s_ = do_header_only; in next()
122 s_ = do_body + 1; in next()
134 s_ = do_body + 2; in next()
145 s_ = do_init_c; in next()
186 s_ = do_header_c; in next()
196 s_ = do_header_only_c; in next()
204 s_ = do_body_c + 1; in next()
[all …]
Dchunk_encode.hpp577 s_.reserve(1 + name.size()); in do_insert()
578 s_.push_back(';'); in do_insert()
579 s_.append(name.data(), name.size()); in do_insert()
595 s_.reserve(1 + name.size() + 1 + value.size()); in do_insert()
596 s_.push_back(';'); in do_insert()
597 s_.append(name.data(), name.size()); in do_insert()
598 s_.push_back('='); in do_insert()
599 s_.append(value.data(), value.size()); in do_insert()
604 s_.reserve( in do_insert()
607 s_.push_back(';'); in do_insert()
[all …]
/third_party/boost/libs/beast/include/boost/beast/http/impl/
Drfc7230.hpp24 std::string s_; member in boost::beast::http::param_list::const_iterator
105 return const_iterator{s_.begin(), s_.end()}; in begin()
114 return const_iterator{s_.end(), s_.end()}; in end()
123 return const_iterator{s_.begin(), s_.end()}; in cbegin()
132 return const_iterator{s_.end(), s_.end()}; in cend()
217 return const_iterator{s_.begin(), s_.end()}; in begin()
226 return const_iterator{s_.end(), s_.end()}; in end()
235 return const_iterator{s_.begin(), s_.end()}; in cbegin()
244 return const_iterator{s_.end(), s_.end()}; in cend()
330 return const_iterator{s_.begin(), s_.end()}; in begin()
[all …]
Dserializer.hpp74 switch(s_) in next()
82 s_ = do_init; in next()
105 s_ = do_header; in next()
115 s_ = do_header_only; in next()
122 s_ = do_body + 1; in next()
134 s_ = do_body + 2; in next()
145 s_ = do_init_c; in next()
186 s_ = do_header_c; in next()
196 s_ = do_header_only_c; in next()
204 s_ = do_body_c + 1; in next()
[all …]
/third_party/typescript/tests/baselines/reference/
DcallWithSpread3.types11 declare const s_: string[];
12 >s_ : string[]
94 fs2_(...s_); // error on ...s_
95 >fs2_(...s_) : void
97 >...s_ : string
98 >s_ : string[]
106 fs2_(...s_, ...s_); // error FIXME: bad error message
107 >fs2_(...s_, ...s_) : void
109 >...s_ : string
110 >s_ : string[]
[all …]
DcallWithSpread3.js5 declare const s_: string[];
21 fs2_(...s_); // error on ...s_
23 fs2_(...s_, ...s_); // error FIXME: bad error message
24 fs2_(...s_, ...s_, ...s_); // error FIXME: worse error message
30 fs2_(...s2_, ...s_);
32 fs2_(...s_, ...s2_);
52 fs2_.apply(void 0, s_); // error on ...s_
54 fs2_.apply(void 0, __spreadArray(__spreadArray([], s_), s_)); // error FIXME: bad error mes…
55 fs2_.apply(void 0, __spreadArray(__spreadArray(__spreadArray([], s_), s_), s_)); // error FIXME: w…
60 fs2_.apply(void 0, __spreadArray(__spreadArray([], s2_), s_));
[all …]
DcallWithSpread3.symbols11 declare const s_: string[];
12 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
70 fs2_(...s_); // error on ...s_
72 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
78 fs2_(...s_, ...s_); // error FIXME: bad error message
80 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
81 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
83 fs2_(...s_, ...s_, ...s_); // error FIXME: worse error message
85 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
86 >s_ : Symbol(s_, Decl(callWithSpread3.ts, 3, 13))
[all …]
/third_party/boost/boost/beast/_experimental/http/impl/
Dicy_stream.hpp62 icy_stream& s_; member in boost::beast::http::icy_stream::ops::read_op
77 , s_(s) in read_op()
91 if(s_.detect_) in operator ()()
93 BOOST_ASSERT(s_.n_ == 0); in operator ()()
103 s_.next_layer().async_read_some( in operator ()()
105 s_.buf_ + s_.n_, 3 - s_.n_), in operator ()()
108 s_.n_ += static_cast<char>(bytes_transferred); in operator ()()
112 net::const_buffer(s_.buf_, s_.n_)); in operator ()()
116 s_.n_ = static_cast<char>(net::buffer_copy( in operator ()()
117 net::buffer(s_.buf_, sizeof(s_.buf_)), in operator ()()
[all …]
/third_party/boost/libs/beast/include/boost/beast/_experimental/http/impl/
Dicy_stream.hpp62 icy_stream& s_; member in boost::beast::http::icy_stream::ops::read_op
77 , s_(s) in read_op()
91 if(s_.detect_) in operator ()()
93 BOOST_ASSERT(s_.n_ == 0); in operator ()()
103 s_.next_layer().async_read_some( in operator ()()
105 s_.buf_ + s_.n_, 3 - s_.n_), in operator ()()
108 s_.n_ += static_cast<char>(bytes_transferred); in operator ()()
112 net::const_buffer(s_.buf_, s_.n_)); in operator ()()
116 s_.n_ = static_cast<char>(net::buffer_copy( in operator ()()
117 net::buffer(s_.buf_, sizeof(s_.buf_)), in operator ()()
[all …]
/third_party/typescript/tests/cases/conformance/expressions/functionCalls/
DcallWithSpread3.ts4 declare const s_: string[]; constant
20 fs2_(...s_); // error on ...s_
22 fs2_(...s_, ...s_); // error FIXME: bad error message
23 fs2_(...s_, ...s_, ...s_); // error FIXME: worse error message
29 fs2_(...s2_, ...s_);
31 fs2_(...s_, ...s2_);
/third_party/boost/boost/beast/core/detail/
Dstatic_ostream.hpp36 std::string s_; member in boost::beast::detail::static_ostream_buffer
56 if(! s_.empty()) in str()
57 return {s_.data(), len_}; in str()
96 if(s_.empty()) in prepare()
98 s_.resize(static_cast<std::size_t>( in prepare()
100 Traits::copy(&s_[0], data_, len_); in prepare()
104 s_.resize(static_cast<std::size_t>( in prepare()
107 this->setp(&s_[len_], &s_[len_] + in prepare()
108 s_.size() - len_ - 1); in prepare()
/third_party/boost/libs/beast/include/boost/beast/core/detail/
Dstatic_ostream.hpp36 std::string s_; member in boost::beast::detail::static_ostream_buffer
56 if(! s_.empty()) in str()
57 return {s_.data(), len_}; in str()
96 if(s_.empty()) in prepare()
98 s_.resize(static_cast<std::size_t>( in prepare()
100 Traits::copy(&s_[0], data_, len_); in prepare()
104 s_.resize(static_cast<std::size_t>( in prepare()
107 this->setp(&s_[len_], &s_[len_] + in prepare()
108 s_.size() - len_ - 1); in prepare()
/third_party/boost/libs/beast/include/boost/beast/core/impl/
Dstatic_string.hpp72 Traits::copy(&s_[0], s, n_ + 1); in static_string()
135 Traits::copy(&s_[0], s, n_ + 1); in operator =()
149 Traits::assign(&s_[0], n_, ch); in assign()
163 Traits::copy(&s_[0], &str.s_[0], n); in assign()
189 Traits::copy(&s_[0], s, n_); in assign()
206 for(auto it = &s_[0]; first != last; ++it, ++first) in assign()
225 Traits::copy(&s_[0], &sv[0], n_); in assign()
243 return s_[pos]; in at()
255 return s_[pos]; in at()
311 &s_[index + count], &s_[index], size() - index); in insert()
[all …]
Dbuffered_read_stream.hpp35 buffered_read_stream& s_; member in boost::beast::buffered_read_stream::ops::read_op
51 , s_(s) in read_op()
66 if(s_.buffer_.size() == 0) in operator ()()
68 if(s_.capacity_ == 0) in operator ()()
72 return s_.next_layer_.async_read_some( in operator ()()
77 return s_.next_layer_.async_read_some( in operator ()()
78 s_.buffer_.prepare(read_size( in operator ()()
79 s_.buffer_, s_.capacity_)), in operator ()()
84 s_.get_executor(), in operator ()()
93 s_.buffer_.commit(bytes_transferred); in operator ()()
[all …]
/third_party/boost/boost/beast/core/impl/
Dstatic_string.hpp72 Traits::copy(&s_[0], s, n_ + 1); in static_string()
135 Traits::copy(&s_[0], s, n_ + 1); in operator =()
149 Traits::assign(&s_[0], n_, ch); in assign()
163 Traits::copy(&s_[0], &str.s_[0], n); in assign()
189 Traits::copy(&s_[0], s, n_); in assign()
206 for(auto it = &s_[0]; first != last; ++it, ++first) in assign()
225 Traits::copy(&s_[0], &sv[0], n_); in assign()
243 return s_[pos]; in at()
255 return s_[pos]; in at()
311 &s_[index + count], &s_[index], size() - index); in insert()
[all …]
Dbuffered_read_stream.hpp35 buffered_read_stream& s_; member in boost::beast::buffered_read_stream::ops::read_op
51 , s_(s) in read_op()
66 if(s_.buffer_.size() == 0) in operator ()()
68 if(s_.capacity_ == 0) in operator ()()
72 return s_.next_layer_.async_read_some( in operator ()()
77 return s_.next_layer_.async_read_some( in operator ()()
78 s_.buffer_.prepare(read_size( in operator ()()
79 s_.buffer_, s_.capacity_)), in operator ()()
84 s_.get_executor(), in operator ()()
93 s_.buffer_.commit(bytes_transferred); in operator ()()
[all …]
/third_party/boost/libs/core/test/
Dvisit_each_test.cpp31 int s_; member
33 V(): s_( 0 ) in V()
43 s_ = s_ * 10 + v; in operator ()()
48 s_ = s_ * 10 + w.size(); in operator ()()
62 BOOST_TEST( v.s_ == 54 ); in main()
/third_party/boost/libs/beast/include/boost/beast/websocket/impl/
Dteardown.hpp41 socket_type& s_; member in boost::beast::websocket::detail::teardown_tcp_op
57 , s_(s) in teardown_tcp_op()
72 nb_ = s_.non_blocking();
73 s_.non_blocking(true, ec);
77 s_.shutdown(net::socket_base::shutdown_send, ec);
84 s_.read_some(net::buffer(buf), ec);
95 s_.async_wait(
116 s_.shutdown(net::socket_base::shutdown_send, ec);
119 s_.close(ec);
136 s_.non_blocking(nb_, ignored);
/third_party/boost/boost/beast/websocket/impl/
Dteardown.hpp41 socket_type& s_; member in boost::beast::websocket::detail::teardown_tcp_op
57 , s_(s) in teardown_tcp_op()
72 nb_ = s_.non_blocking();
73 s_.non_blocking(true, ec);
77 s_.shutdown(net::socket_base::shutdown_send, ec);
84 s_.read_some(net::buffer(buf), ec);
95 s_.async_wait(
116 s_.shutdown(net::socket_base::shutdown_send, ec);
119 s_.close(ec);
136 s_.non_blocking(nb_, ignored);
/third_party/boost/boost/beast/http/
Drfc7230.hpp55 string_view s_; member in boost::beast::http::param_list
84 : s_(s) in param_list()
145 string_view s_; member in boost::beast::http::ext_list
170 : s_(s) in ext_list()
238 string_view s_; member in boost::beast::http::token_list
258 : s_(s) in token_list()
/third_party/boost/libs/beast/include/boost/beast/http/
Drfc7230.hpp55 string_view s_; member in boost::beast::http::param_list
84 : s_(s) in param_list()
145 string_view s_; member in boost::beast::http::ext_list
170 : s_(s) in ext_list()
238 string_view s_; member in boost::beast::http::token_list
258 : s_(s) in token_list()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dostringstream.h70 explicit OStringStream(std::string* s) : std::ostream(this), s_(s) {} in OStringStream()
72 std::string* str() { return s_; } in str()
73 const std::string* str() const { return s_; } in str()
74 void str(std::string* s) { s_ = s; } in str()
82 std::string* s_; variable
/third_party/abseil-cpp/absl/strings/internal/
Dostringstream.h70 explicit OStringStream(std::string* s) : std::ostream(this), s_(s) {} in OStringStream()
72 std::string* str() { return s_; } in str()
73 const std::string* str() const { return s_; } in str()
74 void str(std::string* s) { s_ = s; } in str()
82 std::string* s_; variable

123456