Lines Matching refs:a_element
2859 cJSON *a_element = a->child; in cJSON_Compare() local
2862 for (; (a_element != NULL) && (b_element != NULL);) in cJSON_Compare()
2864 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()
2869 a_element = a_element->next; in cJSON_Compare()
2874 if (a_element != b_element) { in cJSON_Compare()
2883 cJSON *a_element = NULL; in cJSON_Compare() local
2885 cJSON_ArrayForEach(a_element, a) in cJSON_Compare()
2888 b_element = get_object_item(b, a_element->string, case_sensitive); in cJSON_Compare()
2894 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()
2904 a_element = get_object_item(a, b_element->string, case_sensitive); in cJSON_Compare()
2905 if (a_element == NULL) in cJSON_Compare()
2910 if (!cJSON_Compare(b_element, a_element, case_sensitive)) in cJSON_Compare()