Searched refs:codePoint (Results 1 - 13 of 13) sorted by relevance
| /ide/tools/previewer/mock/ |
| H A D | KeyInput.cpp | 18 KeyInput::KeyInput() : codePoint(0), keyCode(-1), keyAction(-1) in KeyInput()
|
| H A D | KeyInput.h | 35 unsigned int codePoint; // unicode for IME member in KeyInput
|
| /ide/tools/previewer/test/unittest/mock_lite/ |
| H A D | KeyInputImplTest.cpp | 24 EXPECT_EQ(instance.codePoint, 0); in TEST()
|
| /ide/tools/previewer/mock/rich/ |
| H A D | KeyInputImpl.cpp | 38 JsAppImpl::GetInstance().DispatchInputMethodEvent(codePoint); in DispatchOsInputMethodEvent() 68 codePoint = codePointVal; in SetCodePoint()
|
| /ide/tools/previewer/test/fuzztest/commandparse_fuzzer/ |
| H A D | CommonCommandParseFuzzer.cpp | 39 {"KeyPress", R"({"isInputMethod":true,"codePoint":33})"},
|
| /ide/tools/previewer/test/mock/mock/ |
| H A D | MockKeyInputImpl.cpp | 51 codePoint = codePointVal; in SetCodePoint()
|
| /ide/tools/previewer/test/unittest/mock/ |
| H A D | KeyInputImplTest.cpp | 28 EXPECT_EQ(KeyInputImpl::GetInstance().codePoint, code); in TEST()
|
| /ide/tools/previewer/test/mock/arkui/ |
| H A D | MockAceAbility.cpp | 56 bool AceAbility::OnInputMethodEvent(const unsigned int codePoint) const in OnInputMethodEvent()
|
| /ide/tools/previewer/test/mock/jsapp/ |
| H A D | MockJsAppImpl.cpp | 141 void JsAppImpl::DispatchInputMethodEvent(const unsigned int codePoint) const in DispatchInputMethodEvent()
|
| /ide/tools/previewer/jsapp/rich/ |
| H A D | JsAppImpl.h | 92 void DispatchInputMethodEvent(const unsigned int codePoint) const;
|
| H A D | JsAppImpl.cpp | 863 void JsAppImpl::DispatchInputMethodEvent(const unsigned int codePoint) const in DispatchInputMethodEvent() 865 ability->OnInputMethodEvent(codePoint); in DispatchInputMethodEvent()
|
| /ide/tools/previewer/test/unittest/cli/ |
| H A D | CommandLineTest.cpp | 503 int codePoint = 2033; in TEST_F() local 504 std::string msg = R"({"isInputMethod":"aaa","codePoint":2033})"; in TEST_F() 512 args1.Replace("codePoint", "aaaa"); in TEST_F() 518 args1.Replace("codePoint", codePoint); in TEST_F() 521 KeyInputImpl::GetInstance().codePoint = 0; in TEST_F() 524 EXPECT_EQ(KeyInputImpl::GetInstance().codePoint, codePoint); in TEST_F()
|
| /ide/tools/previewer/cli/ |
| H A D | CommandLine.cpp | 1312 if (!args.IsMember("codePoint") || !args["codePoint"].IsInt()) { in IsImeArgsValid() 1313 ELOG("Param codePoint's value is invalid."); in IsImeArgsValid() 1369 unsigned int codePoint = args["codePoint"].AsInt(); in RunAction() local 1370 KeyInputImpl::GetInstance().SetCodePoint(codePoint); in RunAction()
|
Completed in 13 milliseconds