Lines Matching refs:pkgconf_buffer_append

40 	TEST_ASSERT_TRUE(pkgconf_buffer_append(&buf, "hello"));  in test_buffer_append()
44 TEST_ASSERT_TRUE(pkgconf_buffer_append(&buf, " world")); in test_buffer_append()
86 pkgconf_buffer_append(&buf, "world"); in test_buffer_prepend()
112 pkgconf_buffer_append(&buf, "hello\n"); in test_buffer_trim_byte()
130 pkgconf_buffer_append(&buf, "some content"); in test_buffer_reset()
137 TEST_ASSERT_TRUE(pkgconf_buffer_append(&buf, "fresh")); in test_buffer_reset()
148 pkgconf_buffer_append(&buf, "frozen"); in test_buffer_freeze()
166 pkgconf_buffer_append(&src, "original"); in test_buffer_copy()
167 pkgconf_buffer_append(&dst, "to be replaced"); in test_buffer_copy()
193 pkgconf_buffer_append(&hay, "the quick brown fox"); in test_buffer_contains()
195 pkgconf_buffer_append(&needle, "quick"); in test_buffer_contains()
199 pkgconf_buffer_append(&needle, "slow"); in test_buffer_contains()
215 pkgconf_buffer_append(&a, "identical"); in test_buffer_match()
216 pkgconf_buffer_append(&b, "identical"); in test_buffer_match()
221 pkgconf_buffer_append(&b, "different"); in test_buffer_match()
226 pkgconf_buffer_append(&b, "different!"); in test_buffer_match()
239 pkgconf_buffer_append(&hay, "/usr/local/lib"); in test_buffer_has_prefix()
241 pkgconf_buffer_append(&pre, "/usr"); in test_buffer_has_prefix()
245 pkgconf_buffer_append(&pre, "/opt"); in test_buffer_has_prefix()
258 pkgconf_buffer_append(&src, "prefix=${PREFIX}/share"); in test_buffer_subst()
277 pkgconf_buffer_append(&src, "prefix=${PREFIX}/share"); in test_buffer_subst_empty_pattern()
313 pkgconf_buffer_append(&src, "a b\tc"); in test_buffer_escape()
351 pkgconf_buffer_append(&buf, "hello world"); in test_buffer_fputs_nonempty()