Home
last modified time | relevance | path

Searched refs:textJson (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_accessibility_manager.cpp4055 nlohmann::json textJson = nlohmann::json::parse(text, nullptr, false); in SearchElementInfosByTextNG() local
4056 if (textJson.is_null() || textJson.is_discarded() || !textJson.contains("type")) { in SearchElementInfosByTextNG()
4059 if (textJson["type"] == "textType") { in SearchElementInfosByTextNG()
4064 if (!textJson.contains("value")) { in SearchElementInfosByTextNG()
4067 SearchParameter param {0, textJson["value"], 0, uiExtensionOffset}; in SearchElementInfosByTextNG()
6026 nlohmann::json textJson = nlohmann::json::parse(text, nullptr, false); in FindTextByTextHint() local
6028 if (!textJson.is_null() && !textJson.is_discarded() && textJson.contains("value")) { in FindTextByTextHint()
6029 value = textJson["value"]; in FindTextByTextHint()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/
H A Dweb_pattern.cpp176 std::string ParseTextJsonValue(const std::string& textJson) in ParseTextJsonValue() argument
178 auto sourceJson = JsonUtil::ParseJsonString(textJson); in ParseTextJsonValue()