Lines Matching refs:__start

715     _S_substring(_RopeRep* __base, size_t __start, size_t __endp1)  in _GLIBCXX_VISIBILITY()
725 if (0 == __start) in _GLIBCXX_VISIBILITY()
748 return _S_substring(__left, __start, __endp1); in _GLIBCXX_VISIBILITY()
749 else if (__start >= __left_len) in _GLIBCXX_VISIBILITY()
750 return _S_substring(__right, __start - __left_len, in _GLIBCXX_VISIBILITY()
753 __start, in _GLIBCXX_VISIBILITY()
766 if (__start >= __adj_endp1) in _GLIBCXX_VISIBILITY()
768 __result_len = __adj_endp1 - __start; in _GLIBCXX_VISIBILITY()
772 const _CharT* __section = __l->_M_data + __start; in _GLIBCXX_VISIBILITY()
778 __result = __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__l->_M_data + __start, in _GLIBCXX_VISIBILITY()
790 if (__start >= __adj_endp1) in _GLIBCXX_VISIBILITY()
792 __result_len = __adj_endp1 - __start; in _GLIBCXX_VISIBILITY()
797 __start + __old->_M_start, in _GLIBCXX_VISIBILITY()
798 __adj_endp1 - __start, in _GLIBCXX_VISIBILITY()
809 if (__start >= __adj_endp1) in _GLIBCXX_VISIBILITY()
811 __result_len = __adj_endp1 - __start; in _GLIBCXX_VISIBILITY()
818 { (*(__f->_M_fn))(__start, __result_len, __section); } in _GLIBCXX_VISIBILITY()
833 return _S_new_RopeSubstring(__base, __start, __adj_endp1 - __start, in _GLIBCXX_VISIBILITY()
1048 _S_flatten(_RopeRep* __r, size_t __start, size_t __len, in _GLIBCXX_VISIBILITY()
1052 _S_apply_to_pieces(__c, __r, __start, __start + __len); in _GLIBCXX_VISIBILITY()
1059 find(_CharT __pattern, size_t __start) const in _GLIBCXX_VISIBILITY()
1062 _S_apply_to_pieces(__c, this->_M_tree_ptr, __start, size()); in _GLIBCXX_VISIBILITY()
1063 size_type __result_pos = __start + __c._M_count; in _GLIBCXX_VISIBILITY()