Searched refs:__pos (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/swig-12/Lib/std/
H A Dstd_basic_string.i70 append(const basic_string& __str, size_type __pos, size_type __n);
82 assign(const basic_string& __str, size_type __pos, size_type __n);
95 insert(size_type __pos, const _CharT* __s, size_type __n);
98 insert(size_type __pos, size_type __n, _CharT __c);
101 erase(size_type __pos = 0, size_type __n = npos);
104 replace(size_type __pos, size_type __n, const basic_string& __str);
111 replace(size_type __pos, size_type __n1, const _CharT* __s,
115 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c);
119 copy(_CharT* __s, size_type __n, size_type __pos = 0) const;
125 find(const _CharT* __s, size_type __pos, size_typ
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Dvstring.h82 _M_check(size_type __pos, const char* __s) const argument
84 if (__pos > this->size())
86 return __pos;
96 // NB: _M_limit doesn't check for a bad __pos value.
98 _M_limit(size_type __pos, size_type __off) const argument
100 const bool __testoff = __off < this->size() - __pos;
101 return __testoff ? __off : this->size() - __pos;
155 __versa_string(const __versa_string& __str, size_type __pos, argument
158 + __str._M_check(__pos,
160 __str._M_data() + __str._M_limit(__pos, __
170 __versa_string(const __versa_string& __str, size_type __pos, size_type __n, const _Alloc& __a) argument
448 operator [](size_type __pos) argument
549 append(const __versa_string& __str, size_type __pos, size_type __n) argument
646 assign(const __versa_string& __str, size_type __pos, size_type __n) argument
801 insert(size_type __pos, const _CharT* __s, size_type __n) argument
820 insert(size_type __pos, const _CharT* __s) argument
844 insert(size_type __pos, size_type __n, _CharT __c) argument
864 const size_type __pos = __p - _M_ibegin(); local
905 const size_type __pos = __position - _M_ibegin(); local
925 const size_type __pos = __first - _M_ibegin(); local
948 replace(size_type __pos, size_type __n, const __versa_string& __str) argument
997 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
1021 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
1044 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
[all...]
H A Dsso_string_base.h212 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s,
216 _M_erase(size_type __pos, size_type __n);
508 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s, argument
511 const size_type __how_much = _M_length() - __pos - __len1;
516 if (__pos)
517 _S_copy(__r, _M_data(), __pos);
519 _S_copy(__r + __pos, __s, __len2);
521 _S_copy(__r + __pos + __len2,
522 _M_data() + __pos + __len1, __how_much);
532 _M_erase(size_type __pos, size_typ argument
[all...]
H A Drc_string_base.h335 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s,
339 _M_erase(size_type __pos, size_type __n);
638 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s, argument
641 const size_type __how_much = _M_length() - __pos - __len1;
646 if (__pos)
647 _S_copy(__r->_M_refdata(), _M_data(), __pos);
649 _S_copy(__r->_M_refdata() + __pos, __s, __len2);
651 _S_copy(__r->_M_refdata() + __pos + __len2,
652 _M_data() + __pos + __len1, __how_much);
661 _M_erase(size_type __pos, size_typ argument
[all...]
H A Dbitmap_allocator.h143 operator[](const size_type __pos) const throw()
144 { return this->_M_start[__pos]; }
147 insert(iterator __pos, const_reference __x);
166 erase(iterator __pos) throw();
176 insert(iterator __pos, const_reference __x) argument
180 size_type __to_move = this->_M_finish - __pos;
190 *__pos = __x;
198 while (__first != __pos)
221 erase(iterator __pos) throw() argument
223 while (__pos
521 __bit_allocate(size_t* __pbmap, size_t __pos) argument
532 __bit_free(size_t* __pbmap, size_t __pos) argument
[all...]
H A Dstdio_sync_filebuf.h186 seekpos(std::streampos __pos, argument
189 { return seekoff(std::streamoff(__pos), std::ios_base::beg, __mode); }
H A Dropeimpl.h77 size_t __pos = __x._M_current_pos; local
83 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
94 if (__buf_start_pos + __len <= __pos)
96 __buf_start_pos = __pos - __len / 4;
103 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
124 size_t __pos = __x._M_current_pos; local
127 if (__pos >= __x._M_root->_M_size)
138 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
163 if (__pos >= __curr_start_pos + __left_len)
321 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos) argument
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dpostypes.h166 fpos __pos(*this);
167 __pos += __off;
168 return __pos;
180 fpos __pos(*this);
181 __pos -= __off;
182 return __pos;
H A Dbasic_string.h308 _M_check(size_type __pos, const char* __s) const argument
310 if (__pos > this->size())
312 return __pos;
322 // NB: _M_limit doesn't check for a bad __pos value.
324 _M_limit(size_type __pos, size_type __off) const argument
326 const bool __testoff = __off < this->size() - __pos;
327 return __testoff ? __off : this->size() - __pos;
404 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
442 basic_string(const basic_string& __str, size_type __pos,
451 basic_string(const basic_string& __str, size_type __pos,
717 operator [](size_type __pos) argument
899 assign(const basic_string& __str, size_type __pos, size_type __n) argument
1066 insert(size_type __pos, const _CharT* __s) argument
1089 insert(size_type __pos, size_type __n, _CharT __c) argument
1109 const size_type __pos = __p - _M_ibegin(); local
1150 const size_type __pos = __position - _M_ibegin(); local
1170 const size_type __pos = __first - _M_ibegin(); local
1193 replace(size_type __pos, size_type __n, const basic_string& __str) argument
1258 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
1281 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
[all...]
H A Dstl_vector.h878 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __val, argument
881 _M_fill_insert(__pos, static_cast<size_type>(__n),
888 _M_insert_dispatch(iterator __pos, _InputIterator __first, argument
893 _M_range_insert(__pos, __first, __last, _IterCategory());
899 _M_range_insert(iterator __pos, _InputIterator __first,
905 _M_range_insert(iterator __pos, _ForwardIterator __first,
911 _M_fill_insert(iterator __pos, size_type __n, const value_type& __x);
922 _M_erase_at_end(pointer __pos) argument
924 std::_Destroy(__pos, this->_M_impl._M_finish, _M_get_Tp_allocator());
925 this->_M_impl._M_finish = __pos;
[all...]
H A Dstl_deque.h1369 _M_insert_dispatch(iterator __pos, argument
1372 _M_fill_insert(__pos, static_cast<size_type>(__n),
1379 _M_insert_dispatch(iterator __pos, argument
1385 _M_range_insert_aux(__pos, __first, __last, _IterCategory());
1391 _M_range_insert_aux(iterator __pos, _InputIterator __first,
1397 _M_range_insert_aux(iterator __pos, _ForwardIterator __first,
1404 _M_fill_insert(iterator __pos, size_type __n, const value_type& __x);
1408 _M_insert_aux(iterator __pos, const value_type& __x);
1412 _M_insert_aux(iterator __pos, size_type __n, const value_type& __x);
1417 _M_insert_aux(iterator __pos,
1452 _M_erase_at_begin(iterator __pos) argument
1454 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
1462 _M_erase_at_end(iterator __pos) argument
[all...]
H A Dstl_bvector.h890 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x, argument
892 { _M_fill_insert(__pos, __n, __x); }
896 _M_insert_dispatch(iterator __pos, argument
899 { _M_insert_range(__pos, __first, __last,
933 _M_insert_range(iterator __pos, _InputIterator __first, argument
938 __pos = insert(__pos, *__first);
939 ++__pos;
1005 _M_erase_at_end(iterator __pos) argument
1006 { this->_M_impl._M_finish = __pos; }
[all...]
H A Dboost_concept_check.h849 __pos = __c.insert(__t);
853 typename _MultipleAssociativeContainer::iterator __pos;
/macosx-10.10/emacs-93/emacs/src/
H A Dbuffer.h274 Lisp_Object __pos = (pos); \
275 if (NUMBERP (__pos)) \
277 charpos = __pos; \
278 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \
280 else if (MARKERP (__pos)) \
282 charpos = marker_position (__pos); \
283 bytepos = marker_byte_position (__pos); \
286 wrong_type_argument (Qinteger_or_marker_p, __pos); \

Completed in 375 milliseconds