Lines Matching refs:paramValue
63 using JsonTypeCheckFunc = bool (*)(const cJSON *paramValue);
377 bool IsInt32(const cJSON *paramValue)
379 if (paramValue == nullptr) {
384 if (!cJSON_IsNumber(paramValue)) {
389 int32_t value = paramValue->valueint;
397 bool IsString(const cJSON *paramValue)
399 if (paramValue == nullptr) {
404 if (!cJSON_IsString(paramValue)) {
419 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, (*it).c_str());
420 if (paramValue == nullptr) {
434 bool res = (*func)(paramValue);