Home
last modified time | relevance | path

Searched refs:t_ (Results 1 – 25 of 114) sorted by relevance

12345

/third_party/re2/re2/
Dtostring.cc39 explicit ToStringWalker(std::string* t) : t_(t) {} in ToStringWalker()
49 std::string* t_; // The string the walker appends to. member in re2::ToStringWalker
92 t_->append("(?:"); in PreVisit()
98 t_->append("(?:"); in PreVisit()
103 t_->append("("); in PreVisit()
107 t_->append("?P<"); in PreVisit()
108 t_->append(*re->name()); in PreVisit()
109 t_->append(">"); in PreVisit()
119 t_->append("(?:"); in PreVisit()
154 t_->append("[^\\x00-\\x{10ffff}]"); in PostVisit()
[all …]
/third_party/grpc/src/core/ext/transport/chttp2/transport/
Dwriting.cc201 explicit WriteContext(grpc_chttp2_transport* t) : t_(t) { in WriteContext()
217 if (t_->dirtied_local_settings && !t_->sent_local_settings) { in FlushSettings()
219 &t_->outbuf, grpc_chttp2_settings_create( in FlushSettings()
220 t_->settings[GRPC_SENT_SETTINGS], in FlushSettings()
221 t_->settings[GRPC_LOCAL_SETTINGS], in FlushSettings()
222 t_->force_send_settings, GRPC_CHTTP2_NUM_SETTINGS)); in FlushSettings()
223 t_->force_send_settings = false; in FlushSettings()
224 t_->dirtied_local_settings = false; in FlushSettings()
225 t_->sent_local_settings = true; in FlushSettings()
232 grpc_slice_buffer_move_into(&t_->qbuf, &t_->outbuf); in FlushQueuedBuffers()
[all …]
/third_party/boost/boost/thread/
Dscoped_thread.hpp40 Thread t_; member in boost::strict_scoped_thread
52 t_(boost::forward<F>(f), boost::forward<Args>(args)...) {} in strict_scoped_thread()
57 t_(boost::forward<F>(f)) {}
60 t_(boost::forward<F>(f), boost::forward<A1>(a1)) {}
63 t_(boost::forward<F>(f), boost::forward<A1>(a1), boost::forward<A2>(a2)) {}
66t_(boost::forward<F>(f), boost::forward<A1>(a1), boost::forward<A2>(a2), boost::forward<A3>(a3)) {}
77 t_(boost::move(t)) in strict_scoped_thread()
90 on_destructor(t_); in ~strict_scoped_thread()
117 Thread t_; member in boost::scoped_thread
132 t_() in scoped_thread()
[all …]
/third_party/boost/boost/archive/
Dbasic_archive.hpp49 explicit version_type(const unsigned int & t_) : t(t_){ in version_type() argument
50 BOOST_ASSERT(t_ <= boost::integer_traits<base_type>::const_max); in version_type()
52 version_type(const version_type & t_) : in version_type() argument
53 t(t_.t) in version_type()
82 explicit class_id_type(const int t_) : t(t_){ in class_id_type() argument
83 BOOST_ASSERT(t_ <= boost::integer_traits<base_type>::const_max); in class_id_type()
85 explicit class_id_type(const std::size_t t_) : t(t_){ in class_id_type() argument
88 class_id_type(const class_id_type & t_) : in class_id_type() argument
89 t(t_.t) in class_id_type()
122 explicit object_id_type(const std::size_t & t_) : t(static_cast<base_type>(t_)){ in object_id_type() argument
[all …]
/third_party/boost/boost/iostreams/detail/
Dfunctional.hpp37 : t_(t), which_(which) in device_close_operation()
39 void operator()() const { boost::iostreams::close(t_, which_); } in operator ()()
42 T& t_; member in boost::iostreams::detail::device_close_operation
51 : t_(t), snk_(snk), which_(which) in filter_close_operation()
53 void operator()() const { boost::iostreams::close(t_, snk_, which_); } in operator ()()
56 T& t_; member in boost::iostreams::detail::filter_close_operation
78 device_close_all_operation(T& t) : t_(t) { } in device_close_all_operation()
79 void operator()() const { detail::close_all(t_); } in operator ()()
82 T& t_; member in boost::iostreams::detail::device_close_all_operation
89 filter_close_all_operation(T& t, Sink& snk) : t_(t), snk_(snk) { } in filter_close_all_operation()
[all …]
/third_party/boost/boost/math/interpolators/detail/
Dvector_barycentric_rational_detail.hpp38 TimeContainer t_; member in boost::math::detail::vector_barycentric_rational_imp
47 t_ = std::move(t); in vector_barycentric_rational_imp()
50 …BOOST_ASSERT_MSG(t_.size() == y_.size(), "There must be the same number of time points as space po… in vector_barycentric_rational_imp()
52 for (size_t i = 1; i < t_.size(); ++i) in vector_barycentric_rational_imp()
54 …BOOST_ASSERT_MSG(t_[i] - t_[i-1] > (numeric_limits<typename TimeContainer::value_type>::min)(), "… in vector_barycentric_rational_imp()
65 int64_t n = t_.size(); in calculate_weights()
86 Real diff = t_[k] - t_[j]; in calculate_weights()
111 for(size_t i = 0; i < t_.size(); ++i) in operator ()()
114 if (t == t_[i]) in operator ()()
119 Real x = w_[i]/(t - t_[i]); in operator ()()
[all …]
/third_party/boost/boost/iostreams/detail/adapter/
Dmode_adapter.hpp44 explicit mode_adapter(const component_type& t) : t_(t) { } in mode_adapter()
60 { return iostreams::read(t_, src, s, n); } in read()
64 { return iostreams::write(t_, snk, s, n); } in write()
68 { return iostreams::seek(t_, dev, off, way); } in seek()
73 { return iostreams::seek(t_, dev, off, way, which); } in seek()
77 { detail::close_all(t_, dev); } in close()
81 { iostreams::close(t_, dev, which); } in close()
85 { iostreams::imbue(t_, loc); } in imbue()
87 component_type t_; member in boost::iostreams::detail::mode_adapter
95 { return boost::iostreams::read(t_, s, n); } in read()
[all …]
Ddevice_adapter.hpp36 explicit device_adapter(param_type t) : t_(t) { } in device_adapter()
37 T& component() { return t_; } in component()
41 detail::close_all(t_); in close()
46 iostreams::close(t_, which); in close()
51 return iostreams::flush(t_); in flush()
55 void imbue(const Locale& loc) { iostreams::imbue(t_, loc); } in imbue()
58 { return iostreams::optimal_buffer_size(t_); } in optimal_buffer_size()
60 value_type t_; member in boost::iostreams::detail::device_adapter
Dfilter_adapter.hpp35 explicit filter_adapter(param_type t) : t_(t) { } in filter_adapter()
36 T& component() { return t_; } in component()
41 detail::close_all(t_, dev); in close()
47 iostreams::close(t_, dev, which); in close()
53 return iostreams::flush(t_, dev); in flush()
57 void imbue(const Locale& loc) { iostreams::imbue(t_, loc); } in imbue()
60 { return iostreams::optimal_buffer_size(t_); } in optimal_buffer_size()
62 value_type t_; member in boost::iostreams::detail::filter_adapter
Dconcept_adapter.hpp65 explicit concept_adapter(const reference_wrapper<T>& ref) : t_(ref.get()) in concept_adapter()
67 explicit concept_adapter(const T& t) : t_(t) in concept_adapter()
70 T& operator*() { return t_; } in operator *()
71 T* operator->() { return &t_; } in operator ->()
78 { return input_impl::read(t_, src, s, n); } in read()
85 { return output_impl::write(t_, snk, s, n); } in write()
97 { return any_impl::seek(t_, dev, off, way, which); } in seek()
104 { any_impl::close(t_, dev, which); } in close()
109 bool result = any_impl::flush(t_, dev); in flush()
116 void imbue(const Locale& loc) { iostreams::imbue(t_, loc); } in imbue()
[all …]
/third_party/iowow/src/utils/
Diwutils.h131 #define IW_READBV(ptr_, t_, m_) \ argument
132 static_assert(sizeof(t_) == 1, "Mismatch t_ size"); \
133 (t_) = 0; \
134 memcpy(&(t_), ptr_, 1); \
135 (m_) = (t_); \
138 #define IW_READSV(ptr_, t_, m_) \ argument
139 static_assert(sizeof(t_) == 2, "Mismatch t_ size"); \
140 (t_) = 0; \
141 memcpy(&(t_), ptr_, 2); \
142 (m_) = IW_ITOHS(t_); \
[all …]
/third_party/boost/boost/beast/core/
Dhandler_ptr.hpp62 T* t_ = nullptr; member in boost::beast::handler_ptr
147 return t_ != nullptr; in has_value()
158 BOOST_ASSERT(t_); in get()
159 return t_; in get()
170 BOOST_ASSERT(t_); in operator *()
171 return *t_; in operator *()
178 BOOST_ASSERT(t_); in operator ->()
179 return t_; in operator ->()
/third_party/boost/boost/beast/core/impl/
Dhandler_ptr.hpp32 alloc_traits::destroy(alloc, t_); in clear()
33 alloc_traits::deallocate(alloc, t_, 1); in clear()
34 t_ = nullptr; in clear()
41 if(t_) in ~handler_ptr()
51 : t_(other.t_) in handler_ptr()
53 if(other.t_) in handler_ptr()
58 other.t_ = nullptr; in handler_ptr()
89 t_ = t.release(); in handler_ptr()
98 BOOST_ASSERT(t_); in release_handler()
116 BOOST_ASSERT(t_); in invoke()
/third_party/boost/boost/intrusive/
Dsplaytree_algorithms.hpp58 : t_(t) in splaydown_assemble_and_fix_header()
73 NodeTraits::set_parent(null_node_, t_); in ~splaydown_assemble_and_fix_header()
74 NodeTraits::set_parent(t_, null_node_); in ~splaydown_assemble_and_fix_header()
90 node_ptr const old_t_left = NodeTraits::get_left(t_); in assemble()
91 node_ptr const old_t_right = NodeTraits::get_right(t_); in assemble()
104 NodeTraits::set_left (t_, null_right); in assemble()
105 NodeTraits::set_right(t_, null_left); in assemble()
107 NodeTraits::set_parent(null_right, t_); in assemble()
110 NodeTraits::set_parent(null_left, t_); in assemble()
116 node_ptr t_, null_node_, l_, r_, leftmost_, rightmost_; member
[all …]
/third_party/boost/boost/intrusive/detail/
Debo_functor_holder.hpp170 : t_() in ebo_functor_holder()
174 : t_(t) in ebo_functor_holder()
178 : t_(::boost::move(t)) in ebo_functor_holder()
183 : t_(::boost::forward<Arg1>(arg1), ::boost::forward<Arg2>(arg2)) in ebo_functor_holder()
187 : t_(x.t_) in ebo_functor_holder()
191 : t_(x.t_) in ebo_functor_holder()
218 BOOST_INTRUSIVE_FORCEINLINE T& get(){return t_;} in get()
219 BOOST_INTRUSIVE_FORCEINLINE const T& get()const{return t_;} in get()
222 T t_; member in boost::intrusive::detail::ebo_functor_holder
/third_party/boost/boost/variant/detail/
Denable_recursive.hpp97 )::type t_; typedef
104 is_same< t_,T >
105 , is_reference<t_>
106 , is_pointer<t_>
108 , t_
109 , boost::recursive_wrapper<t_>
/third_party/boost/boost/serialization/
Dlibrary_version_type.hpp42 explicit library_version_type(const unsigned int & t_) : t(t_){ in library_version_type() argument
43 BOOST_ASSERT(t_ <= boost::integer_traits<base_type>::const_max); in library_version_type()
45 library_version_type(const library_version_type & t_) : in library_version_type() argument
46 t(t_.t) in library_version_type()
Ditem_version_type.hpp32 explicit item_version_type(const unsigned int t_) : t(t_){ in item_version_type() argument
33 BOOST_ASSERT(t_ <= boost::integer_traits<base_type>::const_max); in item_version_type()
35 item_version_type(const item_version_type & t_) : in item_version_type() argument
36 t(t_.t) in item_version_type()
Dcollection_size_type.hpp26 explicit collection_size_type(const std::size_t & t_) : in collection_size_type() argument
27 t(t_) in collection_size_type()
29 collection_size_type(const collection_size_type & t_) : in collection_size_type() argument
30 t(t_.t) in collection_size_type()
/third_party/boost/boost/numeric/ublas/
Dexpression_types.hpp92 t_ (t) {} in scalar_reference()
97 return t_; in operator value_type()
103 t_ = s.t_; in operator =()
109 t_ = ae; in operator =()
116 return &t_ == &sr.t_; in same_closure()
120 reference t_; member in boost::numeric::ublas::scalar_reference
140 t_ () {} in scalar_value()
143 t_ (t) {} in scalar_value()
147 return t_; in operator value_type()
153 t_ = s.t_; in operator =()
[all …]
/third_party/boost/boost/context/detail/
Dtuple.hpp62 std::tuple< T ... > & t_; member in boost::context::detail::tuple_head
66 t_( t) { in tuple_head()
73 t_, index_sequence_for< T ... >{} ); in operator =()
79 t_, index_sequence_for< T ... >{} ); in operator =()
89 std::tuple< T ... > & t_; member in boost::context::detail::tuple_tail
93 t_( t) { in tuple_tail()
100 t_, index_sequence_for< T ... >{} ); in operator =()
107 t_, index_sequence_for< T ... >{} ); in operator =()
/third_party/boost/libs/beast/include/boost/beast/core/detail/
Dtuple.hpp29 tuple_element_impl(T const& t_) in tuple_element_impl()
30 : t(t_) in tuple_element_impl()
34 tuple_element_impl(T&& t_) in tuple_element_impl()
35 : t(std::move(t_)) in tuple_element_impl()
45 tuple_element_impl(T& t_) in tuple_element_impl()
46 : t(t_) in tuple_element_impl()
/third_party/boost/boost/beast/core/detail/
Dtuple.hpp29 tuple_element_impl(T const& t_) in tuple_element_impl()
30 : t(t_) in tuple_element_impl()
34 tuple_element_impl(T&& t_) in tuple_element_impl()
35 : t(std::move(t_)) in tuple_element_impl()
45 tuple_element_impl(T& t_) in tuple_element_impl()
46 : t(t_) in tuple_element_impl()
/third_party/boost/boost/core/
Dref.hpp74 BOOST_FORCEINLINE explicit reference_wrapper(T& t): t_(boost::addressof(t)) {} in reference_wrapper()
78 …BOOST_FORCEINLINE explicit reference_wrapper( T & t, ref_workaround_tag ): t_( boost::addressof( t… in reference_wrapper()
94 BOOST_FORCEINLINE operator T& () const { return *t_; } in operator T&()
100 BOOST_FORCEINLINE T& get() const { return *t_; } in get()
107 BOOST_FORCEINLINE T* get_pointer() const { return t_; } in get_pointer()
111 T* t_; member in boost::reference_wrapper
/third_party/boost/libs/thread/doc/
Dscoped_thread.qbk106 thread t_; // for exposition purposes only
141 [[Effects:] [move the thread to own `t_`]]
159 [[Postconditions:] [`*this.t_` refers to the newly created thread of execution and `this->get_id()!…
173 [[Effects:] [Equivalent to `CallableThread()(t_)`. ]]
175 [[Throws:] [Nothing: The `CallableThread()(t_)` should not throw when joining the thread as the sco…
190 thread t_; // for exposition purposes only
299 any) to `*this` after having called to `CallableThread()(t_)`.
305 [[Throws:] [Nothing: The `CallableThread()(t_)` should not throw when joining the thread as the sco…
337 [[Postconditions:] [`*this.t_` refers to the newly created thread of execution and `this->get_id()!…
352 [[Effects:] [Equivalent to `CallableThread()(t_)`. ]]
[all …]

12345