Searched refs:subCommand (Results 1 – 6 of 6) sorted by relevance
66 val optionalSubCommand by subCommand(mySubCommand) in testFactoryMethods()67 val requiredSubCommand by subCommand(mySubCommand2).required() in testFactoryMethods()252 val subCmd by subCommand(subCmd) in commandWithSubCommand()278 val subCommand by subCommand(subCmd) in complexCommandWithSubCommands_reusedNames() constant288 assertThat(myCommand.subCommand).isNotNull() in complexCommandWithSubCommands_reusedNames()289 assertThat(myCommand.subCommand?.flag1).isTrue() in complexCommandWithSubCommands_reusedNames()290 assertThat(myCommand.subCommand?.param1).isEqualTo("arg2") in complexCommandWithSubCommands_reusedNames()
151 parser.require(parser.subCommand(cmd)) in parseCommandWithSubCommand_required_provided()169 parser.require(parser.subCommand(cmd)) in parseCommandWithSubCommand_required_notProvided()
51 val roundedTop: RoundedCornerSubCommand? by subCommand(RoundedCornerSubCommand("rounded-top"))54 subCommand(RoundedCornerSubCommand("rounded-bottom"))
29 val bottomMargin: BottomMarginCommand? by subCommand(BottomMarginCommand())
283 fun <T : ParseableCommand> subCommand( in subCommand() method in com.android.systemui.statusbar.commandline.ParseableCommand285 ) = parser.subCommand(command) in subCommand()
308 internal fun <T : ParseableCommand> subCommand( in subCommand() method in com.android.systemui.statusbar.commandline.CommandParser