Lines Matching full:wbuf
296 struct Strbuf wbuf = Strbuf_INIT; in word() local
302 cleanup_push(&wbuf, Strbuf_cleanup); in word()
315 Strbuf_append1(&wbuf, c); in word()
318 Strbuf_append1(&wbuf, c1); in word()
346 Strbuf_append1(&wbuf, c); in word()
357 Strbuf_append1(&wbuf, '\\'); in word()
416 Strbuf_append1(&wbuf, '\\'); in word()
428 Strbuf_append1(&wbuf, c); in word()
432 cleanup_ignore(&wbuf); in word()
433 cleanup_until(&wbuf); in word()
434 return Strbuf_finish(&wbuf); in word()
988 struct Strbuf wbuf = Strbuf_INIT; in subword() local
990 Strbuf_appendn(&wbuf, cp, mp - cp); in subword()
1000 Strbuf_append1(&wbuf, *np); in subword()
1004 Strbuf_append(&wbuf, lhsb.s); in subword()
1007 *start_pos = wbuf.len; in subword()
1008 Strbuf_append(&wbuf, mp + lhsb.len); in subword()
1010 return Strbuf_finish(&wbuf); in subword()