Lines Matching refs:eal

1704     struct entryattlist *eal = NULL;
1707 CU_ASSERT_PTR_NULL(eal);
1708 CU_ASSERT_STRING_EQUAL(stringifyea(eal), "");
1714 setentryatt(&eal, "letterpress", "single-origin", &val);
1715 CU_ASSERT_PTR_NOT_NULL(eal);
1716 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1721 setentryatt(&eal, "cosby", "sweater", &val);
1722 CU_ASSERT_PTR_NOT_NULL(eal);
1723 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1729 setentryatt(&eal, "cred", "artisan", &val);
1730 CU_ASSERT_PTR_NOT_NULL(eal);
1731 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1738 setentryatt(&eal, "cosby", "sweater", &val);
1739 CU_ASSERT_PTR_NOT_NULL(eal);
1740 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1747 setentryatt(&eal, "letterpress", "biodiesel", &val);
1748 CU_ASSERT_PTR_NOT_NULL(eal);
1749 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1755 freeentryatts(eal);
1761 struct entryattlist *eal = NULL;
1768 setentryatt(&eal, "letterpress", "single-origin", &val);
1771 setentryatt(&eal, "letterpress", "biodiesel", &val);
1774 setentryatt(&eal, "letterpress", "keffiyeh", &val);
1777 setentryatt(&eal, "cosby", "sweater", &val);
1780 setentryatt(&eal, "cred", "artisan", &val);
1781 CU_ASSERT_PTR_NOT_NULL(eal);
1782 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1789 clearentryatt(&eal, "cosby", "sweater");
1790 CU_ASSERT_PTR_NOT_NULL(eal);
1791 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1797 clearentryatt(&eal, "letterpress", "biodiesel");
1798 CU_ASSERT_PTR_NOT_NULL(eal);
1799 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1804 clearentryatt(&eal, "letterpress", "single-origin");
1805 CU_ASSERT_PTR_NOT_NULL(eal);
1806 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1811 clearentryatt(&eal, "letterpress", "keffiyeh");
1812 CU_ASSERT_PTR_NOT_NULL(eal);
1813 CU_ASSERT_STRING_EQUAL(stringifyea(eal),
1816 clearentryatt(&eal, "cred", "artisan");
1817 CU_ASSERT_PTR_NULL(eal);
1818 CU_ASSERT_STRING_EQUAL(stringifyea(eal), "");
1820 freeentryatts(eal);