Lines Matching refs:jsonValue
33 * @param jsonValue json value from the file content
37 static bool LoadJsonValueFromFile(nlohmann::json& jsonValue, const std::string& filePath);
42 * @param jsonValue json value from the string
46 static bool LoadJsonValueFromContent(nlohmann::json& jsonValue, const std::string& content);
51 * @param jsonValue json value to be dumped to the file
55 static bool DumpJsonValueToFile(const nlohmann::json& jsonValue, const std::string& filePath);
60 * @param jsonValue json object
65 static bool GetInt32FromJsonValue(const nlohmann::json& jsonValue, const std::string& key, int32_t& value);
70 * @param jsonValue json object
75 static bool GetBoolFromJsonValue(const nlohmann::json& jsonValue, const std::string& key, bool& value);
80 * @param jsonValue json object
85 static bool GetStringFromJsonValue(const nlohmann::json& jsonValue, const std::string& key, std::string& value);
90 * @param jsonValue json object
95 static bool GetObjFromJsonValue(const nlohmann::json& jsonValue, const std::string& key, nlohmann::json& value);
100 * @param jsonValue json object
105 static bool GetArrayFromJsonValue(const nlohmann::json& jsonValue, const std::string& key, nlohmann::json& value);
110 * @param jsonValue json object
115 static bool GetStrArrFromJsonValue(const nlohmann::json& jsonValue, const std::string& key,