HomeSort by relevance Sort by last modified time
    Searched defs:this_type (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/sources/
rx-create.hpp 54 typedef create<T, OnSubscribe> this_type; typedef in struct:rxcpp::sources::detail::create
rx-defer.hpp 42 typedef defer<ObservableFactory> this_type; typedef in struct:rxcpp::sources::detail::defer
rx-interval.hpp 47 typedef interval<Coordination> this_type; typedef in struct:rxcpp::sources::detail::interval
rx-timer.hpp 47 typedef timer<Coordination> this_type; typedef in struct:rxcpp::sources::detail::timer
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
rx-immediate.hpp 17 typedef immediate this_type; typedef in struct:rxcpp::schedulers::immediate
18 immediate(const this_type&);
23 typedef immediate_worker this_type; typedef in struct:rxcpp::schedulers::immediate::immediate_worker
24 immediate_worker(const this_type&);
rx-sameworker.hpp 17 typedef same_worker this_type; typedef in struct:rxcpp::schedulers::same_worker
18 same_worker(const this_type&);
rx-eventloop.hpp 17 typedef event_loop this_type; typedef in struct:rxcpp::schedulers::event_loop
18 event_loop(const this_type&);
23 typedef loop_worker this_type; typedef in struct:rxcpp::schedulers::event_loop::loop_worker
24 loop_worker(const this_type&);
  /external/webrtc/webrtc/base/
sigslotrepeater.h 31 typedef repeater0<mt_policy> this_type; typedef in class:sigslot::repeater0
34 repeater0(const this_type& s) : base_type(s) { }
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); }
47 typedef repeater1<arg1_type, mt_policy> this_type; typedef in class:sigslot::repeater1
50 repeater1(const this_type& s) : base_type(s) { }
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); }
63 typedef repeater2<arg1_type, arg2_type, mt_policy> this_type; typedef in class:sigslot::repeater2
66 repeater2(const this_type& s) : base_type(s) { }
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); }
80 typedef repeater3<arg1_type, arg2_type, arg3_type, mt_policy> this_type; typedef in class:sigslot::repeater3
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-all.hpp 59 typedef all_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::all::all_observer
62 typedef observer<value_type, this_type> observer_type;
98 return make_subscriber<value_type>(d, this_type(d, std::move(t)));
rx-any.hpp 66 typedef any_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::any::any_observer
69 typedef observer<value_type, this_type> observer_type;
105 return make_subscriber<value_type>(d, this_type(d, std::move(t)));
rx-distinct.hpp 47 typedef distinct_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::distinct::distinct_observer
50 typedef observer<value_type, this_type> observer_type;
71 static subscriber<value_type, observer<value_type, this_type>> make(dest_type d) {
72 return make_subscriber<value_type>(d, this_type(d));
rx-distinct_until_changed.hpp 57 typedef distinct_until_changed_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::distinct_until_changed::distinct_until_changed_observer
60 typedef observer<value_type, this_type> observer_type;
85 return make_subscriber<value_type>(d, this_type(d, std::move(p)));
rx-element_at.hpp 61 typedef element_at_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::element_at::element_at_observer
64 typedef observer<value_type, this_type> observer_type;
90 return make_subscriber<value_type>(d, this_type(d, v));
rx-filter.hpp 56 typedef filter_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::filter::filter_observer
59 typedef observer<value_type, this_type> observer_type;
90 return make_subscriber<value_type>(d, this_type(d, std::move(t)));
rx-finally.hpp 60 typedef finally_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::finally::finally_observer
63 typedef observer<value_type, this_type> observer_type;
88 return make_subscriber<value_type>(cs, this_type(d));
rx-ignore_elements.hpp 44 typedef ignore_elements_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::ignore_elements::ignore_elements_observer
47 typedef observer<value_type, this_type> observer_type;
68 return make_subscriber<value_type>(d, this_type(d));
rx-map.hpp 57 typedef map_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::map::map_observer
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::move(s))));
rx-on_error_resume_next.hpp 58 typedef on_error_resume_next_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::on_error_resume_next::on_error_resume_next_observer
63 typedef observer<T, this_type> observer_type;
94 return make_subscriber<T>(cs, observer_type(this_type(std::move(d), cs, std::move(s))));
rx-pairwise.hpp 50 typedef pairwise_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::pairwise::pairwise_observer
53 typedef observer<T, this_type> observer_type;
79 return make_subscriber<T>(std::move(cs), observer_type(this_type(std::move(d))));
rx-skip_while.hpp 57 typedef skip_while_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::skip_while::skip_while_observer
60 typedef observer<value_type, this_type> observer_type;
86 return make_subscriber<value_type>(d, this_type(d, std::move(t)));
rx-switch_if_empty.hpp 57 typedef switch_if_empty_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::switch_if_empty::switch_if_empty_observer
60 typedef observer<value_type, this_type> observer_type;
92 return make_subscriber<value_type>(cs, observer_type(this_type(std::move(d), cs, std::move(b))));
rx-take_while.hpp 57 typedef take_while_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::take_while::take_while_observer
60 typedef observer<value_type, this_type> observer_type;
84 return make_subscriber<value_type>(d, this_type(d, std::move(t)));
rx-timestamp.hpp 65 typedef timestamp_observer<Subscriber> this_type; typedef in struct:rxcpp::operators::detail::timestamp::timestamp_observer
68 typedef observer<value_type, this_type> observer_type;
89 return make_subscriber<value_type>(d, this_type(d, v.coordination));
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-connectable_observable.hpp 108 typedef connectable_observable<T, SourceOperator> this_type; typedef in class:rxcpp::connectable_observable
148 -> decltype(of(*(const this_type*)nullptr)) {
150 static_assert(is_operator_factory_for<this_type, OperatorFactory>::value, "Function passed for op() must have the signature Result(SourceObservable)");
170 -> decltype(observable_member(ref_count_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...))
181 -> decltype(observable_member(connect_forever_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...))
rx-grouped_observable.hpp 124 typedef grouped_observable<K, T, SourceOperator> this_type; typedef in class:rxcpp::grouped_observable

Completed in 927 milliseconds

1 2 3