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

1 2

  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-connect_forever.hpp 37 typedef rxu::decay_t<ConnectableObservable> source_type; typedef in struct:rxcpp::operators::detail::connect_forever
39 source_type source;
41 explicit connect_forever(source_type o)
rx-multicast.hpp 38 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::multicast
43 multicast_state(source_type o, subject_type sub)
48 source_type source;
55 multicast(source_type o, subject_type sub)
rx-retry-repeat-common.hpp 63 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::retry_repeat_common::finite
67 values(source_type s, count_type t)
82 source_type source;
89 finite(source_type s, count_type t)
114 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::retry_repeat_common::infinite
117 values(source_type s)
130 source_type source;
133 infinite(source_type s) : initial_(std::move(s)) {
rx-scan.hpp 46 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::scan
52 scan_initial_type(source_type o, accumulator_type a, seed_type s)
58 source_type source;
64 scan(source_type o, accumulator_type a, seed_type s)
rx-skip.hpp 45 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::skip
49 values(source_type s, count_type t)
54 source_type source;
59 skip(source_type s, count_type t)
rx-skip_last.hpp 44 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::skip_last
52 values(source_type s, count_type t)
57 source_type source;
62 skip_last(source_type s, count_type t)
rx-take.hpp 44 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::take
48 values(source_type s, count_type t)
53 source_type source;
58 take(source_type s, count_type t)
rx-take_last.hpp 44 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::take_last
52 values(source_type s, count_type t)
57 source_type source;
62 take_last(source_type s, count_type t)
rx-amb.hpp 70 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::amb
72 typedef typename source_type::source_operator_type source_operator_type;
90 amb(const source_type& o, coordination_type sf)
rx-concat.hpp 69 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::concat
74 typedef typename source_type::source_operator_type source_operator_type;
90 concat(const source_type& o, coordination_type sf)
rx-flat_map.hpp 54 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::flat_map_traits
59 typedef typename source_type::value_type source_value_type;
92 typedef typename traits::source_type source_type; typedef in struct:rxcpp::operators::detail::flat_map
105 values(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
112 source_type source;
119 flat_map(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
rx-merge.hpp 74 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::merge
76 typedef typename source_type::source_operator_type source_operator_type;
94 merge(const source_type& o, coordination_type sf)
rx-merge_delay_error.hpp 67 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::merge_delay_error
69 typedef typename source_type::source_operator_type source_operator_type;
87 merge_delay_error(const source_type& o, coordination_type sf)
rx-sequence_equal.hpp 48 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::sequence_equal
57 values(source_type s, other_source_type t, predicate_type pred, coordination_type sf)
65 source_type source;
73 sequence_equal(source_type s, other_source_type t, predicate_type pred, coordination_type sf)
rx-skip_until.hpp 51 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::skip_until
57 values(source_type s, trigger_source_type t, coordination_type sf)
63 source_type source;
69 skip_until(source_type s, trigger_source_type t, coordination_type sf)
rx-subscribe_on.hpp 47 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::subscribe_on
55 subscribe_on_values(source_type s, coordination_type sf)
60 source_type source;
70 subscribe_on(source_type s, coordination_type sf)
rx-switch_on_next.hpp 51 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::switch_on_next
53 typedef typename source_type::source_operator_type source_operator_type;
73 switch_on_next(const source_type& o, coordination_type sf)
rx-take_until.hpp 61 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::take_until
67 values(source_type s, trigger_source_type t, coordination_type sf)
73 source_type source;
79 take_until(source_type s, trigger_source_type t, coordination_type sf)
rx-concat_map.hpp 54 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::concat_traits
59 typedef typename source_type::value_type source_value_type;
94 typedef typename traits::source_type source_type; typedef in struct:rxcpp::operators::detail::concat_map
107 values(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
114 source_type source;
123 concat_map(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
rx-reduce.hpp 87 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::reduce_traits
103 typedef typename traits::source_type source_type; typedef in struct:rxcpp::operators::detail::reduce
116 reduce_initial_type(source_type o, accumulator_type a, result_selector_type rs, seed_type s)
123 source_type source;
136 reduce(source_type o, accumulator_type a, result_selector_type rs, seed_type s)
153 source_type source;
rx-group_by.hpp 71 typedef rxu::decay_t<Observable> source_type; typedef in struct:rxcpp::operators::detail::group_by_traits
  /external/selinux/libsepol/include/sepol/policydb/
avtab.h 51 uint16_t source_type; member in struct:avtab_key
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
rx-test.hpp 472 typedef decltype(createSource()) source_type; typedef in struct:rxcpp::test::test_worker::state_type
474 std::unique_ptr<source_type> source;
486 state->source.reset(new typename state_type::source_type(createSource()));
517 typedef decltype((*(F*)nullptr)()) source_type; typedef in struct:rxcpp::test::test_worker::start_traits
518 typedef typename source_type::value_type value_type;
  /external/deqp/external/openglcts/modules/gl/
gl3cTextureSizePromotion.cpp 255 glw::GLenum source_type = GL_NONE; local
261 source_type = GL_FLOAT;
269 source_type = GL_FLOAT;
277 source_type = GL_FLOAT;
285 source_type = GL_INT;
293 source_type = GL_UNSIGNED_INT;
301 source_type = GL_FLOAT;
309 source_type = GL_UNSIGNED_INT;
323 gl.texImage1D(target, 0, descriptor.internal_format, s_source_texture_size, 0, source_format, source_type,
331 source_format, source_type, source_data)
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_memory.cpp 693 const auto source_type = local
695 if (!source_type || source_type->opcode() == SpvOpTypeVoid) {
701 if (target_type->id() != source_type->id()) {
705 << _.getIdName(source_type->id()) << "'s type.";
    [all...]

Completed in 2176 milliseconds

1 2