Symbol: size_type
headers/cpp/defalloc.h
72
pointer allocate(size_type n) {
headers/cpp/defalloc.h
80
size_type init_page_size() {
headers/cpp/defalloc.h
81
return max(size_type(1), size_type(4096/sizeof(T)));
headers/cpp/defalloc.h
83
size_type max_size() const {
headers/cpp/defalloc.h
84
return max(size_type(1), size_type(UINT_MAX/sizeof(T)));
headers/cpp/ropeimpl.h
1184
rope<_CharT,_Alloc>::_S_fetch(_RopeRep* __r, size_type __i)
headers/cpp/ropeimpl.h
1229
rope<_CharT,_Alloc>::_S_fetch_ptr(_RopeRep* __r, size_type __i)
headers/cpp/ropeimpl.h
953
size_type __result_pos = __start + __c._M_count;
headers/cpp/std/bastring.cc
118
replace (size_type pos1, size_type n1,
headers/cpp/std/bastring.cc
119
const basic_string& _str, size_type pos2, size_type n2)
headers/cpp/std/bastring.cc
153
replace (size_type pos, size_type n1, const charT* s, size_type n2)
headers/cpp/std/bastring.cc
155
const size_type len = length ();
headers/cpp/std/bastring.cc
189
replace (size_type pos, size_type n1, size_type n2, charT c)
headers/cpp/std/bastring.cc
218
resize (size_type n, charT c)
headers/cpp/std/bastring.cc
229
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
231
copy (charT* s, size_type n, size_type pos) const
headers/cpp/std/bastring.cc
243
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
245
find (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
256
inline basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
258
_find (const charT* ptr, charT c, size_type xpos, size_type len)
headers/cpp/std/bastring.cc
267
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
269
find (charT c, size_type pos) const
headers/cpp/std/bastring.cc
275
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
277
rfind (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
294
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
296
rfind (charT c, size_type pos) const
headers/cpp/std/bastring.cc
312
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
314
find_first_of (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
324
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
326
find_last_of (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
340
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
342
find_first_not_of (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
352
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
354
find_first_not_of (charT c, size_type pos) const
headers/cpp/std/bastring.cc
364
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
366
find_last_not_of (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
380
basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
382
find_last_not_of (charT c, size_type pos) const
headers/cpp/std/bastring.cc
397
compare (const basic_string& _str, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
416
compare (const charT* s, size_type pos, size_type n) const
headers/cpp/std/bastring.cc
521
const basic_string <charT, traits, Allocator>::size_type
headers/cpp/std/bastring.cc
86
check_realloc (basic_string::size_type s) const
headers/cpp/std/bastring.cc
97
alloc (basic_string::size_type __size, bool __save)
headers/cpp/std/bastring.h
159
static const size_type npos = static_cast<size_type>(-1);
headers/cpp/std/bastring.h
168
size_type length () const
headers/cpp/std/bastring.h
170
size_type size () const
headers/cpp/std/bastring.h
172
size_type capacity () const
headers/cpp/std/bastring.h
174
size_type max_size () const
headers/cpp/std/bastring.h
188
basic_string (const basic_string& _str, size_type pos, size_type n = npos)
headers/cpp/std/bastring.h
190
basic_string (const charT* s, size_type n)
headers/cpp/std/bastring.h
194
basic_string (size_type n, charT c)
headers/cpp/std/bastring.h
209
basic_string& append (const basic_string& _str, size_type pos = 0,
headers/cpp/std/bastring.h
210
size_type n = npos)
headers/cpp/std/bastring.h
212
basic_string& append (const charT* s, size_type n)
headers/cpp/std/bastring.h
216
basic_string& append (size_type n, charT c)
headers/cpp/std/bastring.h
229
basic_string& assign (const basic_string& str, size_type pos = 0,
headers/cpp/std/bastring.h
230
size_type n = npos)
headers/cpp/std/bastring.h
232
basic_string& assign (const charT* s, size_type n)
headers/cpp/std/bastring.h
236
basic_string& assign (size_type n, charT c)
headers/cpp/std/bastring.h
258
basic_string& insert (size_type pos1, const basic_string& str,
headers/cpp/std/bastring.h
259
size_type pos2 = 0, size_type n = npos)
headers/cpp/std/bastring.h
261
basic_string& insert (size_type pos, const charT* s, size_type n)
headers/cpp/std/bastring.h
263
basic_string& insert (size_type pos, const charT* s)
headers/cpp/std/bastring.h
265
basic_string& insert (size_type pos, size_type n, charT c)
headers/cpp/std/bastring.h
268
{ size_type __o = p - ibegin ();
headers/cpp/std/bastring.h
271
iterator insert(iterator p, size_type n, charT c)
headers/cpp/std/bastring.h
272
{ size_type __o = p - ibegin ();
headers/cpp/std/bastring.h
283
basic_string& erase (size_type pos = 0, size_type n = npos)
headers/cpp/std/bastring.h
284
{ return replace (pos, n, (size_type)0, (charT)0); }
headers/cpp/std/bastring.h
286
{ size_type __o = p - begin();
headers/cpp/std/bastring.h
287
replace (__o, 1, (size_type)0, (charT)0); selfish ();
headers/cpp/std/bastring.h
290
{ size_type __o = f - ibegin();
headers/cpp/std/bastring.h
291
replace (__o, l-f, (size_type)0, (charT)0);selfish ();
headers/cpp/std/bastring.h
296
basic_string& replace (size_type pos1, size_type n1, const basic_string& str,
headers/cpp/std/bastring.h
297
size_type pos2 = 0, size_type n2 = npos);
headers/cpp/std/bastring.h
298
basic_string& replace (size_type pos, size_type n1, const charT* s,
headers/cpp/std/bastring.h
299
size_type n2);
headers/cpp/std/bastring.h
300
basic_string& replace (size_type pos, size_type n1, const charT* s)
headers/cpp/std/bastring.h
302
basic_string& replace (size_type pos, size_type n1, size_type n2, charT c);
headers/cpp/std/bastring.h
303
basic_string& replace (size_type pos, size_type n, charT c)
headers/cpp/std/bastring.h
307
basic_string& replace (iterator i1, iterator i2, const charT* s, size_type n)
headers/cpp/std/bastring.h
311
basic_string& replace (iterator i1, iterator i2, size_type n, charT c)
headers/cpp/std/bastring.h
328
charT operator[] (size_type pos) const
headers/cpp/std/bastring.h
335
reference operator[] (size_type pos)
headers/cpp/std/bastring.h
338
reference at (size_type pos)
headers/cpp/std/bastring.h
343
const_reference at (size_type pos) const
headers/cpp/std/bastring.h
359
void resize (size_type n, charT c);
headers/cpp/std/bastring.h
360
void resize (size_type n)
headers/cpp/std/bastring.h
362
void reserve (size_type) { }
headers/cpp/std/bastring.h
364
size_type copy (charT* s, size_type n, size_type pos = 0) const;
headers/cpp/std/bastring.h
366
size_type find (const basic_string& str, size_type pos = 0) const
headers/cpp/std/bastring.h
368
size_type find (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
369
size_type find (const charT* _s, size_type pos = 0) const
headers/cpp/std/bastring.h
371
size_type find (charT c, size_type pos = 0) const;
headers/cpp/std/bastring.h
373
size_type rfind (const basic_string& str, size_type pos = npos) const
headers/cpp/std/bastring.h
375
size_type rfind (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
376
size_type rfind (const charT* s, size_type pos = npos) const
headers/cpp/std/bastring.h
378
size_type rfind (charT c, size_type pos = npos) const;
headers/cpp/std/bastring.h
380
size_type find_first_of (const basic_string& str, size_type pos = 0) const
headers/cpp/std/bastring.h
382
size_type find_first_of (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
383
size_type find_first_of (const charT* s, size_type pos = 0) const
headers/cpp/std/bastring.h
385
size_type find_first_of (charT c, size_type pos = 0) const
headers/cpp/std/bastring.h
388
size_type find_last_of (const basic_string& str, size_type pos = npos) const
headers/cpp/std/bastring.h
390
size_type find_last_of (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
391
size_type find_last_of (const charT* s, size_type pos = npos) const
headers/cpp/std/bastring.h
393
size_type find_last_of (charT c, size_type pos = npos) const
headers/cpp/std/bastring.h
396
size_type find_first_not_of (const basic_string& str, size_type pos = 0) const
headers/cpp/std/bastring.h
398
size_type find_first_not_of (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
399
size_type find_first_not_of (const charT* s, size_type pos = 0) const
headers/cpp/std/bastring.h
401
size_type find_first_not_of (charT c, size_type pos = 0) const;
headers/cpp/std/bastring.h
403
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const
headers/cpp/std/bastring.h
405
size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
406
size_type find_last_not_of (const charT* s, size_type pos = npos) const
headers/cpp/std/bastring.h
408
size_type find_last_not_of (charT c, size_type pos = npos) const;
headers/cpp/std/bastring.h
410
basic_string substr (size_type pos = 0, size_type n = npos) const
headers/cpp/std/bastring.h
415
int compare (const charT* s, size_type pos, size_type n) const;
headers/cpp/std/bastring.h
416
int compare (const basic_string& str, size_type pos = 0, size_type n = npos) const;
headers/cpp/std/bastring.h
420
int compare (size_type pos, size_type n, const basic_string& str) const
headers/cpp/std/bastring.h
422
int compare (size_type pos, size_type n, const charT* s) const
headers/cpp/std/bastring.h
424
int compare (size_type pos, size_type n, const charT* s, size_type n2) const
headers/cpp/std/bastring.h
426
int compare (const charT* s, size_type pos = 0) const
headers/cpp/std/bastring.h
448
void alloc (size_type size, bool save);
headers/cpp/std/bastring.h
449
static size_type _find (const charT* ptr, charT c, size_type xpos, size_type len);
headers/cpp/std/bastring.h
450
inline bool check_realloc (size_type s) const;
headers/cpp/std/bastring.h
466
const size_type len = length ();
headers/cpp/std/bastring.h
467
size_type pos = i1 - ibegin ();
headers/cpp/std/bastring.h
468
size_type n1 = i2 - i1;
headers/cpp/std/bastring.h
469
size_type n2 = j2 - j1;
headers/cpp/stl_alloc.h
758
_Tp* allocate(size_type __n, const void* = 0) {
headers/cpp/stl_alloc.h
764
void deallocate(pointer __p, size_type __n)
headers/cpp/stl_alloc.h
767
size_type max_size() const __STL_NOTHROW
headers/cpp/stl_alloc.h
835
_Tp* allocate(size_type __n, const void* = 0) {
headers/cpp/stl_alloc.h
842
void deallocate(pointer __p, size_type __n)
headers/cpp/stl_alloc.h
845
size_type max_size() const __STL_NOTHROW
headers/cpp/stl_bvector.h
414
void _M_initialize(size_type __n) {
headers/cpp/stl_bvector.h
427
size_type __len = size() ? 2 * size() : __WORD_BIT;
headers/cpp/stl_bvector.h
452
size_type __n = 0;
headers/cpp/stl_bvector.h
473
size_type __n = 0;
headers/cpp/stl_bvector.h
481
size_type __len = size() + max(size(), __n);
headers/cpp/stl_bvector.h
510
size_type size() const { return size_type(end() - begin()); }
headers/cpp/stl_bvector.h
511
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_bvector.h
512
size_type capacity() const {
headers/cpp/stl_bvector.h
513
return size_type(const_iterator(_M_end_of_storage, 0) - begin());
headers/cpp/stl_bvector.h
516
reference operator[](size_type __n) {
headers/cpp/stl_bvector.h
519
const_reference operator[](size_type __n) const {
headers/cpp/stl_bvector.h
526
__BVECTOR(size_type __n, bool __value,
headers/cpp/stl_bvector.h
534
explicit __BVECTOR(size_type __n)
headers/cpp/stl_bvector.h
573
size_type __n = 0;
headers/cpp/stl_bvector.h
582
size_type __n = 0;
headers/cpp/stl_bvector.h
649
size_type __len = 0;
headers/cpp/stl_bvector.h
663
void reserve(size_type __n) {
headers/cpp/stl_bvector.h
709
insert(__pos, (size_type) __n, (bool) __x);
headers/cpp/stl_bvector.h
722
size_type __n = 0;
headers/cpp/stl_bvector.h
730
size_type __len = size() + max(size(), __n);
headers/cpp/stl_bvector.h
743
size_type __n = 0;
headers/cpp/stl_bvector.h
751
size_type __len = size() + max(size(), __n);
headers/cpp/stl_bvector.h
763
void insert(iterator __position, size_type __n, bool __x) {
headers/cpp/stl_bvector.h
771
size_type __len = size() + max(size(), __n);
headers/cpp/stl_bvector.h
793
void resize(size_type __new_size, bool __x = bool()) {
headers/cpp/stl_deque.h
1016
size_type __n = __last - __first;
headers/cpp/stl_deque.h
1051
if (static_cast<size_type>(__elems_before) < (size() - __n) / 2) {
headers/cpp/stl_deque.h
1125
size_type __n = 0;
headers/cpp/stl_deque.h
1253
size_type __n = 0;
headers/cpp/stl_deque.h
1285
if (static_cast<size_type>(__index) < size() / 2) {
headers/cpp/stl_deque.h
1314
if (static_cast<size_type>(__index) < size() / 2) {
headers/cpp/stl_deque.h
1341
size_type __n,
headers/cpp/stl_deque.h
1345
size_type __length = size();
headers/cpp/stl_deque.h
1347
if (static_cast<size_type>(__elems_before) < __length / 2) {
headers/cpp/stl_deque.h
1402
size_type __n)
headers/cpp/stl_deque.h
1405
size_type __length = size();
headers/cpp/stl_deque.h
1406
if (static_cast<size_type>(__elemsbefore) < __length / 2) {
headers/cpp/stl_deque.h
1463
size_type __n)
headers/cpp/stl_deque.h
1466
size_type __length = size();
headers/cpp/stl_deque.h
1521
size_type __n)
headers/cpp/stl_deque.h
1524
size_type __length = size();
headers/cpp/stl_deque.h
1576
deque<_Tp,_Alloc,__bufsize>::_M_new_elements_at_front(size_type __new_elems)
headers/cpp/stl_deque.h
1578
size_type __new_nodes
headers/cpp/stl_deque.h
1581
size_type __i;
headers/cpp/stl_deque.h
1588
for (size_type __j = 1; __j < __i; ++__j)
headers/cpp/stl_deque.h
1597
deque<_Tp,_Alloc,__bufsize>::_M_new_elements_at_back(size_type __new_elems)
headers/cpp/stl_deque.h
1599
size_type __new_nodes
headers/cpp/stl_deque.h
1602
size_type __i;
headers/cpp/stl_deque.h
1609
for (size_type __j = 1; __j < __i; ++__j)
headers/cpp/stl_deque.h
1618
deque<_Tp,_Alloc,__bufsize>::_M_reallocate_map(size_type __nodes_to_add,
headers/cpp/stl_deque.h
1621
size_type __old_num_nodes = _M_finish._M_node - _M_start._M_node + 1;
headers/cpp/stl_deque.h
1622
size_type __new_num_nodes = __old_num_nodes + __nodes_to_add;
headers/cpp/stl_deque.h
1635
size_type __new_map_size =
headers/cpp/stl_deque.h
543
reference operator[](size_type __n)
headers/cpp/stl_deque.h
545
const_reference operator[](size_type __n) const
headers/cpp/stl_deque.h
561
size_type size() const { return _M_finish - _M_start;; }
headers/cpp/stl_deque.h
562
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_deque.h
570
deque(size_type __n, const value_type& __value,
headers/cpp/stl_deque.h
573
explicit deque(size_type __n) : _Base(allocator_type(), __n)
headers/cpp/stl_deque.h
614
const size_type __len = size();
headers/cpp/stl_deque.h
640
void assign(size_type __n, const _Tp& __val) {
headers/cpp/stl_deque.h
663
{ assign((size_type) __n, (_Tp) __val); }
headers/cpp/stl_deque.h
678
size_type __len = 0;
headers/cpp/stl_deque.h
770
void insert(iterator __pos, size_type __n, const value_type& __x);
headers/cpp/stl_deque.h
784
insert(__pos, (size_type) __n, (value_type) __x);
headers/cpp/stl_deque.h
803
void resize(size_type __new_size, const value_type& __x) {
headers/cpp/stl_deque.h
804
const size_type __len = size();
headers/cpp/stl_deque.h
811
void resize(size_type new_size) { resize(new_size, value_type()); }
headers/cpp/stl_deque.h
818
if (static_cast<size_type>(__index) < (size() >> 1)) {
headers/cpp/stl_deque.h
874
void _M_insert_aux(iterator __pos, size_type __n, const value_type& __x);
headers/cpp/stl_deque.h
881
size_type __n);
headers/cpp/stl_deque.h
887
size_type __n);
headers/cpp/stl_deque.h
891
size_type __n);
headers/cpp/stl_deque.h
895
iterator _M_reserve_elements_at_front(size_type __n) {
headers/cpp/stl_deque.h
896
size_type __vacancies = _M_start._M_cur - _M_start._M_first;
headers/cpp/stl_deque.h
902
iterator _M_reserve_elements_at_back(size_type __n) {
headers/cpp/stl_deque.h
903
size_type __vacancies = (_M_finish._M_last - _M_finish._M_cur) - 1;
headers/cpp/stl_deque.h
909
void _M_new_elements_at_front(size_type __new_elements);
headers/cpp/stl_deque.h
910
void _M_new_elements_at_back(size_type __new_elements);
headers/cpp/stl_deque.h
918
void _M_reserve_map_at_back (size_type __nodes_to_add = 1) {
headers/cpp/stl_deque.h
923
void _M_reserve_map_at_front (size_type __nodes_to_add = 1) {
headers/cpp/stl_deque.h
924
if (__nodes_to_add > size_type(_M_start._M_node - _M_map))
headers/cpp/stl_deque.h
928
void _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front);
headers/cpp/stl_deque.h
967
size_type __n, const value_type& __x)
headers/cpp/stl_deque.h
989
size_type __n = __last - __first;
headers/cpp/stl_hash_map.h
101
hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_map.h
106
hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_map.h
116
hash_map(const value_type* __f, const value_type* __l, size_type __n)
headers/cpp/stl_hash_map.h
119
hash_map(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_map.h
123
hash_map(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_map.h
132
hash_map(const_iterator __f, const_iterator __l, size_type __n)
headers/cpp/stl_hash_map.h
135
hash_map(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_map.h
139
hash_map(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_map.h
147
size_type size() const { return _M_ht.size(); }
headers/cpp/stl_hash_map.h
148
size_type max_size() const { return _M_ht.max_size(); }
headers/cpp/stl_hash_map.h
184
size_type count(const key_type& __key) const { return _M_ht.count(__key); }
headers/cpp/stl_hash_map.h
192
size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
headers/cpp/stl_hash_map.h
197
void resize(size_type __hint) { _M_ht.resize(__hint); }
headers/cpp/stl_hash_map.h
198
size_type bucket_count() const { return _M_ht.bucket_count(); }
headers/cpp/stl_hash_map.h
199
size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
headers/cpp/stl_hash_map.h
200
size_type elems_in_bucket(size_type __n) const
headers/cpp/stl_hash_map.h
248
typedef typename _Ht::size_type size_type;
headers/cpp/stl_hash_map.h
266
explicit hash_multimap(size_type __n)
headers/cpp/stl_hash_map.h
268
hash_multimap(size_type __n, const hasher& __hf)
headers/cpp/stl_hash_map.h
270
hash_multimap(size_type __n, const hasher& __hf, const key_equal& __eql,
headers/cpp/stl_hash_map.h
280
hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n)
headers/cpp/stl_hash_map.h
284
hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_map.h
289
hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_map.h
299
hash_multimap(const value_type* __f, const value_type* __l, size_type __n)
headers/cpp/stl_hash_map.h
302
hash_multimap(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_map.h
306
hash_multimap(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_map.h
315
hash_multimap(const_iterator __f, const_iterator __l, size_type __n)
headers/cpp/stl_hash_map.h
318
hash_multimap(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_map.h
322
hash_multimap(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_map.h
330
size_type size() const { return _M_ht.size(); }
headers/cpp/stl_hash_map.h
331
size_type max_size() const { return _M_ht.max_size(); }
headers/cpp/stl_hash_map.h
364
size_type count(const key_type& __key) const { return _M_ht.count(__key); }
headers/cpp/stl_hash_map.h
372
size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
headers/cpp/stl_hash_map.h
378
void resize(size_type __hint) { _M_ht.resize(__hint); }
headers/cpp/stl_hash_map.h
379
size_type bucket_count() const { return _M_ht.bucket_count(); }
headers/cpp/stl_hash_map.h
380
size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
headers/cpp/stl_hash_map.h
381
size_type elems_in_bucket(size_type __n) const
headers/cpp/stl_hash_map.h
65
typedef typename _Ht::size_type size_type;
headers/cpp/stl_hash_map.h
83
explicit hash_map(size_type __n)
headers/cpp/stl_hash_map.h
85
hash_map(size_type __n, const hasher& __hf)
headers/cpp/stl_hash_map.h
87
hash_map(size_type __n, const hasher& __hf, const key_equal& __eql,
headers/cpp/stl_hash_map.h
97
hash_map(_InputIterator __f, _InputIterator __l, size_type __n)
headers/cpp/stl_hash_set.h
104
hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_set.h
114
hash_set(const value_type* __f, const value_type* __l, size_type __n)
headers/cpp/stl_hash_set.h
117
hash_set(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_set.h
121
hash_set(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_set.h
130
hash_set(const_iterator __f, const_iterator __l, size_type __n)
headers/cpp/stl_hash_set.h
133
hash_set(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_set.h
137
hash_set(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_set.h
145
size_type size() const { return _M_ht.size(); }
headers/cpp/stl_hash_set.h
146
size_type max_size() const { return _M_ht.max_size(); }
headers/cpp/stl_hash_set.h
181
size_type count(const key_type& __key) const { return _M_ht.count(__key); }
headers/cpp/stl_hash_set.h
186
size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
headers/cpp/stl_hash_set.h
192
void resize(size_type __hint) { _M_ht.resize(__hint); }
headers/cpp/stl_hash_set.h
193
size_type bucket_count() const { return _M_ht.bucket_count(); }
headers/cpp/stl_hash_set.h
194
size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
headers/cpp/stl_hash_set.h
195
size_type elems_in_bucket(size_type __n) const
headers/cpp/stl_hash_set.h
241
typedef typename _Ht::size_type size_type;
headers/cpp/stl_hash_set.h
260
explicit hash_multiset(size_type __n)
headers/cpp/stl_hash_set.h
262
hash_multiset(size_type __n, const hasher& __hf)
headers/cpp/stl_hash_set.h
264
hash_multiset(size_type __n, const hasher& __hf, const key_equal& __eql,
headers/cpp/stl_hash_set.h
274
hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n)
headers/cpp/stl_hash_set.h
278
hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_set.h
283
hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hash_set.h
293
hash_multiset(const value_type* __f, const value_type* __l, size_type __n)
headers/cpp/stl_hash_set.h
296
hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_set.h
300
hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
headers/cpp/stl_hash_set.h
309
hash_multiset(const_iterator __f, const_iterator __l, size_type __n)
headers/cpp/stl_hash_set.h
312
hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_set.h
316
hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
headers/cpp/stl_hash_set.h
324
size_type size() const { return _M_ht.size(); }
headers/cpp/stl_hash_set.h
325
size_type max_size() const { return _M_ht.max_size(); }
headers/cpp/stl_hash_set.h
353
size_type count(const key_type& __key) const { return _M_ht.count(__key); }
headers/cpp/stl_hash_set.h
358
size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
headers/cpp/stl_hash_set.h
364
void resize(size_type __hint) { _M_ht.resize(__hint); }
headers/cpp/stl_hash_set.h
365
size_type bucket_count() const { return _M_ht.bucket_count(); }
headers/cpp/stl_hash_set.h
366
size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
headers/cpp/stl_hash_set.h
367
size_type elems_in_bucket(size_type __n) const
headers/cpp/stl_hash_set.h
62
typedef typename _Ht::size_type size_type;
headers/cpp/stl_hash_set.h
81
explicit hash_set(size_type __n)
headers/cpp/stl_hash_set.h
83
hash_set(size_type __n, const hasher& __hf)
headers/cpp/stl_hash_set.h
85
hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
headers/cpp/stl_hash_set.h
95
hash_set(_InputIterator __f, _InputIterator __l, size_type __n)
headers/cpp/stl_hash_set.h
99
hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
headers/cpp/stl_hashtable.h
1015
for (size_type __i = 0; __i < __ht._M_buckets.size(); ++__i) {
headers/cpp/stl_hashtable.h
232
size_type _M_num_elements;
headers/cpp/stl_hashtable.h
247
hashtable(size_type __n,
headers/cpp/stl_hashtable.h
262
hashtable(size_type __n,
headers/cpp/stl_hashtable.h
303
size_type size() const { return _M_num_elements; }
headers/cpp/stl_hashtable.h
304
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_hashtable.h
318
for (size_type __n = 0; __n < _M_buckets.size(); ++__n)
headers/cpp/stl_hashtable.h
328
for (size_type __n = 0; __n < _M_buckets.size(); ++__n)
headers/cpp/stl_hashtable.h
341
size_type bucket_count() const { return _M_buckets.size(); }
headers/cpp/stl_hashtable.h
343
size_type max_bucket_count() const
headers/cpp/stl_hashtable.h
346
size_type elems_in_bucket(size_type __bucket) const
headers/cpp/stl_hashtable.h
348
size_type __result = 0;
headers/cpp/stl_hashtable.h
402
size_type __n = 0;
headers/cpp/stl_hashtable.h
413
size_type __n = 0;
headers/cpp/stl_hashtable.h
423
size_type __n = __l - __f;
headers/cpp/stl_hashtable.h
431
size_type __n = __l - __f;
headers/cpp/stl_hashtable.h
439
size_type __n = 0;
headers/cpp/stl_hashtable.h
448
size_type __n = 0;
headers/cpp/stl_hashtable.h
460
size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
471
size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
480
size_type count(const key_type& __key) const
headers/cpp/stl_hashtable.h
482
const size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
483
size_type __result = 0;
headers/cpp/stl_hashtable.h
497
size_type erase(const key_type& __key);
headers/cpp/stl_hashtable.h
504
void resize(size_type __num_elements_hint);
headers/cpp/stl_hashtable.h
508
size_type _M_next_size(size_type __n) const
headers/cpp/stl_hashtable.h
511
void _M_initialize_buckets(size_type __n)
headers/cpp/stl_hashtable.h
513
const size_type __n_buckets = _M_next_size(__n);
headers/cpp/stl_hashtable.h
519
size_type _M_bkt_num_key(const key_type& __key) const
headers/cpp/stl_hashtable.h
524
size_type _M_bkt_num(const value_type& __obj) const
headers/cpp/stl_hashtable.h
529
size_type _M_bkt_num_key(const key_type& __key, size_t __n) const
headers/cpp/stl_hashtable.h
534
size_type _M_bkt_num(const value_type& __obj, size_t __n) const
headers/cpp/stl_hashtable.h
556
void _M_erase_bucket(const size_type __n, _Node* __first, _Node* __last);
headers/cpp/stl_hashtable.h
557
void _M_erase_bucket(const size_type __n, _Node* __last);
headers/cpp/stl_hashtable.h
571
size_type __bucket = _M_ht->_M_bkt_num(__old->_M_val);
headers/cpp/stl_hashtable.h
596
size_type __bucket = _M_ht->_M_bkt_num(__old->_M_val);
headers/cpp/stl_hashtable.h
702
const size_type __n = _M_bkt_num(__obj);
headers/cpp/stl_hashtable.h
721
const size_type __n = _M_bkt_num(__obj);
headers/cpp/stl_hashtable.h
746
size_type __n = _M_bkt_num(__obj);
headers/cpp/stl_hashtable.h
766
const size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
773
for (size_type __m = __n + 1; __m < _M_buckets.size(); ++__m)
headers/cpp/stl_hashtable.h
789
const size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
801
for (size_type __m = __n + 1; __m < _M_buckets.size(); ++__m)
headers/cpp/stl_hashtable.h
812
typename hashtable<_Val,_Key,_HF,_Ex,_Eq,_All>::size_type
headers/cpp/stl_hashtable.h
815
const size_type __n = _M_bkt_num_key(__key);
headers/cpp/stl_hashtable.h
817
size_type __erased = 0;
headers/cpp/stl_hashtable.h
849
const size_type __n = _M_bkt_num(__p->_M_val);
headers/cpp/stl_hashtable.h
879
size_type __f_bucket = __first._M_cur ?
headers/cpp/stl_hashtable.h
881
size_type __l_bucket = __last._M_cur ?
headers/cpp/stl_hashtable.h
890
for (size_type __n = __f_bucket + 1; __n < __l_bucket; ++__n)
headers/cpp/stl_hashtable.h
918
::resize(size_type __num_elements_hint)
headers/cpp/stl_hashtable.h
920
const size_type __old_n = _M_buckets.size();
headers/cpp/stl_hashtable.h
922
const size_type __n = _M_next_size(__num_elements_hint);
headers/cpp/stl_hashtable.h
927
for (size_type __bucket = 0; __bucket < __old_n; ++__bucket) {
headers/cpp/stl_hashtable.h
930
size_type __new_bucket = _M_bkt_num(__first->_M_val, __n);
headers/cpp/stl_hashtable.h
941
for (size_type __bucket = 0; __bucket < __tmp.size(); ++__bucket) {
headers/cpp/stl_hashtable.h
957
::_M_erase_bucket(const size_type __n, _Node* __first, _Node* __last)
headers/cpp/stl_hashtable.h
979
::_M_erase_bucket(const size_type __n, _Node* __last)
headers/cpp/stl_hashtable.h
994
for (size_type __i = 0; __i < _M_buckets.size(); ++__i) {
headers/cpp/stl_list.h
329
size_type size() const {
headers/cpp/stl_list.h
330
size_type __result = 0;
headers/cpp/stl_list.h
334
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_list.h
358
insert(__pos, (size_type) __n, (_Tp) __x);
headers/cpp/stl_list.h
377
void insert(iterator __pos, size_type __n, const _Tp& __x);
headers/cpp/stl_list.h
396
void resize(size_type __new_size, const _Tp& __x);
headers/cpp/stl_list.h
397
void resize(size_type __new_size) { resize(__new_size, _Tp()); }
headers/cpp/stl_list.h
404
list(size_type __n, const _Tp& __value,
headers/cpp/stl_list.h
408
explicit list(size_type __n)
headers/cpp/stl_list.h
447
void assign(size_type __n, const _Tp& __val);
headers/cpp/stl_list.h
459
{ assign((size_type) __n, (_Tp) __val); }
headers/cpp/stl_list.h
586
list<_Tp, _Alloc>::insert(iterator __position, size_type __n, const _Tp& __x)
headers/cpp/stl_list.h
602
void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x)
headers/cpp/stl_list.h
605
size_type __len = 0;
headers/cpp/stl_list.h
633
void list<_Tp, _Alloc>::assign(size_type __n, const _Tp& __val) {
headers/cpp/stl_map.h
148
size_type size() const { return _M_t.size(); }
headers/cpp/stl_map.h
149
size_type max_size() const { return _M_t.max_size(); }
headers/cpp/stl_map.h
180
size_type erase(const key_type& __x) { return _M_t.erase(__x); }
headers/cpp/stl_map.h
189
size_type count(const key_type& __x) const { return _M_t.count(__x); }
headers/cpp/stl_map.h
84
typedef typename _Rep_type::size_type size_type;
headers/cpp/stl_multimap.h
145
size_type size() const { return _M_t.size(); }
headers/cpp/stl_multimap.h
146
size_type max_size() const { return _M_t.max_size(); }
headers/cpp/stl_multimap.h
169
size_type erase(const key_type& __x) { return _M_t.erase(__x); }
headers/cpp/stl_multimap.h
178
size_type count(const key_type& __x) const { return _M_t.count(__x); }
headers/cpp/stl_multimap.h
83
typedef typename _Rep_type::size_type size_type;
headers/cpp/stl_multiset.h
133
size_type size() const { return _M_t.size(); }
headers/cpp/stl_multiset.h
134
size_type max_size() const { return _M_t.max_size(); }
headers/cpp/stl_multiset.h
163
size_type erase(const key_type& __x) {
headers/cpp/stl_multiset.h
175
size_type count(const key_type& __x) const { return _M_t.count(__x); }
headers/cpp/stl_multiset.h
69
typedef typename _Rep_type::size_type size_type;
headers/cpp/stl_queue.h
122
typedef typename _Sequence::size_type size_type;
headers/cpp/stl_queue.h
176
size_type size() const { return c.size(); }
headers/cpp/stl_queue.h
46
typedef typename _Sequence::size_type size_type;
headers/cpp/stl_queue.h
58
size_type size() const { return c.size(); }
headers/cpp/stl_rope.h
1339
static _CharT _S_fetch(_RopeRep* __r, size_type __pos);
headers/cpp/stl_rope.h
1348
static _CharT* _S_fetch_ptr(_RopeRep* __r, size_type __pos);
headers/cpp/stl_rope.h
1756
size_type copy(size_type __pos, size_type __n, _CharT* __buffer) const
headers/cpp/stl_rope.h
1797
_CharT operator[] (size_type __pos) const {
headers/cpp/stl_rope.h
1801
_CharT at(size_type __pos) const {
headers/cpp/stl_rope.h
1823
size_type size() const {
headers/cpp/stl_rope.h
1827
size_type length() const {
headers/cpp/stl_rope.h
1831
size_type max_size() const {
headers/cpp/stl_rope.h
2219
static const size_type npos;
headers/cpp/stl_rope.h
2221
size_type find(_CharT __c, size_type __pos = 0) const;
headers/cpp/stl_rope.h
2222
size_type find(_CharT* __s, size_type __pos = 0) const {
headers/cpp/stl_rope.h
2223
size_type __result_pos;
headers/cpp/stl_rope.h
2256
reference mutable_reference_at(size_type __pos) {
headers/cpp/stl_rope.h
2261
reference operator[] (size_type __pos) {
headers/cpp/stl_rope.h
2265
reference at(size_type __pos) {
headers/cpp/stl_rope.h
2270
void resize(size_type __n, _CharT __c) {}
headers/cpp/stl_rope.h
2271
void resize(size_type __n) {}
headers/cpp/stl_rope.h
2272
void reserve(size_type __res_arg = 0) {}
headers/cpp/stl_rope.h
2273
size_type capacity() const {
headers/cpp/stl_rope.h
2280
size_type copy(_CharT* __buffer, size_type __n,
headers/cpp/stl_rope.h
2281
size_type __pos = 0) const {
headers/cpp/stl_rope.h
2308
const rope<_CharT, _Alloc>::size_type rope<_CharT, _Alloc>::npos =
headers/cpp/stl_rope.h
2309
(size_type)(-1);
headers/cpp/stl_set.h
127
size_type size() const { return _M_t.size(); }
headers/cpp/stl_set.h
128
size_type max_size() const { return _M_t.max_size(); }
headers/cpp/stl_set.h
157
size_type erase(const key_type& __x) {
headers/cpp/stl_set.h
169
size_type count(const key_type& __x) const { return _M_t.count(__x); }
headers/cpp/stl_set.h
69
typedef typename _Rep_type::size_type size_type;
headers/cpp/stl_slist.h
355
slist(size_type __n, const value_type& __x,
headers/cpp/stl_slist.h
359
explicit slist(size_type __n) : _Base(allocator_type())
headers/cpp/stl_slist.h
392
void assign(size_type __n, const _Tp& __val);
headers/cpp/stl_slist.h
404
{ assign((size_type) __n, (_Tp) __val); }
headers/cpp/stl_slist.h
421
size_type size() const { return __slist_size(_M_head._M_next); }
headers/cpp/stl_slist.h
423
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_slist.h
466
size_type __n, const value_type& __x) {
headers/cpp/stl_slist.h
467
for (size_type __i = 0; __i < __n; ++__i)
headers/cpp/stl_slist.h
527
void insert_after(iterator __pos, size_type __n, const value_type& __x) {
headers/cpp/stl_slist.h
563
void insert(iterator __pos, size_type __n, const value_type& __x) {
headers/cpp/stl_slist.h
610
void resize(size_type new_size, const _Tp& __x);
headers/cpp/stl_slist.h
611
void resize(size_type new_size) { resize(new_size, _Tp()); }
headers/cpp/stl_slist.h
707
void slist<_Tp, _Alloc>::assign(size_type __n, const _Tp& __val) {
headers/cpp/stl_slist.h
777
void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x)
headers/cpp/stl_stack.h
46
typedef typename _Sequence::size_type size_type;
headers/cpp/stl_stack.h
58
size_type size() const { return _M_c.size(); }
headers/cpp/stl_tree.h
1039
typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::size_type
headers/cpp/stl_tree.h
1043
size_type __n = 0;
headers/cpp/stl_tree.h
1152
typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::size_type
headers/cpp/stl_tree.h
1157
size_type __n = 0;
headers/cpp/stl_tree.h
578
size_type _M_node_count; // keeps track of size of tree
headers/cpp/stl_tree.h
699
size_type size() const { return _M_node_count; }
headers/cpp/stl_tree.h
700
size_type max_size() const { return size_type(-1); }
headers/cpp/stl_tree.h
729
size_type erase(const key_type& __x);
headers/cpp/stl_tree.h
746
size_type count(const key_type& __x) const;
headers/cpp/stl_vector.h
211
size_type size() const
headers/cpp/stl_vector.h
212
{ return size_type(end() - begin()); }
headers/cpp/stl_vector.h
213
size_type max_size() const
headers/cpp/stl_vector.h
214
{ return size_type(-1) / sizeof(_Tp); }
headers/cpp/stl_vector.h
215
size_type capacity() const
headers/cpp/stl_vector.h
216
{ return size_type(_M_end_of_storage - begin()); }
headers/cpp/stl_vector.h
220
reference operator[](size_type __n) { return *(begin() + __n); }
headers/cpp/stl_vector.h
221
const_reference operator[](size_type __n) const { return *(begin() + __n); }
headers/cpp/stl_vector.h
223
reference at(size_type __n) {
headers/cpp/stl_vector.h
229
const_reference at(size_type __n) const {
headers/cpp/stl_vector.h
238
vector(size_type __n, const _Tp& __value,
headers/cpp/stl_vector.h
243
explicit vector(size_type __n)
headers/cpp/stl_vector.h
283
void reserve(size_type __n) {
headers/cpp/stl_vector.h
285
const size_type __old_size = size();
headers/cpp/stl_vector.h
300
void assign(size_type __n, const _Tp& __val);
headers/cpp/stl_vector.h
312
{ assign((size_type) __n, (_Tp) __val); }
headers/cpp/stl_vector.h
356
size_type __n = __position - begin();
headers/cpp/stl_vector.h
366
size_type __n = __position - begin();
headers/cpp/stl_vector.h
386
insert(__pos, (size_type) __n, (_Tp) __val);
headers/cpp/stl_vector.h
400
void insert (iterator __pos, size_type __n, const _Tp& __x);
headers/cpp/stl_vector.h
420
void resize(size_type __new_size, const _Tp& __x) {
headers/cpp/stl_vector.h
426
void resize(size_type __new_size) { resize(__new_size, _Tp()); }
headers/cpp/stl_vector.h
433
iterator _M_allocate_and_copy(size_type __n, _ForwardIterator __first,
headers/cpp/stl_vector.h
444
iterator _M_allocate_and_copy(size_type __n, const_iterator __first,
headers/cpp/stl_vector.h
471
size_type __n = 0;
headers/cpp/stl_vector.h
522
const size_type __xlen = __x.size();
headers/cpp/stl_vector.h
575
size_type __len = 0;
headers/cpp/stl_vector.h
612
const size_type __old_size = size();
headers/cpp/stl_vector.h
613
const size_type __len = __old_size != 0 ? 2 * __old_size : 1;
headers/cpp/stl_vector.h
643
const size_type __old_size = size();
headers/cpp/stl_vector.h
644
const size_type __len = __old_size != 0 ? 2 * __old_size : 1;
headers/cpp/stl_vector.h
664
void vector<_Tp, _Alloc>::insert(iterator __position, size_type __n,
headers/cpp/stl_vector.h
668
if (size_type(_M_end_of_storage - _M_finish) >= __n) {
headers/cpp/stl_vector.h
670
const size_type __elems_after = _M_finish - __position;
headers/cpp/stl_vector.h
687
const size_type __old_size = size();
headers/cpp/stl_vector.h
688
const size_type __len = __old_size + max(__old_size, __n);
headers/cpp/stl_vector.h
731
size_type __n = 0;
headers/cpp/stl_vector.h
733
if (size_type(_M_end_of_storage - _M_finish) >= __n) {
headers/cpp/stl_vector.h
734
const size_type __elems_after = _M_finish - __position;
headers/cpp/stl_vector.h
753
const size_type __old_size = size();
headers/cpp/stl_vector.h
754
const size_type __len = __old_size + max(__old_size, __n);
headers/cpp/stl_vector.h
783
size_type __n = 0;
headers/cpp/stl_vector.h
785
if (size_type(_M_end_of_storage - _M_finish) >= __n) {
headers/cpp/stl_vector.h
786
const size_type __elems_after = _M_finish - __position;
headers/cpp/stl_vector.h
803
const size_type __old_size = size();
headers/cpp/stl_vector.h
804
const size_type __len = __old_size + max(__old_size, __n);
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
345
for (vector<entry_ref>::size_type i = 0; i < fRefs.size(); i++) {
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
355
for (vector<entry_ref>::size_type i = 0; i < fImageRefs.size(); i++) {
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
519
for (vector<entry_ref>::size_type i = 0; i < refs->size(); i++) {
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
574
for (vector<entry_ref>::size_type i = 0; i < refs->size(); i++) {
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
58
for (vector<entry_ref>::size_type i = 0; i < fRefs.size(); i++) {
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
95
for (vector<entry_ref>::size_type i = 0; i < fRefs.size(); i++) {
src/apps/mediaplayer/supplier/MediaFileTrackSupplier.cpp
34
for (vector<BMediaFile*>::size_type i = fMediaFiles.size() - 1;
src/apps/mediaplayer/supplier/MediaFileTrackSupplier.cpp
40
for (vector<BBitmap*>::size_type i = fBitmaps.size() - 1;
src/build/libbe/support/Archivable.cpp
266
string::size_type pos = 0;
src/build/libbe/support/Archivable.cpp
267
string::size_type oldpos = 0;
src/build/libroot/fs.cpp
281
string::size_type pos = normalizedPath.rfind('/');
src/kits/support/Archivable.cpp
127
string::size_type pos = 0;
src/kits/support/Archivable.cpp
128
string::size_type oldpos = 0;
src/tests/kits/app/bmessage/MessageItemTest.h
60
typedef typename ArrayType::size_type SizeType;