Searched refs:basic_memory_buffer (Results 1 – 11 of 11) sorted by relevance
| /external/fmtlib/include/fmt/ |
| D | ostream.h | 137 basic_memory_buffer<Char> buffer; 145 basic_memory_buffer<Char> buffer; 155 basic_memory_buffer<Char> buffer;
|
| D | locale.h | 22 basic_memory_buffer<Char> buffer; in vformat()
|
| D | format.h | 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 { [all …]
|
| D | printf.h | 637 basic_memory_buffer<Char> buffer; 662 basic_memory_buffer<Char> buffer; 715 basic_memory_buffer<Char> buffer;
|
| D | color.h | 500 basic_memory_buffer<Char> buf; in vprint() 542 basic_memory_buffer<Char> buf; in vformat()
|
| D | chrono.h | 412 basic_memory_buffer<Char> buf; 434 basic_memory_buffer<Char> tm_format; 1096 basic_memory_buffer<Char> buf;
|
| D | compile.h | 611 basic_memory_buffer<Char> buffer; 630 basic_memory_buffer<Char> buffer;
|
| D | format-inl.h | 1245 basic_memory_buffer<bigit, bigits_capacity> bigits_; 1417 basic_memory_buffer<bigit, bigits_capacity> n(std::move(bigits_));
|
| /external/fmtlib/test/ |
| D | format-test.cc | 38 using fmt::basic_memory_buffer; 191 basic_memory_buffer<char, 123> buffer; in TEST() 225 const char* str, basic_memory_buffer<char, 5, TestAllocator>& buffer) { in check_move_buffer() 227 basic_memory_buffer<char, 5, TestAllocator> buffer2(std::move(buffer)); in check_move_buffer() 239 basic_memory_buffer<char, 5, TestAllocator> buffer((TestAllocator(&alloc))); in TEST() 251 basic_memory_buffer<char, 4, TestAllocator> buffer((TestAllocator(&alloc))); in TEST() 258 basic_memory_buffer<char, 4, TestAllocator> buffer2(std::move(buffer)); in TEST() 266 basic_memory_buffer<char, 5>& buffer) { in check_move_assign_buffer() 267 basic_memory_buffer<char, 5> buffer2; in check_move_assign_buffer() 276 basic_memory_buffer<char, 5> buffer; in TEST() [all …]
|
| /external/fmtlib/doc/ |
| D | api.rst | 324 .. doxygenclass:: fmt::basic_memory_buffer 348 :class:`fmt::basic_memory_buffer`:: 351 fmt::basic_memory_buffer<char, fmt::inline_buffer_size, custom_allocator>;
|
| /external/fmtlib/ |
| D | ChangeLog.rst | 2058 * Made ``format_to`` work with ``basic_memory_buffer``
|