Home
last modified time | relevance | path

Searched defs:take_until (Results 1 – 13 of 13) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-take_until.hpp59 struct take_until : public operator_base<T> struct
61 typedef rxu::decay_t<Observable> source_type;
62 typedef rxu::decay_t<TriggerObservable> trigger_source_type;
63 typedef rxu::decay_t<Coordination> coordination_type;
64 typedef typename coordination_type::coordinator_type coordinator_type;
65 struct values
77 values initial;
79 take_until(source_type s, trigger_source_type t, coordination_type sf) in take_until() argument
84 struct mode
96 void on_subscribe(Subscriber s) const { in on_subscribe()
[all …]
/external/rust/crates/futures/tests/
Dstream.rs57 fn take_until() { 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/llvm-project/llvm/include/llvm/ADT/
DArrayRef.h240 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
417 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
DStringRef.h647 StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DArrayRef.h242 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
419 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
DStringRef.h635 StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/external/rust/crates/nom/src/bytes/
Dmacros.rs398 macro_rules! take_until ( macro
Dstreaming.rs417 pub fn take_until<T, Input, Error: ParseError<Input>>(tag: T) -> impl Fn(Input) -> IResult<Input, I… in take_until() function
Dcomplete.rs409 pub fn take_until<T, Input, Error: ParseError<Input>>(tag: T) -> impl Fn(Input) -> IResult<Input, I… in take_until() function
/external/rust/crates/futures-util/src/stream/stream/
Dmod.rs144 mod take_until; module
827 fn take_until<Fut>(self, fut: Fut) -> TakeUntil<Self, Fut> in take_until() method
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp1405 auto take_until(AN&&... an) const in take_until() function in rxcpp::observable