Lines Matching refs:item
31 static cJSON item[1];
52 TEST_ASSERT_TRUE(parse_number(item, &buffer));
53 assert_is_number(item);
54 TEST_ASSERT_EQUAL_INT(integer, item->valueint);
55 TEST_ASSERT_EQUAL_DOUBLE(real, item->valuedouble);
71 TEST_ASSERT_TRUE(parse_number(item, &buffer));
72 TEST_ASSERT_EQUAL_INT64(integer, item->valueint);
73 TEST_ASSERT_EQUAL_DOUBLE(real, item->valuedouble);
79 assert_is_int64(item);
150 /* initialize cJSON item */
151 memset(item, 0, sizeof(cJSON));