HomeSort by relevance Sort by last modified time
    Searched refs:cmd_obj (Results 1 - 10 of 10) sorted by null

  /external/lldb/source/Commands/
CommandObjectSyntax.cpp 61 CommandObject *cmd_obj; local
66 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex(0));
71 if (!cmd_obj->IsMultiwordObject())
75 cmd_obj = cmd_obj->GetSubcommandObject(sub_command.c_str());
76 if (!cmd_obj)
81 if (all_okay && (cmd_obj != NULL))
84 if (cmd_obj->GetOptions() != NULL)
86 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
88 cmd_obj->GetCommandName())
    [all...]
CommandObjectHelp.cpp 66 CommandObject *cmd_obj; local
86 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex (0), &matches);
90 if (cmd_obj != NULL)
94 CommandObject *sub_cmd_obj = cmd_obj;
159 m_interpreter.GetAliasHelp (alias_name.c_str(), cmd_obj->GetCommandName(), sstr);
221 CommandObject *cmd_obj = m_interpreter.GetCommandObject (input.GetArgumentAtIndex(0)); local
226 if (cmd_obj)
230 return cmd_obj->HandleCompletion (input,
CommandObjectMultiword.cpp 94 const CommandObjectSP& cmd_obj
103 m_subcommand_dict[name] = cmd_obj;
249 CommandObject *cmd_obj = GetSubcommandObject (input.GetArgumentAtIndex(0), local
251 if (cmd_obj != NULL)
257 return cmd_obj->HandleCompletion (input,
CommandObjectCommands.cpp 583 CommandObject *cmd_obj = m_interpreter.GetCommandObjectForCommand (raw_command_string); local
585 if (!cmd_obj)
592 else if (!cmd_obj->WantsRawCommandString ())
600 return HandleAliasingRawCommand (alias_command, raw_command_string, *cmd_obj, result);
606 HandleAliasingRawCommand (const std::string &alias_command, std::string &raw_command_string, CommandObject &cmd_obj, CommandReturnObject &result)
613 CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false);
684 CommandObject *cmd_obj = command_obj_sp.get(); local
689 while (cmd_obj->IsMultiwordObject() && args.GetArgumentCount() > 0)
695 subcommand_obj_sp = cmd_obj->GetSubcommandSP (sub_command.c_str());
701 cmd_obj = sub_cmd_obj
806 CommandObject *cmd_obj; local
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 1129 CommandObject *cmd_obj = NULL; local
1500 CommandObject *cmd_obj = NULL; local
1896 CommandObject *cmd_obj = GetCommandObject (parsed_line.GetArgumentAtIndex(0), &matches); local
2829 CommandObject *cmd_obj = pos->second.get(); local
2851 CommandObject *cmd_obj = pos->second.get(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py     [all...]
cmd.py 311 cmd_obj = self.distribution.get_command_obj(command, create)
312 cmd_obj.ensure_finalized()
313 return cmd_obj
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py     [all...]
cmd.py 311 cmd_obj = self.distribution.get_command_obj(command, create)
312 cmd_obj.ensure_finalized()
313 return cmd_obj
  /external/lldb/source/API/
SBCommandInterpreter.cpp 370 CommandObject *cmd_obj = m_opaque_ptr->GetCommandObjectForCommand(command_name_str); local
371 if (cmd_obj)
374 cmd_obj->SetOverrideCallback (callback, baton);

Completed in 474 milliseconds