Home
last modified time | relevance | path

Searched refs:MiscServices (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/
Dimf_adapter_impl.cpp50 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/
Dimf_adapter_impl_test.cpp229 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/
Dinput_method_engine_module.cpp29 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/
Dclipboard_controller_test.cpp59 …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/
Dimf_adapter_impl.h23 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/
Dglobal.h30 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/
Dinput_method_module.cpp26 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/
Dpasteboard_client_adapter_impl.h26 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/
Dweb_clipboard_controller.h40 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/
Dweb_clipboard_controller.cpp47 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/
Dreminder_request_timer.cpp35 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/
Dinput_method_utils.cpp17 namespace MiscServices { namespace
/base/time/time_service/framework/js/napi/system_timer/include/
Dnapi_system_timer.h28 namespace MiscServices {
31 class ITimerInfoInstance : public OHOS::MiscServices::ITimerInfo {
Dtimer_init.h23 namespace MiscServices {
/base/account/os_account/services/accountmgr/src/
Daccount_info_report.cpp37 …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/
Dsys_usage_event_factory.cpp61 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/
Ddate_time_init.h24 namespace MiscServices {
/base/time/time_service/services/time/src/
Ditimer_info.cpp19 namespace MiscServices { namespace
Dtimer_notify_callback.cpp19 namespace MiscServices { namespace
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
Dinput_method_status.h21 namespace OHOS ::MiscServices {
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
Dinput_method_ability_utils.h22 namespace MiscServices {
Dpanel_status_listener.h20 namespace MiscServices {
/base/theme/wallpaper_mgr/frameworks/native/include/
Duv_queue.h24 namespace OHOS::MiscServices {
/base/theme/wallpaper_mgr/utils/dfx/hisysevent_adapter/
Dfault_reporter.h22 namespace MiscServices {
/base/time/time_service/services/dfx/include/
Dtime_sysevent.h22 namespace MiscServices {

12345678910>>...12