Home
last modified time | relevance | path

Searched refs:usage_text (Results 1 – 14 of 14) sorted by relevance

/external/lldb/source/Interpreter/
DOptionGroupFile.cpp26 const char *usage_text) : in OptionGroupFile() argument
37 m_option_definition.usage_text = usage_text; in OptionGroupFile()
66 const char *usage_text) : in OptionGroupFileList() argument
77 m_option_definition.usage_text = usage_text; in OptionGroupFileList()
DOptionGroupString.cpp26 const char *usage_text, in OptionGroupString() argument
38 m_option_definition.usage_text = usage_text; in OptionGroupString()
DOptionGroupUInt64.cpp26 const char *usage_text, in OptionGroupUInt64() argument
38 m_option_definition.usage_text = usage_text; in OptionGroupUInt64()
DOptionGroupBoolean.cpp24 const char *usage_text, in OptionGroupBoolean() argument
37 m_option_definition.usage_text = usage_text; in OptionGroupBoolean()
DCommandObject.cpp469 const char *usage_text = usage_help.GetData(); in HelpTextContainsWord() local
470 if (strcasestr (usage_text, search_word)) in HelpTextContainsWord()
DOptions.cpp684 if (opt_defs[i].usage_text) in GenerateOptionUsage()
686 opt_defs[i].usage_text, in GenerateOptionUsage()
/external/lldb/include/lldb/Interpreter/
DOptionGroupFile.h37 const char *usage_text);
95 const char *usage_text);
DOptionGroupBoolean.h35 const char *usage_text,
DOptionGroupUInt64.h35 const char *usage_text,
DOptionGroupString.h35 const char *usage_text,
/external/selinux/policycoreutils/sepolicy/
Dsepolicy.py198 def generate_custom_usage(usage_text,usage_dict): argument
204 usage_text += "%s %s |" % (k,(" ".join(usage_dict[k])))
205 usage_text = usage_text[:-1] + "]"
206 usage_text = _(usage_text)
208 return usage_text
/external/lldb/include/lldb/
Dlldb-private-types.h66 …const char *usage_text; // Full text explaining what this options does and what (… member
/external/selinux/policycoreutils/semanage/
Dsemanage155 def generate_custom_usage(usage_text,usage_dict):
162 usage_text += "%s %s |" % (k,(" ".join(usage_dict[k])))
163 usage_text = usage_text[:-1] + "]"
164 usage_text = _(usage_text)
166 return usage_text
/external/lldb/tools/driver/
DDriver.cpp70 …const char * usage_text; // Full text explaining what this options does and what (… member
336 OutputFormattedUsageText (out, indent_level, option_table[i].usage_text, screen_width); in ShowUsage()