Home
last modified time | relevance | path

Searched refs:Repeat0 (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Tools/peg_generator/pegen/
Dfirst_sets.py23 Repeat0,
69 if not isinstance(other.item, (Opt, NegativeLookahead, Repeat0)):
98 def visit_Repeat0(self, item: Repeat0) -> Set[str]: argument
Dmetagrammar.gram21 Repeat0,
98 | atom '*' {Repeat0(atom)}
Dpython_generator.py15 Repeat0,
104 def visit_Repeat0(self, node: Repeat0) -> Tuple[str, str]: argument
Dgrammar_parser.py30 Repeat0,
503 return Repeat0 ( atom )
Dc_generator.py20 Repeat0,
259 def visit_Repeat0(self, node: Repeat0) -> FunctionCall: argument
Dgrammar.py367 class Repeat0(Repeat): class