Lines Matching defs:item
30 cJSON *item = NULL;
32 item = cJSON_ParseWithOpts("{}", NULL, false);
33 TEST_ASSERT_NOT_NULL_MESSAGE(item, "Failed to handle NULL error pointer.");
34 cJSON_Delete(item);
64 cJSON *item = cJSON_ParseWithOpts("{}", NULL, true);
65 TEST_ASSERT_NOT_NULL(item);
66 cJSON_Delete(item);
67 item = cJSON_ParseWithOpts("{} \n", NULL, true);
68 TEST_ASSERT_NOT_NULL(item);
69 cJSON_Delete(item);
78 cJSON *item = cJSON_ParseWithOpts(json, &parse_end, false);
79 TEST_ASSERT_NOT_NULL(item);
81 cJSON_Delete(item);