Searched refs:MethodDefinition (Results 1 – 4 of 4) sorted by relevance
| /Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/ |
| D | cs_exporter.py | 83 def generate_read_method() -> ast.MethodDefinition: 86 return ast.MethodDefinition( 98 ast.MethodDefinition(name='Read'), 111 return ast.MethodDefinition( 143 init_method = ast.MethodDefinition(name='Init', partial=True) 144 reset_method = ast.MethodDefinition(name='Reset', partial=True) 157 ast.MethodDefinition( 174 ast.MethodDefinition(name='IPeripheral.Reset', body = ast.Node.join([ 303 ast.MethodDefinition(
|
| D | memory.py | 204 methods = ast.MethodDefinition( 271 ast.MethodDefinition( 280 ast.MethodDefinition( 293 ast.MethodDefinition(
|
| /Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/csharp/ |
| D | process.py | 32 if not (isinstance(node, ast.MethodDefinition) and '.' in node.name) \
|
| D | ast.py | 645 class MethodDefinition(InvokableDefinition): class 735 def __init__(self, method: Union[str | MethodDefinition], *arguments: Arg, argument 744 case (MethodDefinition() as m, None): 780 methods:Optional[MethodDefinition] = None, argument
|