Home
last modified time | relevance | path

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

/petsc/src/mat/tests/
H A DcJSON.c2327 cJSON *a_element = a->child; in cJSON_Compare() local
2330 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()
2333 a_element = a_element->next; in cJSON_Compare()
2338 if (a_element != b_element) return false; in cJSON_Compare()
2344 cJSON *a_element = NULL; in cJSON_Compare() local
2346 cJSON_ArrayForEach(a_element, a) in cJSON_Compare()
2349 b_element = get_object_item(b, a_element->string, case_sensitive); in cJSON_Compare()
2352 if (!cJSON_Compare(a_element, b_element, case_sensitive)) return false; in cJSON_Compare()
2359 a_element = get_object_item(a, b_element->string, case_sensitive); in cJSON_Compare()
[all …]