Searched refs:b_element (Results 1 – 1 of 1) sorted by relevance
3057 cJSON *b_element = b->child; in cJSON_Compare() local3059 for (; (a_element != NULL) && (b_element != NULL);) in cJSON_Compare()3061 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()3067 b_element = b_element->next; in cJSON_Compare()3071 if (a_element != b_element) { in cJSON_Compare()3081 cJSON *b_element = NULL; in cJSON_Compare() local3085 b_element = get_object_item(b, a_element->string, case_sensitive); in cJSON_Compare()3086 if (b_element == NULL) in cJSON_Compare()3091 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()3099 cJSON_ArrayForEach(b_element, b) in cJSON_Compare()[all …]