Lines Matching refs:command

7 def check(debugger, command, context, result, internal_dict):  argument
10 or not isinstance(command, str)
23 def v5foobar(debugger, command, context, result, internal_dict, *args): argument
24 check(debugger, command, context, result, internal_dict)
27 def foobar(debugger, command, context, result, internal_dict): argument
28 check(debugger, command, context, result, internal_dict)
31 def foobar4(debugger, command, result, internal_dict): argument
32 check(debugger, command, None, result, internal_dict)
37 def sfoobar(debugger, command, context, result, internal_dict): argument
38 check(debugger, command, context, result, internal_dict)
41 def cfoobar(cls, debugger, command, context, result, internal_dict): argument
42 check(debugger, command, context, result, internal_dict)
44 def ifoobar(self, debugger, command, context, result, internal_dict): argument
45 check(debugger, command, context, result, internal_dict)
47 def __call__(self, debugger, command, context, result, internal_dict): argument
48 check(debugger, command, context, result, internal_dict)
51 def sfoobar4(debugger, command, result, internal_dict): argument
52 check(debugger, command, None, result, internal_dict)
55 def cfoobar4(cls, debugger, command, result, internal_dict): argument
56 check(debugger, command, None, result, internal_dict)
58 def ifoobar4(self, debugger, command, result, internal_dict): argument
59 check(debugger, command, None, result, internal_dict)
63 def __call__(self, debugger, command, result, internal_dict): argument
64 check(debugger, command, None, result, internal_dict)