Searched refs:textJson (Results 1 – 2 of 2) sorted by relevance
4055 nlohmann::json textJson = nlohmann::json::parse(text, nullptr, false); in SearchElementInfosByTextNG() local4056 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() local6028 if (!textJson.is_null() && !textJson.is_discarded() && textJson.contains("value")) { in FindTextByTextHint()6029 value = textJson["value"]; in FindTextByTextHint()
176 std::string ParseTextJsonValue(const std::string& textJson) in ParseTextJsonValue() argument178 auto sourceJson = JsonUtil::ParseJsonString(textJson); in ParseTextJsonValue()