Searched defs:BufferT (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/webrtc/rtc_base/ |
H A D | buffer.h | 71 BufferT() : size_(0), capacity_(0), data_(nullptr) { in BufferT() function 80 BufferT(BufferT&& buf) in BufferT() function 89 explicit BufferT(size_t size) : BufferT(size, size) {} in BufferT() function 91 BufferT(size_t size, size_t capacity) in BufferT() function 102 BufferT(const U* data, size_t size) : BufferT(data, size, size) {} in BufferT() function 107 BufferT(U* data, size_t size, size_t capacity) : BufferT(size, capacity) { in BufferT() function 120 BufferT(U (&array)[N]) : BufferT(array, N) {} in BufferT() function
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/utilities/utility/ |
H A D | small_buffer.pass.cpp | 36 using BufferT = std::__small_buffer<8, 8>; in main() typedef
|