HomeSort by relevance Sort by last modified time
    Searched refs:CommandType (Results 1 - 23 of 23) sorted by null

  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
command_utils.cpp 30 /* static */ CommandType CommandUtils::getCommandType(const std::string &commandName) {
32 return CommandType::Info;
34 return CommandType::Diff;
36 return CommandType::Makedict;
38 return CommandType::Header;
40 return CommandType::Help;
42 return CommandType::Unknown;
53 const CommandType commandType) {
54 switch (commandType) {
    [all...]
command_utils.h 29 enum class CommandType : int {
40 static CommandType getCommandType(const std::string &commandName);
43 static std::function<int(int, char **)> getCommandExecutor(const CommandType commandType);
  /packages/inputmethods/LatinIME/native/dicttoolkit/tests/utils/
command_utils_test.cpp 26 EXPECT_EQ(CommandUtils::getCommandType(""), CommandType::Unknown);
27 EXPECT_EQ(CommandUtils::getCommandType("abc"), CommandType::Unknown);
28 EXPECT_EQ(CommandUtils::getCommandType("info"), CommandType::Info);
29 EXPECT_EQ(CommandUtils::getCommandType("diff"), CommandType::Diff);
30 EXPECT_EQ(CommandUtils::getCommandType("makedict"), CommandType::Makedict);
31 EXPECT_EQ(CommandUtils::getCommandType("header"), CommandType::Header);
32 EXPECT_EQ(CommandUtils::getCommandType("help"), CommandType::Help);
  /packages/inputmethods/LatinIME/native/dicttoolkit/
dict_toolkit_main.cpp 32 const CommandType commandType = CommandUtils::getCommandType(argv[1]);
33 if (commandType == CommandType::Unknown) {
37 const auto executor = CommandUtils::getCommandExecutor(commandType);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
AppInterface.java 63 public static enum CommandType {
88 CommandType(int value) {
97 * Create a CommandType object.
99 * @param value Integer value to be converted to a CommandType object.
100 * @return CommandType object whose "Type of Command" value is {@code
101 * value}. If no CommandType object has that value, null is
104 public static CommandType fromInt(int value) {
105 for (CommandType e : CommandType.values()) {
CatService.java 392 cmdParams.mCmdDet.typeOfCommand = CommandType.SET_UP_IDLE_MODE_TEXT.value();
475 } else if (cmdParams.getCommandType() == CommandType.OPEN_CHANNEL) {
497 ((cmdParams.getCommandType() == CommandType.CLOSE_CHANNEL) ||
498 (cmdParams.getCommandType() == CommandType.RECEIVE_DATA) ||
499 (cmdParams.getCommandType() == CommandType.SEND_DATA))) {
605 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
    [all...]
CommandParams.java 34 AppInterface.CommandType getCommandType() {
35 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
CatCmdMessage.java 208 public AppInterface.CommandType getCmdType() {
209 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
ResponseData.java 26 import com.android.internal.telephony.cat.AppInterface.CommandType;
226 int tag = 0x80 | CommandType.PROVIDE_LOCAL_INFORMATION.value();
CommandParamsFactory.java 143 AppInterface.CommandType cmdType = AppInterface.CommandType
612 AppInterface.CommandType cmdType = AppInterface.CommandType
619 } else if (cmdType == AppInterface.CommandType.SET_UP_MENU) {
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.h 35 NCommandType::EEnum CommandType;
39 bool IsTestCommand() const { return CommandType == NCommandType::kTest; }
ArchiveCommandLine.cpp 248 switch (CommandType)
260 switch (CommandType)
271 switch (CommandType)
308 command.CommandType = (NCommandType::EEnum)index;
313 command.CommandType = (NCommandType::kRename);
748 NCommandType::EEnum commandType,
753 switch (commandType)
1017 options.Command.CommandType != NCommandType::kBenchmark &&
1018 options.Command.CommandType != NCommandType::kInfo &&
1019 options.Command.CommandType != NCommandType::kHash;
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXCon/
SfxCon.cpp 145 NCommandType::EEnum CommandType;
161 command.CommandType = (NCommandType::EEnum)index;
167 return kCommandRecursedDefault[CommandType];
304 command.CommandType = NCommandType::kFullExtract;
368 if (command.CommandType != NCommandType::kList)
392 eo.TestMode = command.CommandType == NCommandType::kTest;
  /device/google/contexthub/util/nanotool/
nanomessage.h 163 enum class CommandType {
contexthub.cpp 192 ConfigureSensorRequest::CommandType::Enable);
226 ConfigureSensorRequest::CommandType::Disable);
366 ConfigureSensorRequest::CommandType::Calibrate);
400 ConfigureSensorRequest::CommandType::SelfTest);
586 ConfigureSensorRequest::CommandType::ConfigData);
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 490 || options.Command.CommandType == NCommandType::kList
512 || options.Command.CommandType == NCommandType::kHash
513 || options.Command.CommandType == NCommandType::kBenchmark)
526 if (options.Command.CommandType == NCommandType::kInfo)
643 else if (options.Command.CommandType == NCommandType::kBenchmark)
654 else if (isExtractGroupCommand || options.Command.CommandType == NCommandType::kList)
861 else if (options.Command.CommandType == NCommandType::kHash)
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java     [all...]
  /external/ImageMagick/MagickCore/
animate.c 235 } CommandType;
251 *XMagickCommand(Display *,XResourceInfo *,XWindows *,const CommandType,
356 % XWindows *windows,const CommandType command_type,Image **image,
379 XWindows *windows,const CommandType command_type,Image **image,
    [all...]
display.c     [all...]
  /external/deqp/modules/gles31/functional/
es31fSynchronizationTests.cpp 973 enum CommandType
986 CommandType type;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 1060 milliseconds