Home
last modified time | relevance | path

Searched refs:this_type (Results 1 – 25 of 70) sorted by relevance

123

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp483 typedef observable<T, SourceOperator> this_type; typedef in rxcpp::observable
582 … -> decltype(observable_member(ref_count_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in ref_count()
591 blocking_observable<T, this_type> as_blocking(AN**...) const { in as_blocking()
592 return blocking_observable<T, this_type>(*this); in as_blocking()
605 -> decltype(of(*(const this_type*)nullptr)) { in op()
607 …static_assert(is_operator_factory_for<this_type, OperatorFactory>::value, "Function passed for op(… in op()
658 -> decltype(observable_member(all_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in all()
669 -> decltype(observable_member(is_empty_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in is_empty()
680 -> decltype(observable_member(any_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in any()
691 -> decltype(observable_member(exists_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in exists()
[all …]
Drx-connectable_observable.hpp108 typedef connectable_observable<T, SourceOperator> this_type; typedef in rxcpp::connectable_observable
148 -> decltype(of(*(const this_type*)nullptr)) { in op()
150 …static_assert(is_operator_factory_for<this_type, OperatorFactory>::value, "Function passed for op(… in op()
170 … -> decltype(observable_member(ref_count_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...)) in ref_count()
181 …-> decltype(observable_member(connect_forever_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...… in connect_forever()
Drx-observer.hpp182 using this_type = observer<T, State, OnNext, OnError, OnCompleted>; typedef in rxcpp::observer
219 observer(const this_type& o) in observer()
226 observer(this_type&& o) in observer()
233 this_type& operator=(this_type o) { in operator =()
273 using this_type = observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>; typedef in rxcpp::observer
310 observer(const this_type& o) in observer()
316 observer(this_type&& o) in observer()
322 this_type& operator=(this_type o) { in operator =()
399 using this_type = observer<T, void, void, void, void>; typedef in rxcpp::observer
415 observer(const this_type& o) in observer()
[all …]
Drx-scheduler.hpp132 typedef action this_type; typedef in rxcpp::schedulers::action
166 typedef worker_interface this_type; typedef in rxcpp::schedulers::worker_interface
202 typedef worker this_type; typedef in rxcpp::schedulers::worker
356 typedef scheduler_interface this_type; typedef in rxcpp::schedulers::scheduler_interface
385 typedef scheduler this_type; typedef in rxcpp::schedulers::scheduler
428 typedef schedulable this_type; typedef in rxcpp::schedulers::schedulable
444 detacher(const this_type* that) in detacher()
448 const this_type* that;
657 typedef action_type this_type; typedef in rxcpp::schedulers::detail::action_type
686 typedef action_type this_type; typedef in rxcpp::schedulers::detail::action_tailrecurser
/external/webrtc/webrtc/base/
Dsigslotrepeater.h31 typedef repeater0<mt_policy> this_type; typedef
34 repeater0(const this_type& s) : base_type(s) { } in repeater0()
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } in repeat()
47 typedef repeater1<arg1_type, mt_policy> this_type; typedef
50 repeater1(const this_type& s) : base_type(s) { } in repeater1()
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat()
63 typedef repeater2<arg1_type, arg2_type, mt_policy> this_type; typedef
66 repeater2(const this_type& s) : base_type(s) { } in repeater2()
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat()
80 typedef repeater3<arg1_type, arg2_type, arg3_type, mt_policy> this_type; typedef
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
Drx-currentthread.hpp18 typedef action_queue this_type; typedef
134 typedef current_thread this_type; typedef
135 current_thread(const this_type&);
142 typedef current_thread this_type; typedef
143 derecurser(const this_type&);
168 typedef current_thread this_type; typedef
169 current_worker(const this_type&);
Drx-runloop.hpp47 typedef run_loop_scheduler this_type; typedef
48 run_loop_scheduler(const this_type&);
53 typedef run_loop_worker this_type; typedef
55 run_loop_worker(const this_type&);
121 typedef run_loop this_type; typedef in rxcpp::schedulers::run_loop
124 run_loop(const this_type&);
125 run_loop(this_type&&);
Drx-immediate.hpp17 typedef immediate this_type; typedef
18 immediate(const this_type&);
23 typedef immediate_worker this_type; typedef
24 immediate_worker(const this_type&);
Drx-eventloop.hpp17 typedef event_loop this_type; typedef
18 event_loop(const this_type&);
23 typedef loop_worker this_type; typedef
24 loop_worker(const this_type&);
Drx-newthread.hpp19 typedef new_thread this_type; typedef
20 new_thread(const this_type&);
25 typedef new_worker this_type; typedef
29 new_worker(const this_type&);
Drx-sameworker.hpp17 typedef same_worker this_type; typedef
18 same_worker(const this_type&);
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-distinct.hpp47 typedef distinct_observer<Subscriber> this_type; typedef
50 typedef observer<value_type, this_type> observer_type;
71 static subscriber<value_type, observer<value_type, this_type>> make(dest_type d) { in make()
72 return make_subscriber<value_type>(d, this_type(d)); in make()
Drx-tap.hpp77 using this_type = tap_observer<Subscriber>; typedef
82 using observer_type = observer<value_type, this_type>;
104 … static subscriber<value_type, observer<value_type, this_type>> make(dest_type d, out_type o) { in make()
105 return make_subscriber<value_type>(d, this_type(d, std::move(o))); in make()
Drx-buffer_count.hpp73 typedef buffer_count_observer<Subscriber> this_type; typedef
76 typedef observer<value_type, this_type> observer_type;
118 static subscriber<T, observer<T, this_type>> make(dest_type d, buffer_count_values v) { in make()
120 return make_subscriber<T>(std::move(cs), this_type(std::move(d), std::move(v))); in make()
Drx-ignore_elements.hpp44 typedef ignore_elements_observer<Subscriber> this_type; typedef
47 typedef observer<value_type, this_type> observer_type;
68 return make_subscriber<value_type>(d, this_type(d)); in make()
Drx-skip_while.hpp57 typedef skip_while_observer<Subscriber> this_type; typedef
60 typedef observer<value_type, this_type> observer_type;
86 return make_subscriber<value_type>(d, this_type(d, std::move(t))); in make()
Drx-finally.hpp60 typedef finally_observer<Subscriber> this_type; typedef
63 typedef observer<value_type, this_type> observer_type;
88 return make_subscriber<value_type>(cs, this_type(d)); in make()
Drx-pairwise.hpp50 typedef pairwise_observer<Subscriber> this_type; typedef
53 typedef observer<T, this_type> observer_type;
79 return make_subscriber<T>(std::move(cs), observer_type(this_type(std::move(d)))); in make()
Drx-take_while.hpp57 typedef take_while_observer<Subscriber> this_type; typedef
60 typedef observer<value_type, this_type> observer_type;
84 return make_subscriber<value_type>(d, this_type(d, std::move(t))); in make()
Drx-element_at.hpp61 typedef element_at_observer<Subscriber> this_type; typedef
64 typedef observer<value_type, this_type> observer_type;
90 return make_subscriber<value_type>(d, this_type(d, v)); in make()
Drx-filter.hpp56 typedef filter_observer<Subscriber> this_type; typedef
59 typedef observer<value_type, this_type> observer_type;
90 return make_subscriber<value_type>(d, this_type(d, std::move(t))); in make()
Drx-distinct_until_changed.hpp57 typedef distinct_until_changed_observer<Subscriber> this_type; typedef
60 typedef observer<value_type, this_type> observer_type;
85 return make_subscriber<value_type>(d, this_type(d, std::move(p))); in make()
Drx-time_interval.hpp66 typedef time_interval_observer<Subscriber> this_type; typedef
69 typedef observer<value_type, this_type> observer_type;
95 return make_subscriber<value_type>(d, this_type(d, v.coordination)); in make()
Drx-map.hpp57 typedef map_observer<Subscriber> this_type; typedef
60 typedef observer<source_value_type, this_type> observer_type;
89 …return make_subscriber<source_value_type>(std::move(cs), observer_type(this_type(std::move(d), std… in make()
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-arabic.cc297 …unsigned int this_type = get_joining_type (buffer->context[0][i], buffer->unicode->general_categor… in arabic_joining() local
299 if (unlikely (this_type == JOINING_TYPE_T)) in arabic_joining()
302 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; in arabic_joining()
309 …unsigned int this_type = get_joining_type (info[i].codepoint, _hb_glyph_info_get_general_category … in arabic_joining() local
311 if (unlikely (this_type == JOINING_TYPE_T)) { in arabic_joining()
316 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; in arabic_joining()
332 …unsigned int this_type = get_joining_type (buffer->context[1][i], buffer->unicode->general_categor… in arabic_joining() local
334 if (unlikely (this_type == JOINING_TYPE_T)) in arabic_joining()
337 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; in arabic_joining()

123