Home
last modified time | relevance | path

Searched refs:subCommand (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/commandline/
DParseableCommandTest.kt66 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() constant
288 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()
DCommandParserTest.kt151 parser.require(parser.subCommand(cmd)) in parseCommandWithSubCommand_required_provided()
169 parser.require(parser.subCommand(cmd)) in parseCommandWithSubCommand_required_notProvided()
/frameworks/base/packages/SystemUI/src/com/android/systemui/decor/
DScreenDecorCommand.kt51 val roundedTop: RoundedCornerSubCommand? by subCommand(RoundedCornerSubCommand("rounded-top"))
54 subCommand(RoundedCornerSubCommand("rounded-bottom"))
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DStatusBarInsetsCommand.kt29 val bottomMargin: BottomMarginCommand? by subCommand(BottomMarginCommand())
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/commandline/
DParseableCommand.kt283 fun <T : ParseableCommand> subCommand( in subCommand() method in com.android.systemui.statusbar.commandline.ParseableCommand
285 ) = parser.subCommand(command) in subCommand()
DCommandParser.kt308 internal fun <T : ParseableCommand> subCommand( in subCommand() method in com.android.systemui.statusbar.commandline.CommandParser