Home
last modified time | relevance | path

Searched refs:take_while (Results 1 – 25 of 42) sorted by relevance

12

/third_party/rust/crates/peeking_take_while/
DCargo.toml3take_while`, but calls the predicate on a peeked value. This allows you to use `Iterator::by_ref` …
6 keywords = ["iterator", "take_while", "peek", "by_ref"]
DREADME.md7 The `peeking_take_while` method is very similar to `take_while`, but behaves
14 hand, `take_while` will consume that first item for which the predicate returns
25 // the elements. With the `xs`, we will use the normal `take_while`. With the
37 let xs_less_than_ten = iter_xs.by_ref().take_while(|x| *x < 10);
51 // ...except, when using plain old `take_while` we lost 10!
DBUILD.gn26take_while`, but calls the predicate on a peeked value. This allows you to use `Iterator::by_ref` …
/third_party/rust/crates/nom/benchmarks/benches/
Dini.rs7 bytes::complete::take_while,
21 delimited(char('['), take_while(|c| c != b']'), char(']')), in category()
29 let (i, val) = map_res(take_while(|c| c != b'\n' && c != b';'), str::from_utf8)(i)?; in key_value()
30 let (i, _) = opt(pair(char(';'), take_while(|c| c != b'\n')))(i)?; in key_value()
Dini_str.rs7 bytes::complete::{is_a, tag, take_till, take_while},
27 delimited(char('['), take_while(|c| c != ']'), char(']')), in category()
/third_party/rust/crates/nom/src/
Dstr.rs160 fn take_while() { in take_while() function
161 use crate::bytes::streaming::take_while; in take_while()
164 take_while(is_alphabetic)(i) in take_while()
233 use crate::bytes::complete::take_while; in take_while_succeed_none()
242 take_while(while_s)(input) in take_while_succeed_none()
299 use crate::bytes::complete::take_while; in take_while_succeed_some()
316 take_while(while_s)(input) in take_while_succeed_some()
/third_party/rust/crates/nom/src/bytes/
Dtests.rs354 fn take_while() {
355 use crate::bytes::streaming::take_while;
358 take_while(is_alphabetic)(i)
458 use crate::bytes::streaming::take_while;
461 take_while(|c| c != '點')(i)
470 take_while(|c| c == '點')(i)
502 use crate::bytes::streaming::{take, take_while};
516 take_while(|c| c == '點')(i)
548 use crate::bytes::streaming::take_while;
553 take_while(is_alphanumeric)(i)
/third_party/rust/crates/nom/tests/
Dini.rs2 bytes::complete::take_while,
17 delimited(char('['), take_while(|c| c != b']'), char(']')), in category()
25 let (i, val) = map_res(take_while(|c| c != b'\n' && c != b';'), str::from_utf8)(i)?; in key_value()
26 let (i, _) = opt(pair(char(';'), take_while(|c| c != b'\n')))(i)?; in key_value()
Dini_str.rs2 bytes::complete::{is_a, tag, take_till, take_while},
17 take_while(|c| c != '\r' && c != '\n')(i) in not_line_ending()
26 delimited(char('['), take_while(|c| c != ']'), char(']')), in category()
/third_party/rust/crates/minimal-lexical/etc/correctness/rng-tests/
D_common.rs62 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
69 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/minimal-lexical/examples/
Dsimple.rs104 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
111 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
D_common.rs76 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
83 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/minimal-lexical/fuzz/fuzz_targets/
Dparse.rs57 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
64 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/
Dmain.rs69 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
76 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/minimal-lexical/tests/
Dintegration_tests.rs57 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
64 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/nom/examples/
Djson.rs5 bytes::complete::{escaped, tag, take_while},
35 take_while(move |c| chars.contains(c))(i) in sp()
Djson_iterator.rs5 bytes::complete::{escaped, tag, take_while},
221 take_while(move |c| chars.contains(c))(i) in sp()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-unittests/
Dmain.rs76 let count = bytes.iter().take_while(|&&si| si == b'0').count(); in ltrim_zero()
83 let count = bytes.iter().rev().take_while(|&&si| si == b'0').count(); in rtrim_zero()
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/
Dstring.rs26 .take_while(Result::is_ok) in ends_with()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/
DAnnotations.cpp56 Name = Text.take_while(llvm::isAlnum); in Annotations()
/third_party/rust/crates/nom/doc/
Dchoosing_a_combinator.md21 | [take_while](https://docs.rs/nom/latest/nom/bytes/complete/fn.take_while.html) | `take_while(is_a…
22 … character. This is the reverse behaviour from `take_while`: `take_till(f)` is equivalent to `take…
118 Use these functions with a combinator like `take_while`:
/third_party/rust/crates/codespan/codespan-reporting/src/term/
Drenderer.rs517 .take_while(|(byte_index, _)| *byte_index < range.start), in render_snippet_source()
852 .take_while(|(metrics, _)| metrics.byte_index < start + 1) in label_multi_top_caret()
886 .take_while(|(metrics, _)| metrics.byte_index < start) in label_multi_bottom_caret()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFormatVariadic.cpp101 Fmt.drop_front(BO).take_while([](char C) { return C == '{'; }); in splitLiteralAndReplacement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DArrayRef.h219 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
396 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DArrayRef.h236 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
412 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function

12