Lines Matching full:definitions
229 - the definitions SHOULD exist in same macro blocks.
239 yield SignatureAlgorithmDefinition(source_code, definitions=matches)
241 def __init__(self, source_code, definitions=None): argument
242 if definitions is None:
243 definitions = []
244 assert isinstance(definitions, list) and definitions
245 self._definitions = definitions
288 - the definitions SHOULD exist in same macro blocks.
298 yield NamedGroupDefinition(source_code, definitions=matches)
300 def __init__(self, source_code, definitions=None): argument
301 if definitions is None:
302 definitions = []
303 assert isinstance(definitions, list) and definitions
304 self._definitions = definitions
374 definitions = dict()
379 if start in definitions:
385 definitions[start] = definition
387 function_definitions = [str(v) for _, v in sorted(definitions.items())]