OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:search_word
(Results
1 - 6
of
6
) sorted by null
/external/lldb/source/Commands/
CommandObjectApropos.cpp
63
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
...]
CommandObjectMultiword.cpp
312
const char *
search_word
,
326
if (sub_cmd_obj->HelpTextContainsWord (
search_word
))
334
search_word
,
402
const char *
search_word
,
409
search_word
,
/external/lldb/include/lldb/Interpreter/
CommandObjectMultiword.h
60
const char *
search_word
,
132
const char *
search_word
,
CommandObject.h
154
const char *
search_word
,
421
HelpTextContainsWord (const char *
search_word
);
/external/lldb/source/Interpreter/
CommandObject.cpp
445
CommandObject::HelpTextContainsWord (const char *
search_word
)
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
))
[
all
...]
CommandInterpreter.cpp
[
all
...]
Completed in 746 milliseconds