Lines Matching refs:interp
89 void RunTest(CommandInterpreter &interp, const char *args, bool is_leaf, in RunTest() argument
95 interp.VerifyUserMultiwordCmdPath(test_args, is_leaf, error); in RunTest()
115 CommandInterpreter &interp = debugger_sp->GetCommandInterpreter(); in TEST_F() local
124 RunTest(interp, "process launch", is_leaf, success, in TEST_F()
130 RunTest(interp, "wewouldnevernameacommandthis subcommand", is_leaf, success, in TEST_F()
134 error = interp.AddUserCommand( in TEST_F()
135 "dummy", CommandObjectSP(new CommandObjectMultiwordDummy(interp)), true); in TEST_F()
141 RunTest(interp, "dummy subcommand", is_leaf, success, "dummy subcommand"); in TEST_F()
144 RunTest(interp, "dummy subcommand", is_leaf, success, "dummy"); in TEST_F()
150 RunTest(interp, "dummy subcommand leaf", is_leaf, success, in TEST_F()
156 RunTest(interp, "dummy subcommand leaf", is_leaf, success, in TEST_F()
162 RunTest(interp, "dummy not-subcommand", is_leaf, success, in TEST_F()