Lines Matching defs:buf_out
1635 ImWchar* buf_out = buf;
1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text)
1644 *buf_out++ = (ImWchar)c;
1646 *buf_out = 0;
1649 return (int)(buf_out - buf);
1723 char* buf_out = buf;
1725 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text)
1729 *buf_out++ = (char)c;
1731 buf_out += ImTextCharToUtf8(buf_out, (int)(buf_end-buf_out-1), c);
1733 *buf_out = 0;
1734 return (int)(buf_out - buf);