Home
last modified time | relevance | path

Searched refs:skip_while (Results 1 – 22 of 22) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-skip_while.hpp42 struct skip_while struct
49 skip_while(test_type t) in skip_while() argument
102 auto skip_while(AN&&... an) in skip_while() function
114 class TakeWhile = rxo::detail::skip_while<SourceValue, rxu::decay_t<Predicate>>>
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dskip_while.cpp35 .skip_while(not_equal_to(4)) in __anona58c38790202()
96 .skip_while(not_equal_to(0)) in __anona58c38790302()
156 .skip_while(not_equal_to(72)) in __anona58c38790402()
225 .skip_while(not_equal_to(0)) in __anona58c38790502()
287 .skip_while(not_equal_to(72)) in __anona58c38790602()
347 .skip_while(not_equal_to(100)) in __anona58c38790702()
405 .skip_while(not_equal_to(1)) in __anona58c38790802()
/external/rust/crates/tokio-stream/src/
Dstream_ext.rs39 mod skip_while; module
40 use skip_while::SkipWhile;
538 fn skip_while<F>(self, f: F) -> SkipWhile<Self, F> in skip_while() method
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Dskip_while.cpp9 skip_while([](int v){ in __anon54f4a9d70102()
/external/rust/crates/fallible-iterator/src/
Dtest.rs342 fn skip_while() { in skip_while() function
345 it.clone().skip_while(|x| Ok(*x < 1)).collect::<Vec<_>>(), in skip_while()
349 it.clone().skip_while(|x| Ok(*x < 3)).collect::<Vec<_>>(), in skip_while()
353 it.clone().skip_while(|x| Ok(*x < 5)).collect::<Vec<_>>(), in skip_while()
Dlib.rs309 fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P> in skip_while() method
/external/llvm-project/llvm/lib/Support/
DYAMLParser.cpp372 StringRef::iterator skip_while( SkipWhileFunc Func
881 StringRef::iterator Scanner::skip_while( SkipWhileFunc Func in skip_while() function in Scanner
893 auto Final = skip_while(Func, Current); in advanceWhile()
1110 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1112 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1116 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1122 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1123 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1124 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1483 Current = skip_while(&Scanner::skip_s_white, Current); in scanBlockScalarHeader()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLParser.cpp379 StringRef::iterator skip_while( SkipWhileFunc Func
888 StringRef::iterator Scanner::skip_while( SkipWhileFunc Func in skip_while() function in Scanner
900 auto Final = skip_while(Func, Current); in advanceWhile()
1117 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1119 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1123 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1129 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1130 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1131 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1489 Current = skip_while(&Scanner::skip_s_white, Current); in scanBlockScalarHeader()
[all …]
/external/llvm/lib/Support/
DYAMLParser.cpp386 StringRef::iterator skip_while( SkipWhileFunc Func
892 StringRef::iterator Scanner::skip_while( SkipWhileFunc Func in skip_while() function in Scanner
904 auto Final = skip_while(Func, Current); in advanceWhile()
1119 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1121 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1125 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1131 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1132 Current = skip_while(&Scanner::skip_s_white, Current); in scanDirective()
1133 Current = skip_while(&Scanner::skip_ns_char, Current); in scanDirective()
1488 Current = skip_while(&Scanner::skip_s_white, Current); in scanBlockScalarHeader()
[all …]
/external/rust/crates/fallible-iterator/
DCHANGELOG.md21 * Added `step_by`, `for_each`, `skip_while`, `take_while`, `skip`, `scan`, `flat_map`, `flatten`, `…
/external/rust/crates/futures-util/src/stream/stream/
Dmod.rs132 mod skip_while; module
134 pub use self::skip_while::SkipWhile;
752 fn skip_while<Fut, F>(self, f: F) -> SkipWhile<Self, Fut, F> in skip_while() method
/external/rust/crates/bindgen/src/ir/
Dcomment.rs73 .skip_while(|line| line.trim().is_empty()) // Skip the first empty lines. in preprocess_multi_line()
/external/rust/crates/structopt-derive/src/
Ddoc_comments.rs17 .skip_while(|s| is_blank(s)) in process_doc_comment()
/external/rust/crates/gdbstub/src/protocol/
Dresponse_writer.rs126 .skip_while(|&b| b == 0) in write_num()
/external/rust/crates/futures/tests_disabled/
Dstream.rs146 fn skip_while() { in skip_while() function
147 assert_done(|| list().skip_while(|e| Ok(*e % 2 == 1)).collect(), in skip_while()
/external/Reactive-Extensions/RxCpp/projects/doxygen/
DCMakeLists.txt96 ${DOXY_EXAMPLES_SRC_DIR}/skip_while.cpp
/external/Reactive-Extensions/RxCpp/Rx/v2/test/
DCMakeLists.txt70 ${TEST_DIR}/operators/skip_while.cpp
/external/rust/crates/fallible-streaming-iterator/src/
Dlib.rs245 fn skip_while<F>(self, f: F) -> SkipWhile<Self, F> in skip_while() method
/external/crosvm/devices/src/virtio/
Dqueue.rs39 self.skip_while(DescriptorChain::is_read_only) in writable()
/external/rust/crates/quiche/src/recovery/
Dmod.rs283 .skip_while(|p| p.pkt_num < lowest_acked) in on_ack_received()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp1350 auto skip_while(AN... an) const in skip_while() function in rxcpp::observable
/external/rust/crates/tokio/
DCHANGELOG.md821 - stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).