Searched refs:b_element (Results 1 – 1 of 1) sorted by relevance
2328 cJSON *b_element = b->child; in cJSON_Compare() local2330 for (; (a_element != NULL) && (b_element != NULL);) { in cJSON_Compare()2331 if (!cJSON_Compare(a_element, b_element, case_sensitive)) return false; in cJSON_Compare()2334 b_element = b_element->next; in cJSON_Compare()2338 if (a_element != b_element) return false; in cJSON_Compare()2345 cJSON *b_element = NULL; in cJSON_Compare() local2349 b_element = get_object_item(b, a_element->string, case_sensitive); in cJSON_Compare()2350 if (b_element == NULL) return false; in cJSON_Compare()2352 if (!cJSON_Compare(a_element, b_element, case_sensitive)) return false; in cJSON_Compare()2357 cJSON_ArrayForEach(b_element, b) in cJSON_Compare()[all …]