/base/inputmethod/imf/services/include/ |
H A D | sys_cfg_parser.h | 35 GetValue(node, GET_NAME(systemInputMethodConfigAbility), systemInputMethodConfigAbility); 36 GetValue(node, GET_NAME(defaultInputMethod), defaultInputMethod); 37 GetValue(node, GET_NAME(enableInputMethodFeature), enableInputMethodFeature); 38 GetValue(node, GET_NAME(enableFullExperienceFeature), enableFullExperienceFeature); 46 return GetValue(node, GET_NAME(systemConfig), systemConfig); 57 auto ret = GetValue(node, GET_NAME(inputType), typeTemp); 62 ret = GetValue(node, GET_NAME(bundleName), bundleName) && ret; 63 ret = GetValue(node, GET_NAME(subtypeId), subName) && ret; 71 return GetValue(node, GET_NAME(supportedInputTypeList), inputType); 83 auto ret = GetValue(nod [all...] |
H A D | ime_cfg_manager.h | 48 auto ret = GetValue(node, GET_NAME(userId), userId); 49 ret = GetValue(node, GET_NAME(currentIme), currentIme) && ret; 50 ret = GetValue(node, GET_NAME(currentSubName), currentSubName) && ret; 51 ret = GetValue(node, GET_NAME(isDefaultImeSet), isDefaultImeSet) && ret; 64 return GetValue(node, GET_NAME(imeCfgList), imePersistInfo);
|
H A D | ime_info_inquirer.h | 56 GetValue(node, GET_NAME(label), label); 57 auto ret = GetValue(node, GET_NAME(id), id); 58 GetValue(node, GET_NAME(icon), icon); 59 GetValue(node, GET_NAME(mode), mode); 60 GetValue(node, GET_NAME(locale), locale); 69 return GetValue(node, GET_NAME(subtypes), subtypes, MAX_SUBTYPE_NUM);
|
/base/inputmethod/imf/frameworks/js/napi/common/ |
H A D | js_util.h | 29 static bool GetValue(napi_env env, napi_value in, std::string &out);
30 static bool GetValue(napi_env env, napi_value in, std::u16string &out);
31 static bool GetValue(napi_env env, napi_value in, int32_t &out);
32 static bool GetValue(napi_env env, napi_value in, uint32_t &out);
33 static bool GetValue(napi_env env, napi_value in, int64_t &out);
34 static bool GetValue(napi_env env, napi_value in, bool &out);
35 static bool GetValue(napi_env env, napi_value in, double &out);
37 static bool GetValue(napi_env env, napi_value in, std::vector<T> &items)
in GetValue() function in OHOS::MiscServices::JsUtil 46 if (status != napi_ok || !GetValue(env, item, buff)) {
in GetValue() 55 static napi_value GetValue(napi_en 62 static napi_value GetValue(napi_env env, const std::vector<T> &items) GetValue() function in OHOS::MiscServices::JsUtil [all...] |
H A D | js_util.cpp | 29 bool JsUtil::GetValue(napi_env env, napi_value in, std::string &out)
in GetValue() function in OHOS::MiscServices::JsUtil 42 bool JsUtil::GetValue(napi_env env, napi_value in, std::u16string &out)
in GetValue() function in OHOS::MiscServices::JsUtil 45 bool ret = GetValue(env, in, tempOut);
in GetValue() 51 bool JsUtil::GetValue(napi_env env, napi_value in, int32_t &out)
in GetValue() function in OHOS::MiscServices::JsUtil 55 bool JsUtil::GetValue(napi_env env, napi_value in, uint32_t &out)
in GetValue() function in OHOS::MiscServices::JsUtil 59 bool JsUtil::GetValue(napi_env env, napi_value in, int64_t &out)
in GetValue() function in OHOS::MiscServices::JsUtil 63 bool JsUtil::GetValue(napi_env env, napi_value in, bool &out)
in GetValue() function in OHOS::MiscServices::JsUtil 67 bool JsUtil::GetValue(napi_env env, napi_value in, double &out)
in GetValue() function in OHOS::MiscServices::JsUtil 71 napi_value JsUtil::GetValue(napi_env env, napi_value in)
in GetValue() function in OHOS::MiscServices::JsUtil 75 napi_value JsUtil::GetValue(napi_en in GetValue() function in OHOS::MiscServices::JsUtil 81 napi_value JsUtil::GetValue(napi_env env, int32_t in) GetValue() function in OHOS::MiscServices::JsUtil 87 napi_value JsUtil::GetValue(napi_env env, uint32_t in) GetValue() function in OHOS::MiscServices::JsUtil 93 napi_value JsUtil::GetValue(napi_env env, int64_t in) GetValue() function in OHOS::MiscServices::JsUtil 103 napi_value JsUtil::GetValue(napi_env env, bool in) GetValue() function in OHOS::MiscServices::JsUtil [all...] |
/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/ |
H A D | js_utils.h | 107 static napi_status GetValue(napi_env env, napi_value in, int32_t &out); 108 static napi_status GetValue(napi_env env, napi_value in, uint32_t &out); 109 static napi_status GetValue(napi_env env, napi_value in, bool &out); 110 static napi_status GetValue(napi_env env, napi_value in, double &out); 111 static napi_status GetValue(napi_env env, napi_value in, std::string &out); 112 static napi_status GetValue(napi_env env, napi_value in, std::unordered_map<std::string, PrivateDataValue> &out); 113 static napi_status GetValue(napi_env env, napi_value in, PrivateDataValue &out); 114 static napi_status GetValue(napi_env env, napi_value in, const std::string &type, napi_value &out); 115 static napi_status GetValue(napi_env env, napi_value in, PanelInfo &out); 116 static napi_value GetValue(napi_en [all...] |
H A D | js_utils.cpp | 197 napi_status JsUtils::GetValue(napi_env env, napi_value in, int32_t &out) in GetValue() function in OHOS::MiscServices::JsUtils 206 napi_status JsUtils::GetValue(napi_env env, napi_value in, uint32_t &out) in GetValue() function in OHOS::MiscServices::JsUtils 214 napi_status JsUtils::GetValue(napi_env env, napi_value in, bool &out) in GetValue() function in OHOS::MiscServices::JsUtils 222 napi_status JsUtils::GetValue(napi_env env, napi_value in, double &out) in GetValue() function in OHOS::MiscServices::JsUtils 231 napi_status JsUtils::GetValue(napi_env env, napi_value in, std::string &out) in GetValue() function in OHOS::MiscServices::JsUtils 260 napi_status JsUtils::GetValue(napi_env env, napi_value in, std::unordered_map<std::string, PrivateDataValue> &out) in GetValue() function in OHOS::MiscServices::JsUtils 288 status = GetValue(env, key, keyStr); in GetValue() 289 CHECK_RETURN(status == napi_ok, "GetValue keyStr error", status); in GetValue() 292 status = GetValue(env, value, privateCommand); in GetValue() 293 CHECK_RETURN(status == napi_ok, "GetValue privateComman in GetValue() 299 napi_status JsUtils::GetValue(napi_env env, napi_value in, PrivateDataValue &out) GetValue() function in OHOS::MiscServices::JsUtils 325 napi_status JsUtils::GetValue(napi_env env, napi_value in, const std::string &type, napi_value &out) GetValue() function in OHOS::MiscServices::JsUtils 337 napi_status JsUtils::GetValue(napi_env env, napi_value in, PanelInfo &out) GetValue() function in OHOS::MiscServices::JsUtils 360 napi_value JsUtils::GetValue(napi_env env, const std::vector<InputWindowInfo> &in) GetValue() function in OHOS::MiscServices::JsUtils 377 napi_value JsUtils::GetValue(napi_env env, const InputWindowInfo &in) GetValue() function in OHOS::MiscServices::JsUtils 405 napi_status JsUtils::GetValue(napi_env env, const std::string &in, napi_value &out) GetValue() function in OHOS::MiscServices::JsUtils [all...] |
/base/update/updater/services/script/script_interpreter/ |
H A D | script_context.cpp | 97 value = inter->GetValue();
in GetParam() 175 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
184 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
201 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
215 if (value == nullptr || value->GetValue() == 0) { \
218 retValue = make_shared<IntegerValue>(this->GetValue() / value->GetValue()); \
[all...] |
H A D | script_context.h | 79 int32_t GetValue() const
in GetValue() function in Uscript::IntegerValue 101 float GetValue() const
in GetValue() function in Uscript::FloatValue 125 std::string GetValue() const
in GetValue() function in Uscript::StringValue 176 int32_t GetValue() const
in GetValue() function in Uscript::ErrorValue
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | js_util_test.cpp | 73 JsUtil::GetValue(env, in, test);
in GetInt32() 74 return JsUtil::GetValue(env, test);
in GetInt32() 81 JsUtil::GetValue(env, in, test);
in GetInt64() 82 return JsUtil::GetValue(env, test);
in GetInt64() 89 JsUtil::GetValue(env, in, test);
90 return JsUtil::GetValue(env, test);
97 JsUtil::GetValue(env, in, test);
98 return JsUtil::GetValue(env, test);
105 JsUtil::GetValue(env, in, test);
106 return JsUtil::GetValue(en [all...] |
/base/inputmethod/imf/services/json/include/ |
H A D | serializable.h | 38 static bool GetValue(cJSON *node, const std::string &name, std::string &value); 39 static bool GetValue(cJSON *node, const std::string &name, int32_t &value); 40 static bool GetValue(cJSON *node, const std::string &name, uint32_t &value); 41 static bool GetValue(cJSON *node, const std::string &name, bool &value); 42 static bool GetValue(cJSON *node, const std::string &name, Serializable &value); 44 static bool GetValue(cJSON *node, const std::string &name, std::vector<T> &values, int32_t maxNum = 0) in GetValue() function 63 ret = GetValue(item, "", values[i]) && ret; in GetValue()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_date_time_suggestion_impl.cpp | 34 ArkWebDateTime ArkWebDateTimeSuggestionImpl::GetValue() in GetValue() function in OHOS::ArkWeb::ArkWebDateTimeSuggestionImpl 36 OHOS::NWeb::DateTime nweb_date_time = nweb_date_time_suggestion_->GetValue(); in GetValue()
|
/base/hiviewdfx/hiview/plugins/usage_event_report/service/ |
H A D | usage_event_report_service.cpp | 84 cacheUsage->Update(KEY_OF_START, cacheUsage->GetValue(KEY_OF_END).GetUint64());
in ReportSysUsage() 97 uint64_t nowUsageTime = nowUsage->GetValue(key).GetUint64();
in UpdateCacheSysUsage() 98 uint64_t lastUsageTime = lastUsage == nullptr ? 0 : lastUsage->GetValue(key).GetUint64();
in UpdateCacheSysUsage() 100 cacheUsage->Update(key, curUsageTime + cacheUsage->GetValue(key).GetUint64());
in UpdateCacheSysUsage() 102 cacheUsage->Update(KEY_OF_END, nowUsage->GetValue(KEY_OF_END).GetUint64());
in UpdateCacheSysUsage()
|
/base/inputmethod/imf/services/json/src/ |
H A D | serializable.cpp | 54 bool Serializable::GetValue(cJSON *node, const std::string &name, std::string &value) in GetValue() function in OHOS::MiscServices::Serializable 65 bool Serializable::GetValue(cJSON *node, const std::string &name, int32_t &value) in GetValue() function in OHOS::MiscServices::Serializable 76 bool Serializable::GetValue(cJSON *node, const std::string &name, uint32_t &value) in GetValue() function in OHOS::MiscServices::Serializable 92 bool Serializable::GetValue(cJSON *node, const std::string &name, bool &value) in GetValue() function in OHOS::MiscServices::Serializable 103 bool Serializable::GetValue(cJSON *node, const std::string &name, Serializable &value) in GetValue() function in OHOS::MiscServices::Serializable
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_date_time_suggestion_wrapper.cpp | 38 OHOS::NWeb::DateTime ArkWebDateTimeSuggestionWrapper::GetValue() in GetValue() function in OHOS::ArkWeb::ArkWebDateTimeSuggestionWrapper 40 ArkWebDateTime ark_web_date_time = ark_web_date_time_suggestion_->GetValue(); in GetValue()
|
/base/powermgr/battery_manager/charger/src/ |
H A D | battery_config.cpp | 89 return !GetValue(key).isNull(); in IsExist() 94 Json::Value value = GetValue(key); in GetInt() 100 Json::Value value = GetValue(key); in GetString() 153 Json::Value soc = GetValue("light." + level + ".soc"); in ParseLightConf() 154 Json::Value rgb = GetValue("light." + level + ".rgb"); in ParseLightConf() 190 Json::Value BatteryConfig::GetValue(std::string key) const in GetValue() function in OHOS::PowerMgr::BatteryConfig
|
/base/inputmethod/imf/frameworks/common/ |
H A D | block_data.h | 43 T GetValue() in GetValue() function in OHOS::MiscServices::BlockData 51 bool GetValue(T &data) in GetValue() function in OHOS::MiscServices::BlockData
|
/base/hiviewdfx/hiview/base/test/unittest/common/ |
H A D | pipeline_test.cpp | 97 ASSERT_EQ(event->GetValue("EventProcessorExample1"), "Done");
in DoTest() 98 ASSERT_EQ(event->GetValue("EventProcessorExample2"), "Done");
in DoTest() 100 ASSERT_EQ(event->GetValue("EventProcessorExample3"), "");
in DoTest() 101 ASSERT_EQ(event->GetValue("EventProcessorExample4"), "");
in DoTest()
|
/base/inputmethod/imf/services/adapter/settings_data_provider/include/ |
H A D | enable_ime_data_parser.h | 48 GetValue(node, GET_NAME(enableKeyboardList), userImeCfg); 57 GetValue(node, GET_NAME(enableImeList), userImeCfg); 66 GetValue(node, GET_NAME(tempImeList), tempImeList);
|
/base/powermgr/battery_manager/services/native/src/ |
H A D | battery_config.cpp | 91 return !GetValue(key).isNull(); in IsExist() 96 Json::Value value = GetValue(key); in GetInt() 144 Json::Value soc = GetValue("light." + level + ".soc"); in ParseLightConf() 145 Json::Value rgb = GetValue("light." + level + ".rgb"); in ParseLightConf() 172 Json::Value bootActionsConfig = GetValue("boot_actions"); in ParseBootActionsConf() 229 Json::Value BatteryConfig::GetValue(std::string key) const in GetValue() function in OHOS::PowerMgr::BatteryConfig
|
/base/hiviewdfx/hiview/core/test/unittest/common/ |
H A D | platform_test_result_listener.cpp | 23 processedUnorderedEvents_[msg.GetValue("message")] = msg.sender_;
in OnUnorderedEvent()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/ |
H A D | ark_web_date_time_suggestion.h | 34 virtual ArkWebDateTime GetValue() = 0;
|
/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/parse/ |
H A D | parse_smaps_rollup_info.cpp | 34 void ParseSmapsRollupInfo::GetValue(const string &str, MemInfoData::MemInfo &memInfo) in GetValue() function in OHOS::HiviewDFX::ParseSmapsRollupInfo 83 GetValue(line, memInfo); in GetMemInfo()
|
/base/update/sys_installer/frameworks/ipc_server/src/ |
H A D | module_update_service.cpp | 182 static_cast<int32_t>(startReason.GetId()) << ", value: " << startReason.GetValue(); in OnStart() 190 strcmp(startReason.GetValue().c_str(), SA_ABNORMAL) == 0) || in OnStart() 192 strcmp(startReason.GetValue().c_str(), BMS_REVERT) == 0)) { in OnStart() 201 static_cast<int32_t>(stopReason.GetId()) << ", value: " << stopReason.GetValue(); in OnStop()
|
/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/parse/ |
H A D | parse_smaps_rollup_info.h | 31 void GetValue(const std::string &str, MemInfoData::MemInfo &memInfo);
|