/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/ |
D | imf_adapter_impl.cpp | 50 void IMFTextListenerAdapterImpl::SendKeyEventFromInputMethod(const MiscServices::KeyEvent& event) in SendKeyEventFromInputMethod() 58 void IMFTextListenerAdapterImpl::SendKeyboardStatus(const MiscServices::KeyboardStatus& keyboardSta… in SendKeyboardStatus() 62 if (keyboardStatus == MiscServices::KeyboardStatus::SHOW) { in SendKeyboardStatus() 64 } else if (keyboardStatus == MiscServices::KeyboardStatus::HIDE) { in SendKeyboardStatus() 71 void IMFTextListenerAdapterImpl::SendFunctionKey(const MiscServices::FunctionKey& functionKey) in SendFunctionKey() 76 case MiscServices::EnterKeyType::UNSPECIFIED: in SendFunctionKey() 79 case MiscServices::EnterKeyType::NONE: in SendFunctionKey() 82 case MiscServices::EnterKeyType::GO: in SendFunctionKey() 85 case MiscServices::EnterKeyType::SEARCH: in SendFunctionKey() 88 case MiscServices::EnterKeyType::SEND: in SendFunctionKey() [all …]
|
/base/web/webview/test/unittest/ohos_adapter/imf_adapter_test/ |
D | imf_adapter_impl_test.cpp | 229 MiscServices::KeyEvent event; 230 MiscServices::FunctionKey functionKey; 235 listenerTest->SendKeyboardStatus(MiscServices::KeyboardStatus::SHOW); 237 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::UNSPECIFIED); 240 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::NONE); 242 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::GO); 244 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::SEARCH); 246 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::SEND); 248 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::NEXT); 250 functionKey.SetEnterKeyType(MiscServices::EnterKeyType::DONE); [all …]
|
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/ |
D | input_method_engine_module.cpp | 29 OHOS::MiscServices::JsInputMethodEngineSetting::Init(env, exports); in Init() 30 OHOS::MiscServices::JsKeyboardControllerEngine::Init(env, exports); in Init() 31 OHOS::MiscServices::JsTextInputClientEngine::Init(env, exports); in Init() 32 OHOS::MiscServices::JsKeyboardDelegateSetting::Init(env, exports); in Init()
|
/base/web/webview/test/unittest/inner_api_test/clipboard_controller_test/ |
D | clipboard_controller_test.cpp | 59 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 77 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 96 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 137 …std::shared_ptr<MiscServices::PasteData> newPasteData = std::make_shared<MiscServices::PasteData>(… 138 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 143 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); 175 …std::shared_ptr<MiscServices::PasteData> newPasteData = std::make_shared<MiscServices::PasteData>(… 176 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 181 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); 206 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor…
|
/base/web/webview/ohos_adapter/inputmethodframework_adapter/include/ |
D | imf_adapter_impl.h | 23 class IMFTextListenerAdapterImpl : public MiscServices::OnTextChangedListener { 35 void SendKeyEventFromInputMethod(const MiscServices::KeyEvent &event) override; 37 void SendKeyboardStatus(const MiscServices::KeyboardStatus& keyboardStatus) override; 39 void SendFunctionKey(const MiscServices::FunctionKey& functionKey) override; 43 void MoveCursor(const MiscServices::Direction direction) override; 83 sptr<MiscServices::OnTextChangedListener> textListener_ = nullptr;
|
/base/inputmethod/imf/services/include/ |
D | global.h | 30 namespace MiscServices { 107 (void)OHOS::HiviewDFX::HiLog::Debug(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 110 (void)OHOS::HiviewDFX::HiLog::Error(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 113 (void)OHOS::HiviewDFX::HiLog::Fatal(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 116 (void)OHOS::HiviewDFX::HiLog::Info(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 119 (void)OHOS::HiviewDFX::HiLog::Warn(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \
|
/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/ |
D | input_method_module.cpp | 26 OHOS::MiscServices::JsGetInputMethodSetting::Init(env, exports); in Init() 27 OHOS::MiscServices::JsGetInputMethodController::Init(env, exports); in Init() 28 OHOS::MiscServices::JsInputMethod::Init(env, exports); in Init()
|
/base/web/webview/ohos_adapter/pasteboard_adapter/include/ |
D | pasteboard_client_adapter_impl.h | 26 class PasteboardObserverAdapterImpl : public MiscServices::PasteboardObserver { 38 std::shared_ptr<MiscServices::PasteDataRecord> record); 51 std::shared_ptr<MiscServices::PasteDataRecord> GetRecord(); 57 std::shared_ptr<MiscServices::PasteDataRecord> record_; 58 std::shared_ptr<MiscServices::PasteDataRecord::Builder> builder_; 71 explicit PasteDataAdapterImpl(std::shared_ptr<MiscServices::PasteData> data); 82 std::shared_ptr<MiscServices::PasteData> data_; 86 std::map<PasteboardObserverAdapter*, sptr<MiscServices::PasteboardObserver>>;
|
/base/web/webview/interfaces/inner_api/include/ |
D | web_clipboard_controller.h | 40 std::shared_ptr<MiscServices::PasteData> SplitHtml(std::shared_ptr<std::string> html) noexcept; 41 …std::shared_ptr<std::string> RebuildHtml(std::shared_ptr<MiscServices::PasteData> pasteData) noexc… 48 std::shared_ptr<MiscServices::PasteData> BuildPasteData( 50 void RemoveAllRecord(std::shared_ptr<MiscServices::PasteData> pasteData) noexcept;
|
/base/web/webview/interfaces/inner_api/src/ |
D | web_clipboard_controller.cpp | 47 std::shared_ptr<MiscServices::PasteData> WebClipboardController::SplitHtml(std::shared_ptr<std::str… in SplitHtml() 51 std::shared_ptr<MiscServices::PasteData> pasteData = BuildPasteData(html, imgSrcMap); in SplitHtml() 56 std::shared_ptr<MiscServices::PasteData> pasteData) noexcept in RebuildHtml() 58 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… in RebuildHtml() 68 std::shared_ptr<MiscServices::MineCustomData> customData = item->GetCustomData(); in RebuildHtml() 141 std::shared_ptr<MiscServices::PasteData> WebClipboardController::BuildPasteData( in BuildPasteData() 144 … std::shared_ptr<MiscServices::PasteData> pasteData = std::make_shared<MiscServices::PasteData>(); in BuildPasteData() 147 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); in BuildPasteData() 150 auto customData = std::make_shared<MiscServices::MineCustomData>(); in BuildPasteData() 160 void WebClipboardController::RemoveAllRecord(std::shared_ptr<MiscServices::PasteData> pasteData) no… in RemoveAllRecord()
|
/base/notification/distributed_notification_service/frameworks/ans/src/ |
D | reminder_request_timer.cpp | 35 sptr<MiscServices::TimeServiceClient> timer = MiscServices::TimeServiceClient::GetInstance(); in ReminderRequestTimer() 101 sptr<MiscServices::TimeServiceClient> timer = MiscServices::TimeServiceClient::GetInstance(); in UpdateTimeInfo()
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/ |
D | input_method_utils.cpp | 17 namespace MiscServices { namespace
|
/base/time/time_service/framework/js/napi/system_timer/include/ |
D | napi_system_timer.h | 28 namespace MiscServices { 31 class ITimerInfoInstance : public OHOS::MiscServices::ITimerInfo {
|
D | timer_init.h | 23 namespace MiscServices {
|
/base/account/os_account/services/accountmgr/src/ |
D | account_info_report.cpp | 37 …jsonResult["bootTime"] = std::to_string(MiscServices::TimeServiceClient::GetInstance()->GetBootTim… in TransformIntoJson() 38 …jsonResult["wallTime"] = std::to_string(MiscServices::TimeServiceClient::GetInstance()->GetWallTim… in TransformIntoJson()
|
/base/hiviewdfx/hiview/plugins/usage_event_report/service/factory/ |
D | sys_usage_event_factory.cpp | 61 auto powerTime = MiscServices::TimeServiceClient::GetInstance()->GetBootTimeMs(); in GetBootTime() 72 auto runningTime = MiscServices::TimeServiceClient::GetInstance()->GetMonotonicTimeMs(); in GetMonotonicTime()
|
/base/time/time_service/framework/js/napi/system_date_time/include/ |
D | date_time_init.h | 24 namespace MiscServices {
|
/base/time/time_service/services/time/src/ |
D | itimer_info.cpp | 19 namespace MiscServices { namespace
|
D | timer_notify_callback.cpp | 19 namespace MiscServices { namespace
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/ |
D | input_method_status.h | 21 namespace OHOS ::MiscServices {
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/ |
D | input_method_ability_utils.h | 22 namespace MiscServices {
|
D | panel_status_listener.h | 20 namespace MiscServices {
|
/base/theme/wallpaper_mgr/frameworks/native/include/ |
D | uv_queue.h | 24 namespace OHOS::MiscServices {
|
/base/theme/wallpaper_mgr/utils/dfx/hisysevent_adapter/ |
D | fault_reporter.h | 22 namespace MiscServices {
|
/base/time/time_service/services/dfx/include/ |
D | time_sysevent.h | 22 namespace MiscServices {
|