Home
last modified time | relevance | path

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

/petsc/src/mat/tests/
H A DcJSON.c1445 …get_object_item(const cJSON *const object, const char *const name, const cJSON_bool case_sensitive) in get_object_item() argument
1452 if (case_sensitive) { in get_object_item()
1799 …ce_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive) in replace_item_in_object() argument
1810 …return cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replac… in replace_item_in_object()
2285 …ON_bool) cJSON_Compare(const cJSON *const a, const cJSON *const b, const cJSON_bool case_sensitive) in cJSON_Compare() argument
2331 if (!cJSON_Compare(a_element, b_element, case_sensitive)) return false; 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()
2362 if (!cJSON_Compare(b_element, a_element, case_sensitive)) return false; in cJSON_Compare()
H A DcJSON.h251 …N_bool) cJSON_Compare(const cJSON *const a, const cJSON *const b, const cJSON_bool case_sensitive);