Lines Matching refs:command
8 def check(debugger, command, context, result, internal_dict): argument
10 not isinstance(command, str) or
21 def v5foobar(debugger, command, context, result, internal_dict, *args): argument
22 check(debugger, command, context, result, internal_dict)
24 def foobar(debugger, command, context, result, internal_dict): argument
25 check(debugger, command, context, result, internal_dict)
27 def foobar4(debugger, command, result, internal_dict): argument
28 check(debugger, command, None, result, internal_dict)
32 def sfoobar(debugger, command, context, result, internal_dict): argument
33 check(debugger, command, context, result, internal_dict)
36 def cfoobar(cls, debugger, command, context, result, internal_dict): argument
37 check(debugger, command, context, result, internal_dict)
39 def ifoobar(self, debugger, command, context, result, internal_dict): argument
40 check(debugger, command, context, result, internal_dict)
42 def __call__(self, debugger, command, context, result, internal_dict): argument
43 check(debugger, command, context, result, internal_dict)
46 def sfoobar4(debugger, command, result, internal_dict): argument
47 check(debugger, command, None, result, internal_dict)
50 def cfoobar4(cls, debugger, command, result, internal_dict): argument
51 check(debugger, command, None, result, internal_dict)
53 def ifoobar4(self, debugger, command, result, internal_dict): argument
54 check(debugger, command, None, result, internal_dict)
57 def __call__(self, debugger, command, result, internal_dict): argument
58 check(debugger, command, None, result, internal_dict)