Lines Matching refs:case_sensitive
2128 static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive)
2138 if (case_sensitive)
2618 static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive)
2638 return cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replacement);
3309 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)
3396 if (!cJSON_Compare(a_element, b_element, case_sensitive))
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);
3442 if (!cJSON_Compare(b_element, a_element, case_sensitive))