Lines Matching refs:array
221 struct array { struct
226 struct array objects_array[4]; argument
231 JSON_OBJ_DESCR_OBJECT(struct array, objects, elt_descr),
290 struct test_element array[5]; member
301 JSON_OBJ_DESCR_OBJ_ARRAY(struct test_outer, array, 5,
312 struct test_alignment_nested array[3]; member
323 JSON_OBJ_DESCR_OBJ_ARRAY(struct test_alignment_bool, array, 3, num_elements,
2112 zassert_equal(o.array[0].int1, 1, "Element 0 int1 not decoded correctly"); in ZTEST()
2113 zassert_equal(o.array[0].int2, 2, "Element 0 int2 not decoded correctly"); in ZTEST()
2114 zassert_equal(o.array[0].int3, 3, "Element 0 int3 not decoded correctly"); in ZTEST()
2116 zassert_equal(o.array[1].int1, 4, "Element 1 int1 not decoded correctly"); in ZTEST()
2117 zassert_equal(o.array[1].int2, 5, "Element 1 int2 not decoded correctly"); in ZTEST()
2118 zassert_equal(o.array[1].int3, 6, "Element 1 int3 not decoded correctly"); in ZTEST()
2135 zassert_equal(o.array[0].bool1, true, "Element 0 bool1 not decoded correctly"); in ZTEST()
2136 zassert_equal(o.array[0].int1, 1, "Element 0 int1 not decoded correctly"); in ZTEST()
2137 zassert_equal(o.array[0].bool2, false, "Element 0 bool2 not decoded correctly"); in ZTEST()
2139 zassert_equal(o.array[1].bool1, true, "Element 1 bool1 not decoded correctly"); in ZTEST()
2140 zassert_equal(o.array[1].int1, 2, "Element 1 int1 not decoded correctly"); in ZTEST()
2141 zassert_equal(o.array[1].bool2, false, "Element 1 bool2 not decoded correctly"); in ZTEST()