Searched refs:size_type (Results 226 - 250 of 470) sorted by relevance

1234567891011>>

/external/libcxx/test/strings/basic.string/string.ops/string_rfind/
H A Dstring_size.pass.cpp12 // size_type rfind(const basic_string& str, size_type pos = npos) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x)
30 test(const S& s, const S& str, typename S::size_type x)
/external/llvm/include/llvm/ADT/
H A DSmallPtrSet.h76 typedef unsigned size_type; typedef in class:llvm::SmallPtrSetImplBase
78 size_type size() const { return NumElements; }
267 size_type count(PtrType Ptr) const {
H A DSmallVector.h98 typedef size_t size_type; typedef in class:llvm::SmallVectorTemplateCommon
128 size_type size() const { return end()-begin(); }
129 size_type max_size() const { return size_type(-1) / sizeof(T); }
352 typedef typename SuperClass::size_type size_type; typedef in class:llvm::SmallVectorImpl
418 size_type NumInputs = std::distance(in_start, in_end);
420 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
432 void append(size_type NumInputs, const T &Elt) {
434 if (NumInputs > size_type(thi
[all...]
/external/stlport/stlport/stl/pointers/
H A D_set.h108 typedef typename _Priv_Rep_type::size_type size_type; typedef in class:set
220 size_type size() const { return _M_t.size(); }
221 size_type max_size() const { return _M_t.max_size(); }
255 size_type erase(const key_type& __x)
269 size_type count(const _KT& __x) const
355 typedef typename _Priv_Rep_type::size_type size_type; typedef in class:multiset
473 size_type size() const { return _M_t.size(); }
474 size_type max_siz
[all...]
/external/stlport/stlport/stl/
H A D_rope.h1094 typedef size_t size_type; typedef in class:rope
1142 static _CharT _S_fetch(_RopeRep* __r, size_type __pos);
1150 static _CharT* _S_fetch_ptr(_RopeRep* __r, size_type __pos);
1559 size_type copy(size_type __pos, size_type __n, _CharT* __buffer) const {
1599 _CharT operator[] (size_type __pos) const {
1603 _CharT at(size_type __pos) const {
1625 size_type size() const {
1629 size_type lengt
[all...]
H A D_tree.h307 typedef size_t size_type; typedef in class:_Rb_tree
332 size_type _M_node_count; // keeps track of size of tree
433 size_type size() const { return _M_node_count; }
434 size_type max_size() const { return size_type(-1); }
502 size_type erase(const key_type& __x) {
504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
509 size_type erase_unique(const key_type& __x) {
596 size_type count(const _KT& __x) const {
/external/libcxx/src/
H A Dstring.cpp362 typedef typename S::size_type size_type; typedef
363 size_type available = s.size();
369 size_type used = static_cast<size_type>(status);
/external/libcxx/test/strings/basic.string/string.modifiers/string_erase/
H A Dsize_size.pass.cpp13 // erase(size_type pos = 0, size_type n = npos);
23 test(S s, typename S::size_type pos, typename S::size_type n, S expected)
25 typename S::size_type old_size = s.size();
43 test(S s, typename S::size_type pos, S expected)
45 typename S::size_type old_size = s.size();
/external/libcxx/test/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_pointer.pass.cpp25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, S expected)
27 typename S::size_type old_size = s.size();
30 typename S::size_type xlen = last - first;
34 typename S::size_type rlen = S::traits_type::length(str);
H A Dsize_size_size_char.pass.cpp13 // replace(size_type pos, size_type n1, size_type n2, charT c);
24 test(S s, typename S::size_type pos, typename S::size_type n1,
25 typename S::size_type n2, typename S::value_type c,
28 typename S::size_type old_size = s.size();
36 typename S::size_type xlen = std::min(n1, old_size - pos);
37 typename S::size_type rlen = n2;
/external/stlport/stlport/stl/debug/
H A D_slist.h111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
119 explicit slist(size_type __n) : _M_non_dbg_impl(__n) , _M_iter_list(&_M_non_dbg_impl) {}
179 void assign(size_type __n, const value_type& __val) {
200 size_type size() const { return _M_non_dbg_impl.size(); }
201 size_type max_size() const { return _M_non_dbg_impl.max_size(); }
253 void insert_after(iterator __pos, size_type __n, const value_type& __x) {
344 void insert(iterator __pos, size_type __n, const value_type& __x) {
382 void resize(size_type __new_size, const value_type& __x = _Tp()) {
384 void resize(size_type __new_siz
[all...]
/external/chromium_org/chrome/browser/
H A Dprocess_singleton_win.cc111 const std::wstring::size_type first_null = msg.find_first_of(L'\0');
124 const std::wstring::size_type second_null =
137 const std::wstring::size_type third_null =
/external/chromium_org/extensions/common/
H A Dmessage_bundle.cc230 std::string::size_type beg_index = 0;
231 const std::string::size_type var_begin_delimiter_size =
242 std::string::size_type end_index =
/external/chromium_org/third_party/webrtc/base/
H A Dsocketaddress.cc183 std::string::size_type closebracket = str.rfind(']');
185 std::string::size_type colon = str.find(':', closebracket);
194 std::string::size_type pos = str.find(':');
/external/libcxx/test/strings/basic.string/string.modifiers/string_insert/
H A Dsize_size_char.pass.cpp13 // insert(size_type pos, size_type n, charT c);
23 test(S s, typename S::size_type pos, typename S::size_type n,
26 typename S::size_type old_size = s.size();
/external/stlport/test/unit/
H A Dstring_test.cpp505 string::size_type pos = 0, nb = 2;
648 string::size_type const& npos_local = string::npos;
667 * size_type find(const basic_string<charT,traits,Allocator>& str,
668 * size_type pos = 0) const;
679 * string s; string::size_type p = s.find( "", 0, 0 );
684 * string::size_type p = s.find( "", 0, 0 );
698 string::size_type p = s.find( "", 0, 0 );
705 string::size_type p = s.find( "", 0, 0 );
711 string::size_type p = s.find( "", 1, 0 );
717 string::size_type
[all...]
/external/chromium_org/base/debug/
H A Ddebugger_posix.cc151 StringPiece::size_type pid_index = status.find(tracer);
/external/chromium_org/chrome/common/
H A Dauto_start_linux.cc49 std::string::size_type content_length = autostart_file_contents.length();
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.h187 std::string::size_type pos(0);
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dvalidating_util.cc68 std::string::size_type separator_position =
/external/libcxx/test/containers/unord/unord.multimap/
H A Dlocal_iterators.fail.cpp16 // local_iterator begin (size_type n);
17 // local_iterator end (size_type n);
18 // const_local_iterator begin (size_type n) const;
19 // const_local_iterator end (size_type n) const;
20 // const_local_iterator cbegin(size_type n) const;
21 // const_local_iterator cend (size_type n) const;
44 C::size_type b = c.bucket(0);
109 C::size_type b = c.bucket(0);
173 C::size_type b = c.bucket(0);
237 C::size_type
[all...]
/external/oprofile/libpp/
H A Dsymbol_container.cpp21 symbol_container::size_type symbol_container::size() const
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_helpers.cc176 string::size_type last_slash = file->name().find_last_of('/');
271 string::size_type first_line_end = def.find_first_of('\n');
275 string::size_type second_line_start = first_line_end + 1;
276 string::size_type second_line_length =
/external/chromium_org/base/files/
H A Dfile_path.cc48 StringType::size_type FindDriveLetter(const StringType& path) {
83 StringType::size_type letter = FindDriveLetter(path);
111 StringType::size_type FinalExtensionSeparatorPosition(const StringType& path) {
123 StringType::size_type ExtensionSeparatorPosition(const StringType& path) {
124 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path);
130 const StringType::size_type penultimate_dot =
132 const StringType::size_type last_separator =
181 StringType::size_type nul_pos = path_.find(kStringTerminator);
248 StringType::size_type letter = FindDriveLetter(dir.value());
316 StringType::size_type lette
[all...]
H A Dfile_util.cc111 std::string::size_type end1 = line1.find_last_not_of("\r\n");
117 std::string::size_type end2 = line2.find_last_not_of("\r\n");

Completed in 7283 milliseconds

1234567891011>>