Searched refs:size_type (Results 76 - 100 of 470) sorted by relevance

1234567891011>>

/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_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_bvector.h176 typedef size_t size_type; typedef in struct:_Bit_iter
367 typedef size_t size_type; typedef in class:__BVECTOR_QUALIFIED
390 void _M_initialize(size_type __n) {
404 size_type __len = size() ? 2 * size() : _STLP_WORD_BIT;
429 size_type __n = _STLP_STD::distance(__first, __last);
449 size_type __n = _STLP_STD::distance(__first, __last);
457 size_type __len = size() + (max)(size(), __n);
486 size_type size() const { return size_type(end() - begin()); }
487 size_type max_siz
[all...]
H A D_hashtable.c111 # define size_type size_t macro
121 # define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All>::size_type
148 ::_M_before_begin(size_type &__n) const {
157 size_type &__n) {
183 ::_M_insert_noresize(size_type __n, const value_type& __obj) {
186 size_type __prev = __n;
200 const size_type __n = _M_bkt_num(__obj);
231 const size_type __n = _M_bkt_num(__obj);
264 const size_type __n = _M_bkt_num_key(__key);
271 size_type __erase
537 #undef size_type macro
[all...]
H A D_stack.h65 typedef typename _Sequence::size_type size_type; typedef in class:stack
83 size_type size() const { return c.size(); }
/external/chromium_org/chrome/browser/sessions/
H A Dsession_backend.h36 typedef SessionCommand::size_type size_type; typedef in class:SessionBackend
H A Dbase_session_service.cc151 std::numeric_limits<SessionCommand::size_type>::max() - 1024;
165 static const SessionCommand::size_type max_id_size =
166 std::numeric_limits<SessionCommand::size_type>::max() - 1024;
185 static const SessionCommand::size_type max_user_agent_size =
186 std::numeric_limits<SessionCommand::size_type>::max() - 1024;
205 static const SessionCommand::size_type max_id_size =
206 std::numeric_limits<SessionCommand::size_type>::max() - 1024;
/external/clang/test/CodeGenCXX/
H A Dlpad-linetable.cpp44 typedef size_t size_type; typedef in class:std::vector
49 size_type
/external/libcxx/test/containers/associative/multiset/
H A Dcount.pass.cpp14 // size_type count(const key_type& k) const;
27 typedef M::size_type R;
62 typedef M::size_type R;
/external/libcxx/test/containers/sequences/vector.bool/
H A Dtypes.pass.cpp22 // typedef typename allocator_type::size_type size_type;
47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
/external/libcxx/test/strings/basic.string/string.access/
H A Dindex.pass.cpp12 // const_reference operator[](size_type pos) const;
13 // reference operator[](size_type pos);
30 for (S::size_type i = 0; i < cs.size(); ++i)
44 for (S::size_type i = 0; i < cs.size(); ++i)
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h49 typename Sequence::size_type i =
54 typename Sequence::size_type parent = (i - 1) / 2;
H A DSetVector.h47 typedef typename vector_type::size_type size_type; typedef in class:llvm::SetVector
64 size_type size() const {
95 const_reference operator[](size_type n) const {
156 size_type count(const key_type &key) const {
H A DSmallSet.h40 typedef size_t size_type; typedef in class:llvm::SmallSet
47 size_type size() const {
52 size_type count(const T &V) const {
/external/stlport/stlport/stl/debug/
H A D_deque.h99 reference operator[](size_type __n) {
103 const_reference operator[](size_type __n) const {
108 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); }
109 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); }
136 explicit deque(size_type __n, const value_type& __x = _Tp(),
138 deque(size_type __n, const value_type& __x,
143 explicit deque(size_type __n) :
200 size_type size() const { return _M_non_dbg_impl.size(); }
201 size_type max_size() const { return _M_non_dbg_impl.max_size(); }
212 void assign(size_type __
[all...]
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers.h104 const char* GetPtr(Blocks::size_type block_idx) const {
110 char* GetPtr(Blocks::size_type block_idx) {
150 Blocks::size_type* block_buffer_idx);
157 char* Reserve(size_t size, Blocks::size_type* block_buffer_idx);
177 Blocks::size_type num_blocks() const { return blocks_.size(); }
195 void CleanupBlocksStartingFrom(Blocks::size_type start_idx);
270 BalsaBuffer::Blocks::size_type buffer_base_idx;
355 iterator_base(const BalsaHeaders* headers, HeaderLines::size_type index);
359 const HeaderLines::size_type header_lines_size = header_lines.size();
360 const HeaderLines::size_type original_id
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCommon.h65 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type; typedef in class:TVector
68 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {}
/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/libcxx/test/containers/sequences/deque/
H A Dtypes.pass.cpp24 // typedef typename allocator_type::size_type size_type;
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
85 static_assert((std::is_same<C::size_type, std::size_t>::value), "");
/external/libcxx/test/strings/basic.string/string.ops/string_find/
H A Dchar_size.pass.cpp12 // size_type find(charT c, size_type pos = 0) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos,
22 typename S::size_type x)
31 test(const S& s, typename S::value_type c, typename S::size_type x)
/external/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
H A Dchar_size.pass.cpp12 // size_type find_first_not_of(charT c, size_type pos = 0) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos,
22 typename S::size_type x)
31 test(const S& s, typename S::value_type c, typename S::size_type x)
/external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
H A Dchar_size.pass.cpp12 // size_type find_last_not_of(charT c, size_type pos = npos) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos,
22 typename S::size_type x)
31 test(const S& s, typename S::value_type c, typename S::size_type x)
/external/libcxx/test/strings/basic.string/string.ops/string_rfind/
H A Dchar_size.pass.cpp12 // size_type rfind(charT c, size_type pos = npos) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos,
22 typename S::size_type x)
31 test(const S& s, typename S::value_type c, typename S::size_type x)
/external/chromium_org/chrome/installer/test/
H A Dpe_image_resources.h29 DCHECK_NE(static_cast<std::wstring::size_type>(0), name.size());
/external/chromium_org/net/cert/
H A Dpem_tokenizer.h58 base::StringPiece::size_type pos_;

Completed in 4477 milliseconds

1234567891011>>