/third_party/rust/crates/peeking_take_while/ |
D | Cargo.toml | 3 …take_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"]
|
D | README.md | 7 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!
|
D | BUILD.gn | 26 …take_while`, but calls the predicate on a peeked value. This allows you to use `Iterator::by_ref` …
|
/third_party/rust/crates/nom/benchmarks/benches/ |
D | ini.rs | 7 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()
|
D | ini_str.rs | 7 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/ |
D | str.rs | 160 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/ |
D | tests.rs | 354 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/ |
D | ini.rs | 2 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()
|
D | ini_str.rs | 2 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.rs | 62 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/ |
D | simple.rs | 104 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.rs | 76 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/ |
D | parse.rs | 57 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/ |
D | main.rs | 69 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/ |
D | integration_tests.rs | 57 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/ |
D | json.rs | 5 bytes::complete::{escaped, tag, take_while}, 35 take_while(move |c| chars.contains(c))(i) in sp()
|
D | json_iterator.rs | 5 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/ |
D | main.rs | 76 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/ |
D | string.rs | 26 .take_while(Result::is_ok) in ends_with()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/ |
D | Annotations.cpp | 56 Name = Text.take_while(llvm::isAlnum); in Annotations()
|
/third_party/rust/crates/nom/doc/ |
D | choosing_a_combinator.md | 21 | [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/ |
D | renderer.rs | 517 .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/ |
D | FormatVariadic.cpp | 101 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/ |
D | ArrayRef.h | 219 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/ |
D | ArrayRef.h | 236 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
|