Home
last modified time | relevance | path

Searched refs:arrayNode (Results 1 – 3 of 3) sorted by relevance

/developtools/global_resource_tool/src/
Dtranslatable_parser.cpp38 cJSON *arrayNode = cJSON_GetObjectItem(objectNode, TAG_VALUE.c_str()); in ParseTranslatable() local
39 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()
Djson_compiler.cpp104 bool JsonCompiler::ParseJsonArrayLevel(const cJSON *arrayNode, const FileInfo &fileInfo) in ParseJsonArrayLevel() argument
106 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() local
412 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()
/developtools/global_resource_tool/include/
Djson_compiler.h35 bool ParseJsonArrayLevel(const cJSON *arrayNode, const FileInfo &fileInfo);