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()406 cJSON *arrayNode = cJSON_GetObjectItem(objectNode, TAG_VALUE.c_str()); in ParseValueArray() local407 if (!cJSON_IsArray(arrayNode)) { in ParseValueArray()413 if (cJSON_GetArraySize(arrayNode) == 0) { in ParseValueArray()423 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseValueArray()
35 bool ParseJsonArrayLevel(const cJSON *arrayNode, const FileInfo &fileInfo);