Home
last modified time | relevance | path

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

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