Searched refs:keyString (Results 1 - 6 of 6) sorted by relevance
| /ide/tools/previewer/test/unittest/mock/ |
| H A D | KeyInputImplTest.cpp | 42 std::string keyString = "ctrl"; in TEST() local 43 KeyInputImpl::GetInstance().SetKeyEvent(keyCode, keyAction, pressedCodesVec, keyString); in TEST() 46 EXPECT_EQ(KeyInputImpl::GetInstance().keyString, keyString); in TEST()
|
| /ide/tools/previewer/mock/rich/ |
| H A D | KeyInputImpl.cpp | 48 keyEvent->key = keyString.c_str(); in DispatchOsKeyEvent() 63 keyString = keyStrVal; in SetKeyEvent()
|
| /ide/tools/previewer/mock/ |
| H A D | KeyInput.h | 38 std::string keyString; member in KeyInput
|
| /ide/tools/previewer/test/mock/mock/ |
| H A D | MockKeyInputImpl.cpp | 42 keyString = keyStrVal; in SetKeyEvent()
|
| /ide/tools/previewer/test/unittest/cli/ |
| H A D | CommandLineTest.cpp | 530 std::string msg = R"({"isInputMethod":false,"keyCode":2033,"keyAction":0,"keyString":123, in TEST_F() 554 std::string msg = R"({"isInputMethod" : false, "keyCode" : 2033, "keyAction" : 3, "keyString" : "123", in TEST_F() 569 msg = R"({"isInputMethod" : false, "keyCode" : 2033, "keyAction" : 1, "keyString" : "123", in TEST_F() 582 "keyString":"ctrl","pressedCodes":[2033]})"; in TEST_F() 590 EXPECT_EQ(KeyInputImpl::GetInstance().keyString, "ctrl"); in TEST_F() 599 EXPECT_EQ(KeyInputImpl::GetInstance().keyString, ""); in TEST_F()
|
| /ide/tools/previewer/cli/ |
| H A D | CommandLine.cpp | 1324 args["pressedCodes"].GetArraySize() < 1 || (args.IsMember("keyString") && !args["keyString"].IsString())) { in IsKeyArgsValid() 1328 if (!args.IsMember("keyString")) { in IsKeyArgsValid() 1329 ILOG("Param keyString is lost, it will be empty string."); in IsKeyArgsValid() 1381 std::string keyString = ""; in RunAction() local 1382 if (args.IsMember("keyString") && args["keyString"].IsString()) { in RunAction() 1383 keyString = args["keyString"].AsString(); in RunAction() 1385 KeyInputImpl::GetInstance().SetKeyEvent(keyCode, keyAction, pressedCodesVec, keyString); in RunAction() [all...] |
Completed in 7 milliseconds