• Home
  • Raw
  • Download

Lines Matching refs:CommandLineFactory

24 CommandLineFactory::CommandTypeMap CommandLineFactory::typeMap = CommandLineFactory::CommandTypeMap…
25 CommandLineFactory::CommandLineFactory() {} in CommandLineFactory() function in CommandLineFactory
29 void CommandLineFactory::InitCommandMap() in InitCommandMap()
35 typeMap["BackClicked"] = &CommandLineFactory::CreateObject<BackClickedCommand>; in InitCommandMap()
36 typeMap["inspector"] = &CommandLineFactory::CreateObject<InspectorJSONTree>; in InitCommandMap()
37 typeMap["inspectorDefault"] = &CommandLineFactory::CreateObject<InspectorDefault>; in InitCommandMap()
38 typeMap["ColorMode"] = &CommandLineFactory::CreateObject<ColorModeCommand>; in InitCommandMap()
39 typeMap["Orientation"] = &CommandLineFactory::CreateObject<OrientationCommand>; in InitCommandMap()
40 typeMap["ResolutionSwitch"] = &CommandLineFactory::CreateObject<ResolutionSwitchCommand>; in InitCommandMap()
41 typeMap["CurrentRouter"] = &CommandLineFactory::CreateObject<CurrentRouterCommand>; in InitCommandMap()
42 typeMap["ReloadRuntimePage"] = &CommandLineFactory::CreateObject<ReloadRuntimePageCommand>; in InitCommandMap()
43 typeMap["FontSelect"] = &CommandLineFactory::CreateObject<FontSelectCommand>; in InitCommandMap()
44 typeMap["MemoryRefresh"] = &CommandLineFactory::CreateObject<MemoryRefreshCommand>; in InitCommandMap()
45 typeMap["LoadDocument"] = &CommandLineFactory::CreateObject<LoadDocumentCommand>; in InitCommandMap()
46 typeMap["FastPreviewMsg"] = &CommandLineFactory::CreateObject<FastPreviewMsgCommand>; in InitCommandMap()
47 typeMap["DropFrame"] = &CommandLineFactory::CreateObject<DropFrameCommand>; in InitCommandMap()
48 typeMap["KeyPress"] = &CommandLineFactory::CreateObject<KeyPressCommand>; in InitCommandMap()
49 typeMap["LoadContent"] = &CommandLineFactory::CreateObject<LoadContentCommand>; in InitCommandMap()
50 typeMap["FoldStatus"] = &CommandLineFactory::CreateObject<FoldStatusCommand>; in InitCommandMap()
52 typeMap["Power"] = &CommandLineFactory::CreateObject<PowerCommand>; in InitCommandMap()
53 typeMap["Volume"] = &CommandLineFactory::CreateObject<VolumeCommand>; in InitCommandMap()
54 typeMap["Barometer"] = &CommandLineFactory::CreateObject<BarometerCommand>; in InitCommandMap()
55 typeMap["Location"] = &CommandLineFactory::CreateObject<LocationCommand>; in InitCommandMap()
56 typeMap["KeepScreenOnState"] = &CommandLineFactory::CreateObject<KeepScreenOnStateCommand>; in InitCommandMap()
57 typeMap["WearingState"] = &CommandLineFactory::CreateObject<WearingStateCommand>; in InitCommandMap()
58 typeMap["BrightnessMode"] = &CommandLineFactory::CreateObject<BrightnessModeCommand>; in InitCommandMap()
59 typeMap["ChargeMode"] = &CommandLineFactory::CreateObject<ChargeModeCommand>; in InitCommandMap()
60 typeMap["Brightness"] = &CommandLineFactory::CreateObject<BrightnessCommand>; in InitCommandMap()
61 typeMap["HeartRate"] = &CommandLineFactory::CreateObject<HeartRateCommand>; in InitCommandMap()
62 typeMap["StepCount"] = &CommandLineFactory::CreateObject<StepCountCommand>; in InitCommandMap()
63 …typeMap["DistributedCommunications"] = &CommandLineFactory::CreateObject<DistributedCommunications… in InitCommandMap()
64 typeMap["CrownRotate"] = &CommandLineFactory::CreateObject<MouseWheelCommand>; in InitCommandMap()
66 typeMap["MousePress"] = &CommandLineFactory::CreateObject<TouchPressCommand>; in InitCommandMap()
67 typeMap["MouseRelease"] = &CommandLineFactory::CreateObject<TouchReleaseCommand>; in InitCommandMap()
68 typeMap["MouseMove"] = &CommandLineFactory::CreateObject<TouchMoveCommand>; in InitCommandMap()
69 typeMap["Language"] = &CommandLineFactory::CreateObject<LanguageCommand>; in InitCommandMap()
70 typeMap["SupportedLanguages"] = &CommandLineFactory::CreateObject<SupportedLanguagesCommand>; in InitCommandMap()
71 typeMap["exit"] = &CommandLineFactory::CreateObject<ExitCommand>; in InitCommandMap()
72 typeMap["Resolution"] = &CommandLineFactory::CreateObject<ResolutionCommand>; in InitCommandMap()
73 typeMap["DeviceType"] = &CommandLineFactory::CreateObject<DeviceTypeCommand>; in InitCommandMap()
74 typeMap["PointEvent"] = &CommandLineFactory::CreateObject<PointEventCommand>; in InitCommandMap()
77 unique_ptr<CommandLine> CommandLineFactory::CreateCommandLine(string command, in CreateCommandLine()
105 unique_ptr<CommandLine> CommandLineFactory::CreateObject(CommandLine::CommandType type, in CreateObject()