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

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

Completed in 338 milliseconds