Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:m_command_dict

368     m_command_dict["apropos"]   = CommandObjectSP (new CommandObjectApropos (*this));
369 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
370 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
371 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
372 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
373 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this));
374 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this));
375 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this));
376 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this));
377 m_command_dict["platform"] = CommandObjectSP (new CommandObjectPlatform (*this));
378 m_command_dict["plugin"] = CommandObjectSP (new CommandObjectPlugin (*this));
379 m_command_dict["process"] = CommandObjectSP (new CommandObjectMultiwordProcess (*this));
380 m_command_dict["quit"] = CommandObjectSP (new CommandObjectQuit (*this));
381 m_command_dict["register"] = CommandObjectSP (new CommandObjectRegister (*this));
382 m_command_dict["script"] = CommandObjectSP (new CommandObjectScript (*this, script_language));
383 m_command_dict["settings"] = CommandObjectSP (new CommandObjectMultiwordSettings (*this));
384 m_command_dict["source"] = CommandObjectSP (new CommandObjectMultiwordSource (*this));
385 m_command_dict["target"] = CommandObjectSP (new CommandObjectMultiwordTarget (*this));
386 m_command_dict["thread"] = CommandObjectSP (new CommandObjectMultiwordThread (*this));
387 m_command_dict["type"] = CommandObjectSP (new CommandObjectType (*this));
388 m_command_dict["version"] = CommandObjectSP (new CommandObjectVersion (*this));
389 m_command_dict["watchpoint"]= CommandObjectSP (new CommandObjectMultiwordWatchpoint (*this));
425 m_command_dict[break_regex_cmd_sp->GetCommandName ()] = break_regex_cmd_sp;
456 m_command_dict[tbreak_regex_cmd_sp->GetCommandName ()] = tbreak_regex_cmd_sp;
474 m_command_dict[attach_regex_cmd_sp->GetCommandName ()] = attach_regex_cmd_sp;
489 m_command_dict[down_regex_cmd_sp->GetCommandName ()] = down_regex_cmd_sp;
504 m_command_dict[up_regex_cmd_sp->GetCommandName ()] = up_regex_cmd_sp;
518 m_command_dict[display_regex_cmd_sp->GetCommandName ()] = display_regex_cmd_sp;
532 m_command_dict[undisplay_regex_cmd_sp->GetCommandName ()] = undisplay_regex_cmd_sp;
547 m_command_dict[command_sp->GetCommandName ()] = command_sp;
562 m_command_dict[command_sp->GetCommandName ()] = command_sp;
582 m_command_dict[command_sp->GetCommandName ()] = command_sp;
604 m_command_dict[list_regex_cmd_sp->GetCommandName ()] = list_regex_cmd_sp;
619 m_command_dict[env_regex_cmd_sp->GetCommandName ()] = env_regex_cmd_sp;
629 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
649 pos = m_command_dict.find(cmd);
650 if (pos != m_command_dict.end())
687 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
693 pos = m_command_dict.find(cmd);
694 if (pos != m_command_dict.end())
753 bool found = (m_command_dict.find (name_sstr) != m_command_dict.end());
756 if (found && m_command_dict[name_sstr]->IsRemovable() == false)
758 m_command_dict[name_sstr] = cmd_sp;
779 if (m_command_dict[name]->IsRemovable() == false)
881 return m_command_dict.find(cmd) != m_command_dict.end();
1068 size_t max_len = FindLongestCommandWord (m_command_dict);
1076 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
2222 return (!m_command_dict.empty());
2826 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)