Searched refs:size_ (Results 1 – 7 of 7) sorted by relevance
/ndk/sources/third_party/googletest/googletest/samples/ |
D | sample3-inl.h | 77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue() 84 if (size_ > 0) { in Clear() 97 size_ = 0; in Clear() 102 size_t Size() const { return size_; } in Size() 119 if (size_ == 0) { in Enqueue() 121 size_ = 1; in Enqueue() 125 size_++; in Enqueue() 132 if (size_ == 0) { in Dequeue() 138 size_--; in Dequeue() 139 if (size_ == 0) { in Dequeue() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | aligned_storage.hpp | 42 std::size_t size_ 49 char buf[size_]; 70 std::size_t size_ 79 detail::aligned_storage::aligned_storage_imp<size_, alignment_> 84 typedef detail::aligned_storage::aligned_storage_imp<size_, alignment_> type; 88 , size = size_ 168 template <std::size_t size_, std::size_t alignment_> 169 struct is_pod<boost::detail::aligned_storage::aligned_storage_imp<size_,alignment_> >
|
/ndk/sources/android/support/tests/minitest/ |
D | minitest.cc | 29 size_ = len; in String() 33 size_t old_size = size_; in operator +=() 34 Resize(old_size + other.size_); in operator +=() 35 ::memcpy(str_ + old_size, other.str_, other.size_); in operator +=() 41 size_t old_size = size_; in operator +=() 48 Resize(size_ + 1); in operator +=() 49 str_[size_ - 1] = ch; in operator +=() 101 size_ = 0; in Clear() 114 size_ = new_size; in Resize()
|
D | minitest.h | 121 String() : str_(NULL), size_(0), capacity_(0) {} 126 String(const String& other) { String(other.str_, other.size_); } 139 size_t size() const { return size_; } 140 bool empty() const { return size_ == 0; } 189 size_t size_;
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_vector.cpp | 62 : dealloc_ ( dealloc ), ptr_ ( ptr ), size_ ( size ), enabled_ ( true ) {} in st_heap_block3() 63 ~st_heap_block3 () { if ( enabled_ ) dealloc_ ( ptr_, size_ ) ; } in ~st_heap_block3() 69 size_t size_; member in __cxxabiv1::__anond7300d6e0111::st_heap_block3
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | cxxabi_vec.cc | 51 : ptr_(ptr), size_(size), dealloc_(dealloc) {} in scoped_block() 55 dealloc_(ptr_, size_); in ~scoped_block() 64 size_t size_; member in __anon8c942adf0111::scoped_block
|
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 967 Init(rhs.array_, rhs.size_, rhs.relation_to_source_); 980 size_t size() const { return size_; } 982 const_iterator end() const { return array_ + size_; } 999 size_ = a_size; 1004 size_t size_;
|