/third_party/rust/crates/nom/tests/ |
D | arithmetic.rs | 8 sequence::{delimited, pair}, 18 delimited(space, delimited(tag("("), expr, tag(")")), space)(i) in parens() 27 map_res(delimited(space, digit, space), FromStr::from_str), in factor()
|
D | json.rs | 11 sequence::{delimited, preceded, separated_pair}, 83 delimited( in string() 94 delimited(multispace0, f, multispace0) in ws() 98 delimited( in array() 107 delimited( in object()
|
D | float.rs | 5 use nom::sequence::{delimited, pair}; 13 delimited(digit, tag("."), opt(digit)), in unsigned_float() 14 delimited(opt(digit), tag("."), digit), in unsigned_float()
|
D | arithmetic_ast.rs | 12 sequence::{delimited, preceded}, 62 delimited( in parens() 64 delimited(tag("("), map(expr, |e| Expr::Paren(Box::new(e))), tag(")")), in parens() 72 map_res(delimited(multispace, digit, multispace), FromStr::from_str), in factor()
|
D | reborrow_fold.rs | 10 use nom::sequence::delimited; 24 delimited( in list()
|
D | ini_str.rs | 6 sequence::{delimited, pair, terminated, tuple}, 26 delimited(char('['), take_while(|c| c != ']'), char(']')), in category()
|
D | ini.rs | 8 sequence::{delimited, pair, separated_pair, terminated, tuple}, 17 delimited(char('['), take_while(|c| c != b']'), char(']')), in category()
|
/third_party/rust/crates/nom/fuzz/fuzz_targets/ |
D | fuzz_arithmetic.rs | 14 sequence::{delimited, pair, terminated}, 51 delimited(space, delimited( in parens() 61 map_res(delimited(space, digit, space), FromStr::from_str), in factor()
|
/third_party/rust/crates/nom/benchmarks/benches/ |
D | json.rs | 16 sequence::{delimited, preceded, separated_pair}, 88 delimited( in string() 99 delimited(multispace0, f, multispace0) in ws() 103 delimited( in array() 112 delimited( in object()
|
D | arithmetic.rs | 13 sequence::{delimited, pair}, 23 delimited( in factor() 29 delimited(char('('), expr, char(')')), in factor()
|
D | ini.rs | 13 sequence::{delimited, pair, separated_pair, terminated, tuple}, 21 delimited(char('['), take_while(|c| c != b']'), char(']')), in category()
|
D | ini_str.rs | 11 sequence::{delimited, pair, terminated, tuple}, 27 delimited(char('['), take_while(|c| c != ']'), char(']')), in category()
|
/third_party/rust/crates/nom/examples/ |
D | string.rs | 20 use nom::sequence::{delimited, preceded}; 45 delimited(char('{'), parse_hex, char('}')), in parse_unicode() 162 delimited(char('"'), build_string, char('"'))(input)
|
D | json.rs | 11 sequence::{delimited, preceded, separated_pair, terminated}, 176 delimited( in root()
|
/third_party/rust/crates/rust-cexpr/src/ |
D | literal.rs | 48 use nom::sequence::{delimited, pair, preceded, terminated, tuple}; 209 delimited( in c_char() 220 delimited( in c_string()
|
D | expr.rs | 35 use nom::sequence::{delimited, pair, preceded}; 295 delimited(p("("), |i| self.numeric_expr(i), p(")")), in unary() 477 delimited(p("("), |i| self.expr(i), p(")")), in expr() 604 delimited( in fn_macro_declaration()
|
/third_party/rust/crates/nom/doc/ |
D | nom_recipes.md | 32 sequence::delimited, 42 delimited( 50 To eat only trailing whitespace, replace `delimited(...)` with `terminated(&inner, multispace0)`. 51 Likewise, the eat only leading whitespace, replace `delimited(...)` with `preceded(multispace0,
|
/third_party/curl/m4/ |
D | ltsugar.m4 | 64 # Produce a SEP delimited list of all paired combinations of elements of 79 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
/third_party/node/deps/cares/m4/ |
D | ltsugar.m4 | 64 # Produce a SEP delimited list of all paired combinations of elements of 79 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
/third_party/libevdev/m4/ |
D | ltsugar.m4 | 64 # Produce a SEP delimited list of all paired combinations of elements of 79 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
/third_party/skia/third_party/externals/libpng/scripts/ |
D | ltsugar.m4 | 64 # Produce a SEP delimited list of all paired combinations of elements of 79 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
/third_party/skia/third_party/externals/microhttpd/m4/ |
D | ltsugar.m4 | 63 # Produce a SEP delimited list of all paired combinations of elements of 78 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
/third_party/mesa3d/docs/_extra/specs/ |
D | MESA_shader_debug.spec | 190 text format (XXX format!) and is delimited by a white space (XXX 1 207 delimited by a white space. If the argument <cookie> is not present,
|
/third_party/protobuf/src/google/protobuf/util/internal/testdata/ |
D | books.proto | 105 optional string id = 1; // non-length-delimited to length-delimited. 106 repeated uint64 name = 2; // string to repeated (both length-delimited).
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLOPT_SSL_EC_CURVES.md | 27 Pass a string as parameter with a colon delimited list of (EC) algorithms. This
|