/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/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… 139 …std::shared_ptr<MiscServices::PasteData> newPasteData = std::make_shared<MiscServices::PasteData>(… 140 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 145 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); 182 …std::shared_ptr<MiscServices::PasteData> newPasteData = std::make_shared<MiscServices::PasteData>(… 183 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… 188 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); 216 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor…
|
/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/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/test/unittest/cpp_test/mock/ |
D | global.h | 31 namespace MiscServices { 72 (void)OHOS::HiviewDFX::HiLog::Debug(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 75 (void)OHOS::HiviewDFX::HiLog::Error(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 78 (void)OHOS::HiviewDFX::HiLog::Fatal(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 81 (void)OHOS::HiviewDFX::HiLog::Info(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 84 (void)OHOS::HiviewDFX::HiLog::Warn(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \
|
/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>>; 109 MiscServices::ShareOption TransitionCopyOption(CopyOptionMode copyOption);
|
/base/web/webview/interfaces/inner_api/src/ |
D | web_clipboard_controller.cpp | 49 std::shared_ptr<MiscServices::PasteData> WebClipboardController::SplitHtml(std::shared_ptr<std::str… in SplitHtml() 53 std::shared_ptr<MiscServices::PasteData> pasteData = BuildPasteData(html, imgSrcMap); in SplitHtml() 58 std::shared_ptr<MiscServices::PasteData> pasteData) noexcept in RebuildHtml() 60 …std::vector<std::shared_ptr<MiscServices::PasteDataRecord>> pasteDataRecords = pasteData->AllRecor… in RebuildHtml() 70 std::shared_ptr<MiscServices::MineCustomData> customData = item->GetCustomData(); in RebuildHtml() 143 std::shared_ptr<MiscServices::PasteData> WebClipboardController::BuildPasteData( in BuildPasteData() 146 … std::shared_ptr<MiscServices::PasteData> pasteData = std::make_shared<MiscServices::PasteData>(); in BuildPasteData() 149 MiscServices::PasteDataRecord::Builder builder(MiscServices::MIMETYPE_TEXT_URI); in BuildPasteData() 152 auto customData = std::make_shared<MiscServices::MineCustomData>(); in BuildPasteData() 162 void WebClipboardController::RemoveAllRecord(std::shared_ptr<MiscServices::PasteData> pasteData) no… in RemoveAllRecord()
|
/base/inputmethod/imf/services/include/ |
D | global.h | 30 namespace MiscServices { 114 (void)OHOS::HiviewDFX::HiLog::Debug(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 117 (void)OHOS::HiviewDFX::HiLog::Error(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 120 (void)OHOS::HiviewDFX::HiLog::Fatal(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 123 (void)OHOS::HiviewDFX::HiLog::Info(OHOS::MiscServices::g_SMALL_SERVICES_LABEL, \ 126 (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/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/update/updateservice/services/core/ability/alarm/src/ |
D | alarm_timer_utils.cpp | 92 uint64_t AlarmTimerUtils::RegisterTimer(int64_t time, const std::shared_ptr<MiscServices::ITimerInf… in RegisterTimer() 94 …sptr<MiscServices::TimeServiceClient> systemTimer = MiscServices::TimeServiceClient::GetInstance(); in RegisterTimer() 112 …sptr<MiscServices::TimeServiceClient> systemTimer = MiscServices::TimeServiceClient::GetInstance(); in UnregisterAlarm() 121 int32_t ret = MiscServices::TimeServiceClient::GetInstance()->GetBootTimeMs(currentBootTime); in GetSystemBootTime()
|
/base/notification/distributed_notification_service/frameworks/ans/src/ |
D | reminder_request_timer.cpp | 35 sptr<MiscServices::TimeServiceClient> timer = MiscServices::TimeServiceClient::GetInstance(); in ReminderRequestTimer() 102 sptr<MiscServices::TimeServiceClient> timer = MiscServices::TimeServiceClient::GetInstance(); in UpdateTimeInfo()
|
/base/update/updateservice/services/core/ability/alarm/include/ |
D | alarm_timer_utils.h | 37 …static uint64_t RegisterTimer(int64_t time, const std::shared_ptr<MiscServices::ITimerInfo> &timer… 40 class TimerTaskInfo : public MiscServices::ITimerInfo {
|
/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/inputmethod/imf/frameworks/native/inputmethod_controller/src/ |
D | input_method_utils.cpp | 17 namespace MiscServices { namespace
|
/base/web/webview/ohos_adapter/date_time_format_adapter/src/ |
D | date_time_format_adapter_impl.cpp | 49 std::string ret = OHOS::MiscServices::TimeServiceClient::GetInstance()->GetTimeZone(); in OnReceiveEvent() 92 std::string ret = OHOS::MiscServices::TimeServiceClient::GetInstance()->GetTimeZone(); in GetTimezone()
|
/base/time/time_service/framework/js/napi/system_date_time/include/ |
D | date_time_init.h | 24 namespace MiscServices {
|
/base/time/time_service/framework/js/napi/system_timer/include/ |
D | timer_init.h | 23 namespace MiscServices {
|
D | napi_system_timer.h | 29 namespace MiscServices { 32 class ITimerInfoInstance : public OHOS::MiscServices::ITimerInfo {
|
/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 {
|