Home
last modified time | relevance | path

Searched refs:subCommands (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/commandline/
DCommandParser.kt65 val subCommands: List<SubCommand> = _subCommands constant in com.android.systemui.statusbar.commandline.CommandParser
104 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()
DParseableCommand.kt154 parser.subCommands.filter { it.cmd.help }.map { it.cmd } in subCmdsRequestingHelp()
229 val (reqSub, optSub) = parser.subCommands.partition { it is RequiredSubCommand<*> } in help()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/commandline/
DParseableCommandTest.kt74 val subCommands = myCommand.parser.subCommands in testFactoryMethods() constant
86 val reqSub = subCommands.filter { it is RequiredSubCommand<*> } in testFactoryMethods()
87 val optSub = subCommands.filter { it is OptionalSubCommand<*> } in testFactoryMethods()