Searched defs:size_type (Results 26 - 50 of 122) sorted by relevance

12345

/external/stlport/stlport/stl/
H A D_iostream_string.h51 typedef typename _Base::size_type size_type; typedef in class:__iostring_allocator
63 _CharT* allocate(size_type __n, const void* __ptr = 0) {
69 void deallocate(pointer __p, size_type __n) {
H A D_stack.h65 typedef typename _Sequence::size_type size_type; typedef in class:stack
83 size_type size() const { return c.size(); }
H A D_list.c83 # define size_type size_t macro
95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
97 size_type __len = 0;
124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
H A D_queue.h76 typedef typename _Sequence::size_type size_type; typedef in class:queue
95 size_type size() const { return c.size(); }
160 typedef typename _Sequence::size_type size_type; typedef in class:priority_queue
221 size_type size() const { return c.size(); }
H A D_slist.c35 # define size_type size_t macro
91 void slist<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
223 # undef size_type macro
H A D_string_base.h51 typedef size_t size_type; typedef in class:_String_base
71 size_type _M_capacity() const
72 { return _M_using_static_buf() ? static_cast<size_type>(_DEFAULT_SIZE) : _M_buffers._M_end_of_storage - _M_start_of_storage._M_data; }
73 size_type _M_rest() const
80 size_type _M_capacity() const
82 size_type _M_rest() const
105 const size_type __string_max_size = size_type(-1) / sizeof(_Tp);
106 typename allocator_type::size_type __alloc_max_size = _M_start_of_storage.max_size();
H A D_string_io.c33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
35 // The hypothesis of this implementation is that size_type is unsigned:
36 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
43 size_type __n = __s.size();
72 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
74 // The hypothesis of this implementation is that size_type is unsigned:
75 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
87 size_type __
137 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
[all...]
/external/tinyxml/
H A Dtinystr.h56 typedef unsigned int size_type; typedef in class:TiXmlString
59 static const size_type npos; // = -1;
77 init( static_cast<size_type>( strlen(copy) ));
82 TiXmlString (const char * str, size_type len)
97 return assign( copy, (size_type)strlen(copy));
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
133 size_type length () const { return rep_->size; }
136 size_type size () const { return rep_->size; }
142 size_type capacity () const { return rep_->capacity; }
146 const char& at (size_type inde
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h89 typedef size_t size_type; typedef in class:ceres::internal::FixedArray
98 explicit FixedArray(size_type n);
104 inline size_type size() const { return size_; }
115 inline T& operator[](size_type i) {
122 inline const T& operator[](size_type i) const {
148 static const size_type S1 = ((inline_elements < 0)
150 static const size_type S2 = (S1 <= 0) ? 1 : S1;
151 static const size_type kInlineElements = S2;
153 size_type const size_;
164 inline FixedArray<T, S>::FixedArray(typename FixedArray<T, S>::size_type
[all...]
/external/chromium_org/base/containers/
H A Dstack_container.h40 typedef typename std::allocator<T>::size_type size_type; typedef in class:base::StackAllocator
106 pointer allocate(size_type n, void* hint = 0) {
118 void deallocate(pointer p, size_type n) {
H A Dmru_cache.h56 typedef typename PayloadList::size_type size_type; typedef in class:base::MRUCacheBase
69 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {
72 MRUCacheBase(size_type max_size, const DeletorType& deletor)
82 size_type max_size() const { return max_size_; }
159 void ShrinkToSize(size_type new_size) {
160 for (size_type i = size(); i > new_size; i--)
174 size_type size() const {
203 size_type max_size_;
232 explicit MRUCache(typename ParentType::size_type max_siz
[all...]
/external/chromium_org/net/base/
H A Dlinked_hash_map.h43 typedef typename ListType::size_type size_type; typedef in class:linked_hash_map
117 size_type erase(const Key& key) {
215 size_type size() const {
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.cc14 typedef StringPiece::size_type size_type; typedef in namespace:i18n::phonenumbers
37 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const {
38 size_type ret = std::min(length_ - pos, n);
43 size_type StringPiece::find(const StringPiece& s, size_type pos) const {
49 const size_type xpos = result - ptr_;
53 size_type StringPiec
[all...]
/external/chromium_org/v8/src/
H A Dzone-allocator.h23 typedef size_t size_type; typedef in class:v8::internal::zone_allocator
39 pointer allocate(size_type n, const void* hint = 0) {
43 void deallocate(pointer p, size_type) { /* noop for Zones */ }
45 size_type max_size() const throw() {
/external/clang/include/clang/Driver/
H A DJob.h127 typedef list_type::size_type size_type; typedef in class:clang::driver::JobList
149 size_type size() const { return Jobs.size(); }
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp46 typedef size_t size_type; typedef in class:std::initializer_list
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp25 typedef size_t size_type; typedef in class:std::initializer_list
/external/libcxx/test/support/
H A Dallocators.h84 typedef unsigned size_type; typedef in class:A2
/external/libcxx/test/thread/futures/
H A Dtest_allocator.h39 typedef unsigned size_type; typedef in class:test_allocator
58 pointer allocate(size_type n, const void* = 0)
70 void deallocate(pointer p, size_type n)
72 size_type max_size() const throw()
97 typedef unsigned size_type; typedef in class:test_allocator
/external/llvm/include/llvm/ADT/
H A DArrayRef.h35 typedef size_t size_type; typedef in class:llvm::ArrayRef
44 size_type Length;
H A DMapVector.h32 typedef typename VectorType::size_type size_type; typedef in class:llvm::MapVector
41 size_type size() const {
103 size_type count(const KeyT &Key) const {
H A DSparseSet.h127 typedef unsigned size_type; typedef in class:llvm::SparseSet
190 size_type size() const { return Dense.size(); }
235 size_type count(const KeyT &Key) const {
H A DStringRef.h45 typedef size_t size_type; typedef in class:llvm::StringRef
/external/oprofile/libpp/
H A Dparse_filename.cpp30 typedef parts_type::size_type size_type; typedef
32 size_type const nr_parts = 6;
40 for (size_type i = 0; i < nr_parts ; ++i) {
48 size_type i = 0;
125 string::size_type pos = filename.find_last_of('/');
/external/stlport/test/unit/
H A Dmvctor_declaration_test.cpp90 typedef size_t size_type; typedef in class:std::allocator
105 pointer allocate(size_type, const void* = 0) { return 0; }
106 void deallocate(pointer, size_type) {}
107 size_type max_size() const _STLP_NOTHROW { return 0; }

Completed in 4263 milliseconds

12345