Home
last modified time | relevance | path

Searched refs:IsDashDashCommand (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp172 bool CommandAlias::IsDashDashCommand() { in IsDashDashCommand() function in CommandAlias
195 (GetUnderlyingCommand()->IsDashDashCommand() ? eLazyBoolYes in IsDashDashCommand()
H A DCommandObject.cpp66 if (!IsDashDashCommand() && GetOptions() != nullptr) in GetSyntax()
72 if (!IsDashDashCommand() && WantsRawCommandString() && GetOptions() && in GetSyntax()
688 if (!IsDashDashCommand() && options && options->NumCommandOptions() > 0) { in GenerateHelpText()
H A DOptions.cpp407 const bool only_print_args = cmd.IsDashDashCommand(); in GenerateOptionUsage()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h49 bool IsDashDashCommand() override;
H A DCommandObject.h159 virtual bool IsDashDashCommand() { return false; } in IsDashDashCommand() function