Searched refs:size_type (Results 101 - 125 of 470) sorted by relevance

1234567891011>>

/external/clang/lib/Format/
H A DBreakableToken.h37 typedef std::pair<StringRef::size_type, unsigned> Split;
52 StringRef::size_type Length) const = 0;
95 StringRef::size_type Length) const override;
172 StringRef::size_type Length) const override;
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp22 typedef size_t size_type; typedef in class:std::initializer_list
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp46 typedef size_t size_type; typedef in class:std::initializer_list
/external/libcxx/test/language.support/support.initlist/
H A Dtypes.pass.cpp17 // typedef size_t size_type;
33 static_assert((std::is_same<std::initializer_list<A>::size_type, std::size_t>::value), "");
/external/libcxx/test/strings/basic.string/string.access/
H A Dat.pass.cpp12 // const_reference at(size_type pos) const;
13 // reference at(size_type pos);
23 test(S s, typename S::size_type pos)
/external/libcxx/test/strings/basic.string/string.capacity/
H A Dshrink_to_fit.pass.cpp23 typename S::size_type old_cap = s.capacity();
/external/libcxx/test/utilities/memory/default.allocator/
H A Dallocator_types.pass.cpp18 // typedef size_t size_type;
36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
/external/llvm/include/llvm/ADT/
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 Dilist.h346 typedef size_t size_type; typedef in class:llvm::iplist
384 size_type max_size() const { return size_type(-1); }
539 size_type LLVM_ATTRIBUTE_UNUSED_RESULT size() const {
641 typedef typename iplist<NodeTy>::size_type size_type; typedef in struct:llvm::ilist
648 explicit ilist(size_type count) {
651 ilist(size_type count, const NodeTy &val) {
673 void insert(iterator where, size_type count, const NodeTy &val) {
678 void assign(size_type coun
[all...]
/external/stlport/stlport/stl/pointers/
H A D_list.h78 typedef size_t size_type; typedef in class:list
96 explicit list(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
98 list(size_type __n, const value_type& __val,
105 explicit list(size_type __n)
165 size_type size() const { return _M_impl.size(); }
166 size_type max_size() const { return _M_impl.max_size(); }
225 void insert(iterator __pos, size_type __n, const value_type& __x)
243 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
245 void resize(size_type __new_size) { _M_impl.resize(__new_size); }
246 void resize(size_type __new_siz
[all...]
H A D_deque.h116 typedef size_t size_type; typedef in class:deque
139 reference operator[](size_type __n)
141 const_reference operator[](size_type __n) const
144 reference at(size_type __n)
146 const_reference at(size_type __n) const
154 size_type size() const { return _M_impl.size(); }
155 size_type max_size() const { return _M_impl.max_size(); }
165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
167 deque(size_type __n, const value_type& __val,
173 explicit deque(size_type __
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dsession_backend.cc41 typedef SessionCommand::size_type size_type; typedef in class:__anon4657::SessionFileReader
119 if (available_count_ < sizeof(size_type)) {
122 if (available_count_ < sizeof(size_type)) {
130 size_type command_size;
309 const size_type content_size = static_cast<size_type>((*i)->size());
310 const size_type total_size = content_size + sizeof(id_type);
/external/chromium_org/net/cert/
H A Dpem_tokenizer.cc53 StringPiece::size_type footer_pos = str_.find(it->footer, pos_);
60 StringPiece::size_type data_begin = pos_ + it->header.size();
/external/chromium_org/net/disk_cache/blockfile/
H A Dwebfonts_histogram.cc24 std::string::size_type* pos) {
39 std::string::size_type pos = 0;
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dtrie.cc32 for (std::vector<uint8_t>::size_type i = 0; i < key.size(); ++i) {
47 for (std::vector<uint8_t>::size_type i = 0; i < key_prefix.size(); ++i) {
/external/libcxx/test/containers/associative/map/map.ops/
H A Dcount.pass.cpp14 // size_type count(const key_type& k) const;
27 typedef M::size_type R;
65 typedef M::size_type R;
/external/libcxx/test/containers/associative/multimap/multimap.ops/
H A Dcount.pass.cpp14 // size_type count(const key_type& k) const;
27 typedef M::size_type R;
61 typedef M::size_type R;
/external/libcxx/test/containers/associative/set/
H A Dcount.pass.cpp14 // size_type count(const key_type& k) const;
26 typedef M::size_type R;
62 typedef M::size_type R;
/external/libcxx/test/containers/sequences/forwardlist/
H A Dtypes.pass.cpp23 // typedef typename allocator_traits<allocator_type>::size_type size_type;
41 static_assert((std::is_same<std::forward_list<char>::size_type, std::size_t>::value), "");
50 static_assert((std::is_same<std::forward_list<char, min_allocator<char>>::size_type, std::size_t>::value), "");
/external/libcxx/test/utilities/allocator.adaptor/
H A Dtypes.pass.cpp18 // typedef typename OuterTraits::size_type size_type;
45 std::scoped_allocator_adaptor<A1<int>>::size_type,
78 std::scoped_allocator_adaptor<A2<int>, A1<int>>::size_type,
/external/stlport/stlport/stl/
H A D_deque.c99 # define size_type size_t macro
108 const size_type __len = size();
123 size_type __n, const value_type& __x) {
155 size_type __n = __last - __first;
183 size_type __n = __last - __first;
211 if (size_type(__index) < this->size() >> 1) {
248 if (size_type(__index) < this->size() >> 1) {
464 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n,
468 size_type __length = this->size();
506 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __
816 #undef size_type macro
[all...]
/external/stlport/test/unit/
H A Dioiter_test.cpp44 string::size_type sz = strlen(strorg);
45 string::size_type i;
H A Dstack_allocator.h61 typedef size_t size_type; typedef in struct:StackAllocator
88 _Tp* allocate(size_type n, void* = 0) {
113 _Tp* _M_allocate(size_type n, size_type &new_n) {
119 void deallocate(pointer p, size_type n) {
137 size_type max_size() const { return m_state.m_end - *m_state.m_sharedCur; }
/external/libcxx/test/strings/basic.string/string.ops/string_rfind/
H A Dpointer_size.pass.cpp12 // size_type rfind(const charT* s, size_type pos = npos) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos,
22 typename S::size_type x)
27 typename S::size_type n = S::traits_type::length(str);
34 test(const S& s, const typename S::value_type* str, typename S::size_type x)
39 typename S::size_type pos = s.size();
40 typename S::size_type n = S::traits_type::length(str);
/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('/');

Completed in 591 milliseconds

1234567891011>>