Searched refs:parse_all (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_type_comments.py | 231 def parse_all(self, source, minver=lowest, maxver=highest, expected_regex=""): member in TypeCommentTests 248 for tree in self.parse_all(funcdef): 256 for tree in self.parse_all(asyncdef, minver=5): 264 for tree in self.parse_all(asyncvar, maxver=6): 268 for tree in self.parse_all(asynccomp, minver=6): 272 for tree in self.parse_all(matmul, minver=5): 276 for tree in self.parse_all(fstring, minver=6): 280 for tree in self.parse_all(underscorednumber, minver=6): 284 for tree in self.parse_all(redundantdef, maxver=0, 289 for tree in self.parse_all(nonasciidef): [all …]
|
/external/rust/crates/rustversion/src/ |
D | expr.rs | 61 Some(TokenTree::Ident(i)) if i.to_string() == "all" => parse_all(i, iter), in parse() 141 fn parse_all(introducer: &Ident, iter: Iter) -> Result<Expr> { in parse_all() function
|
/external/mtools/ |
D | config.c | 582 static void parse_all(int privilege); 616 parse_all(0); in set_cmd_line_image() 759 static void parse_all(int privilege) { in parse_all() function 788 parse_all(privilege); in parse()
|
/external/rust/crates/chrono/src/format/ |
D | parse.rs | 508 fn parse_all(s: &str, items: &[Item]) -> ParseResult<Parsed> { in test_parse() function 516 assert_eq!(parse_all($fmt, &$items), Err($err)) in test_parse() 521 assert_eq!(parse_all($fmt, &$items), Ok(expected)) in test_parse()
|