Lines Matching refs:basic_memory_buffer
654 class basic_memory_buffer final : public detail::buffer<T> {
674 explicit basic_memory_buffer(const Allocator& alloc = Allocator())
678 ~basic_memory_buffer() { deallocate(); } in ~basic_memory_buffer()
682 void move(basic_memory_buffer& other) { in move()
706 basic_memory_buffer(basic_memory_buffer&& other) FMT_NOEXCEPT { move(other); } in basic_memory_buffer() function
713 basic_memory_buffer& operator=(basic_memory_buffer&& other) FMT_NOEXCEPT {
741 void basic_memory_buffer<T, SIZE, Allocator>::grow(size_t size) { in grow()
761 using memory_buffer = basic_memory_buffer<char>;
762 using wmemory_buffer = basic_memory_buffer<wchar_t>;
765 struct is_contiguous<basic_memory_buffer<T, SIZE, Allocator>> : std::true_type {
1681 basic_memory_buffer<Char> buffer;
3754 std::basic_string<Char> to_string(const basic_memory_buffer<Char, SIZE>& buf) {
3819 basic_memory_buffer<Char, SIZE>& buf, const S& format_str, Args&&... args) {
3848 basic_memory_buffer<Char> buffer;