Home
last modified time | relevance | path

Searched refs:take_until (Results 1 – 18 of 18) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dtake_until.cpp31 | rxo::take_until(ys) in __anonda5e5f430102()
93 .take_until(r) in __anonda5e5f430202()
156 .take_until(r) in __anonda5e5f430302()
217 .take_until(r) in __anonda5e5f430402()
279 .take_until(r) in __anonda5e5f430502()
338 .take_until(r) in __anonda5e5f430602()
394 .take_until(r) in __anonda5e5f430702()
448 .take_until(r) in __anonda5e5f430802()
499 .take_until(r) in __anonda5e5f430902()
554 .take_until(r) in __anonda5e5f430a02()
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Dtake_until.cpp10 auto values = source.take_until(trigger);
21 … auto values = source.take_until(std::chrono::steady_clock::now() + std::chrono::milliseconds(25));
42 auto values = source.take_until(trigger, rxcpp::observe_on_new_thread());
60 auto values = source.take_until(scheduler.now() + std::chrono::milliseconds(25), scheduler);
Dnever.cpp10 take_until(std::chrono::steady_clock::now() + std::chrono::milliseconds(10)).
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-take_until.hpp59 struct take_until : public operator_base<T> struct
79 take_until(source_type s, trigger_source_type t, coordination_type sf) in take_until() argument
209 auto take_until(AN&&... an) in take_until() function
227 …class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable…
244 …class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable…
255 …class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Trig…
267 …class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Trig…
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DArrayRefTest.cpp163 EXPECT_EQ(Expected, AR1.take_until([](const int &N) { return N % 2 == 0; })); in TEST()
165 EXPECT_EQ(AR1, AR1.take_until([](const int &N) { return N < 0; })); in TEST()
167 AR1.take_until([](const int &N) { return N > 0; })); in TEST()
DStringRefTest.cpp1025 Taken = Test.take_until([](char c) { return ::isdigit(c); }); in TEST()
1031 Taken = Test.take_until([](char c) { return true; }); in TEST()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/stop/
Dmain.cpp44 take_until(rx::observable<>::timer(std::chrono::seconds(1))). in main()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
Dmain.cpp146 take_until(this->messages<WM_LBUTTONUP>()); in OnMovesWhileLButtonDown()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DArrayRef.h233 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
410 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
DStringRef.h637 StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DArrayRef.h225 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
403 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
DStringRef.h626 StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/external/Reactive-Extensions/RxCpp/projects/doxygen/
DCMakeLists.txt106 ${DOXY_EXAMPLES_SRC_DIR}/take_until.cpp
/external/Reactive-Extensions/RxCpp/Rx/v2/test/
DCMakeLists.txt79 ${TEST_DIR}/operators/take_until.cpp
/external/Reactive-Extensions/RxCpp/projects/CMake/
DCMakeLists.txt78 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-take_until.hpp
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp1401 auto take_until(AN&&... an) const in take_until() function in rxcpp::observable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DPath.inc493 PathStr.take_until([](char c) { return path::is_separator(c); });
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DPath.inc1211 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });