Home
last modified time | relevance | path

Searched refs:search_word (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Commands/
DCommandObjectApropos.cpp63 const char *search_word = args.GetArgumentAtIndex(0); in DoExecute() local
64 if ((search_word != NULL) in DoExecute()
65 && (strlen (search_word) > 0)) in DoExecute()
74 … m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help, true, false); in DoExecute()
75 …m_interpreter.FindCommandsForApropos (search_word, user_commands_found, user_commands_help, false,… in DoExecute()
79 …found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.\n", search_word); in DoExecute()
85 …ult.AppendMessageWithFormat ("The following built-in commands may relate to '%s':\n", search_word); in DoExecute()
107 … result.AppendMessageWithFormat ("The following user commands may relate to '%s':\n", search_word); in DoExecute()
129 … const size_t num_properties = m_interpreter.GetDebugger().Apropos(search_word, properties); in DoExecute()
133 …pendMessageWithFormat ("\nThe following settings variables may relate to '%s': \n\n", search_word); in DoExecute()
DCommandObjectMultiword.cpp312 const char *search_word, in AproposAllSubCommands() argument
326 if (sub_cmd_obj->HelpTextContainsWord (search_word)) in AproposAllSubCommands()
334 search_word, in AproposAllSubCommands()
402 const char *search_word, in AproposAllSubCommands() argument
409 search_word, in AproposAllSubCommands()
/external/lldb/include/lldb/Interpreter/
DCommandObjectMultiword.h60 const char *search_word,
132 const char *search_word,
DCommandObject.h154 const char *search_word, in AproposAllSubCommands() argument
421 HelpTextContainsWord (const char *search_word);
/external/lldb/source/Interpreter/
DCommandObject.cpp445 CommandObject::HelpTextContainsWord (const char *search_word) in HelpTextContainsWord() argument
455 if (short_help && strcasestr (short_help, search_word)) in HelpTextContainsWord()
457 else if (long_help && strcasestr (long_help, search_word)) in HelpTextContainsWord()
459 else if (syntax_help && strcasestr (syntax_help, search_word)) in HelpTextContainsWord()
470 if (strcasestr (usage_text, search_word)) in HelpTextContainsWord()
DCommandInterpreter.cpp2819 CommandInterpreter::FindCommandsForApropos (const char *search_word, StringList &commands_found, in FindCommandsForApropos() argument
2831 if (cmd_obj->HelpTextContainsWord (search_word)) in FindCommandsForApropos()
2839 search_word, in FindCommandsForApropos()
2853 if (cmd_obj->HelpTextContainsWord (search_word)) in FindCommandsForApropos()
2861 search_word, in FindCommandsForApropos()