Searched refs:parse_all (Results 1 – 4 of 4) sorted by relevance
/third_party/python/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 …]
|
/third_party/rust/crates/clap/clap_derive/src/ |
D | item.rs | 65 let parsed_attrs = ClapAttr::parse_all(attrs); in from_args_struct() 82 let parsed_attrs = ClapAttr::parse_all(attrs); in from_subcommand_enum() 99 let parsed_attrs = ClapAttr::parse_all(attrs); in from_value_enum() 141 let parsed_attrs = ClapAttr::parse_all(&variant.attrs); in from_subcommand_variant() 186 let parsed_attrs = ClapAttr::parse_all(&variant.attrs); in from_value_enum_variant() 214 let parsed_attrs = ClapAttr::parse_all(&field.attrs); in from_args_field()
|
D | attr.rs | 27 pub fn parse_all(all_attrs: &[Attribute]) -> Vec<Self> { in parse_all() method
|
/third_party/skia/resources/sksl/es2_conformance/ |
D | import_conformance_tests.py | 87 testCases = grammar.parse_string(sys.stdin.read(), parse_all=True)
|