Searched refs:arrayNode (Results 1 – 3 of 3) sorted by relevance
38 cJSON *arrayNode = cJSON_GetObjectItem(objectNode, TAG_VALUE.c_str()); in ParseTranslatable() local39 if (!arrayNode || !cJSON_IsArray(arrayNode)) { in ParseTranslatable()45 if (cJSON_GetArraySize(arrayNode) == 0) { in ParseTranslatable()51 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseTranslatable()
104 bool JsonCompiler::ParseJsonArrayLevel(const cJSON *arrayNode, const FileInfo &fileInfo) in ParseJsonArrayLevel() argument106 if (!arrayNode || !cJSON_IsArray(arrayNode)) { in ParseJsonArrayLevel()112 if (cJSON_GetArraySize(arrayNode) == 0) { in ParseJsonArrayLevel()118 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseJsonArrayLevel()411 cJSON *arrayNode = cJSON_GetObjectItem(objectNode, TAG_VALUE.c_str()); in ParseValueArray() local412 if (arrayNode == nullptr) { in ParseValueArray()418 if (!cJSON_IsArray(arrayNode)) { in ParseValueArray()424 if (cJSON_GetArraySize(arrayNode) == 0) { in ParseValueArray()434 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseValueArray()
35 bool ParseJsonArrayLevel(const cJSON *arrayNode, const FileInfo &fileInfo);