Lines Matching defs:a_element
3391 cJSON *a_element = a->child;
3394 for (; (a_element != NULL) && (b_element != NULL);)
3396 if (!cJSON_Compare(a_element, b_element, case_sensitive))
3401 a_element = a_element->next;
3406 if (a_element != b_element) {
3415 cJSON *a_element = NULL;
3417 cJSON_ArrayForEach(a_element, a)
3420 b_element = get_object_item(b, a_element->string, case_sensitive);
3426 if (!cJSON_Compare(a_element, b_element, case_sensitive))
3436 a_element = get_object_item(a, b_element->string, case_sensitive);
3437 if (a_element == NULL)
3442 if (!cJSON_Compare(b_element, a_element, case_sensitive))