Lines Matching defs:__y

837                  const _Rope_char_ptr_proxy<_CharT,_Alloc>& __y);
1022 const _Rope_const_iterator<_CharT,_Alloc>& __y);
1025 const _Rope_const_iterator<_CharT,_Alloc>& __y);
1028 const _Rope_const_iterator<_CharT,_Alloc>& __y);
1133 const _Rope_iterator<_CharT,_Alloc>& __y);
1136 const _Rope_iterator<_CharT,_Alloc>& __y);
1139 const _Rope_iterator<_CharT,_Alloc>& __y);
1533 rope operator() (const rope& __x, const rope& __y) {
1534 return __x + __y;
1601 // Return -1, 0, or 1 if __x < __y, __x == __y, or __x > __y resp.
1602 static int _S_compare(const _RopeRep* __x, const _RopeRep* __y);
1610 int compare(const rope& __y) const {
1611 return _S_compare(_M_tree_ptr, __y._M_tree_ptr);
1925 rope& append(const rope& __y) {
1927 __stl_assert(__y.get_allocator() == get_allocator());
1929 _RopeRep* __result = _S_concat(_M_tree_ptr, __y._M_tree_ptr);
2313 const _Rope_const_iterator<_CharT,_Alloc>& __y) {
2314 return (__x._M_current_pos == __y._M_current_pos &&
2315 __x._M_root == __y._M_root);
2320 const _Rope_const_iterator<_CharT,_Alloc>& __y) {
2321 return (__x._M_current_pos < __y._M_current_pos);
2326 const _Rope_const_iterator<_CharT,_Alloc>& __y) {
2327 return (ptrdiff_t)__x._M_current_pos - (ptrdiff_t)__y._M_current_pos;
2353 const _Rope_iterator<_CharT,_Alloc>& __y) {
2354 return (__x._M_current_pos == __y._M_current_pos &&
2355 __x._M_root_rope == __y._M_root_rope);
2360 const _Rope_iterator<_CharT,_Alloc>& __y) {
2361 return (__x._M_current_pos < __y._M_current_pos);
2366 const _Rope_iterator<_CharT,_Alloc>& __y) {
2367 return (ptrdiff_t)__x._M_current_pos - (ptrdiff_t)__y._M_current_pos;
2471 const _Rope_char_ptr_proxy<_CharT,_Alloc>& __y) {
2472 return (__x._M_pos == __y._M_pos && __x._M_root == __y._M_root);
2494 inline void swap(rope<_CharT,_Alloc>& __x, rope<_CharT,_Alloc>& __y) {
2495 __x.swap(__y);
2500 inline void swap(crope __x, crope __y) { __x.swap(__y); }
2501 inline void swap(wrope __x, wrope __y) { __x.swap(__y); }