Searched defs:ParseTree (Results 1 – 1 of 1) sorted by relevance
89 ParseTree = NamedTuple('ParseTree', [('label', str), ('children', List['ParseTree'])]) variable93 def find_parse_subtree(parse_tree: ParseTree, match_regex: str) -> ParseTree:104 def find_parse_children(parse_tree: ParseTree, match_regex: str) -> Iterable[ParseTree]:159 def parse_dexopt_state(dumpsys_tree: ParseTree) -> DexoptState: