Lines Matching defs:array
1825 CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array) in cJSON_GetArraySize()
1848 static cJSON* get_array_item(const cJSON *array, size_t index) in get_array_item()
1867 CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index) in cJSON_GetArrayItem()
1953 static cJSON_bool add_item_to_array(cJSON *array, cJSON *item) in add_item_to_array()
1996 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item) in cJSON_AddItemToArray()
2065 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) in cJSON_AddItemReferenceToArray()
2183 cJSON *array = cJSON_CreateArray(); in cJSON_AddArrayToObject() local
2223 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) in cJSON_DetachItemFromArray()
2233 CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) in cJSON_DeleteItemFromArray()
2263 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) in cJSON_InsertItemInArray()
2333 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) in cJSON_ReplaceItemInArray()