Searched refs:_M_compare (Results 1 – 3 of 3) sorted by relevance
/external/stlport/stlport/stl/debug/ |
D | _string.h | 673 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() function 675 { return _Base::_M_compare(__f1, __l1, __f2, __l2); } in _M_compare() 676 static int _STLP_CALL _M_compare(const_iterator __f1, const_iterator __l1, in _M_compare() function 678 { return _Base::_M_compare(__f1._M_iterator, __l1._M_iterator, __f2, __l2); } in _M_compare() 679 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() function 681 { return _Base::_M_compare(__f1, __l1, __f2._M_iterator, __l2._M_iterator); } in _M_compare() 682 static int _STLP_CALL _M_compare(const_iterator __f1, const_iterator __l1, in _M_compare() function 684 …{ return _Base::_M_compare(__f1._M_iterator, __l1._M_iterator, __f2._M_iterator, __l2._M_iterator)… in _M_compare()
|
/external/stlport/stlport/stl/ |
D | _string_operators.h | 353 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__x.begin(), __x.end(), 362 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__x.begin(), __x.end(), 370 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__x.begin(), __x.end(), 381 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__s, __s + __n, 391 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__x.begin(), __x.end(), 402 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__s, __s + __n, 412 return basic_string<_CharT,_Traits,_Alloc> ::_M_compare(__x.begin(), __x.end(),
|
D | _string.h | 1027 { return _M_compare(this->_M_Start(), this->_M_Finish(), __s._M_Start(), __s._M_Finish()); } in compare() 1032 return _M_compare(this->_M_Start() + __pos1, in compare() 1041 return _M_compare(this->_M_Start() + __pos1, in compare() 1049 return _M_compare(this->_M_Start(), this->_M_Finish(), __s, __s + _Traits::length(__s)); in compare() 1056 return _M_compare(this->_M_Start() + __pos1, in compare() 1065 return _M_compare(this->_M_Start() + __pos1, in compare() 1071 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() function
|