Searched refs:subCommands (Results 1 – 3 of 3) sorted by relevance
65 val subCommands: List<SubCommand> = _subCommands constant in com.android.systemui.statusbar.commandline.CommandParser104 subCommands in parse()199 get() = subCommands.filter { (it is RequiredSubCommand<*> && !it.handled) } in <lambda>()202 get() = subCommands.filter { !it.validationStatus } in <lambda>()217 cmd.parser.subCommands.isNotEmpty() in subCommandContainsSubCommands()
154 parser.subCommands.filter { it.cmd.help }.map { it.cmd } in subCmdsRequestingHelp()229 val (reqSub, optSub) = parser.subCommands.partition { it is RequiredSubCommand<*> } in help()
74 val subCommands = myCommand.parser.subCommands in testFactoryMethods() constant86 val reqSub = subCommands.filter { it is RequiredSubCommand<*> } in testFactoryMethods()87 val optSub = subCommands.filter { it is OptionalSubCommand<*> } in testFactoryMethods()