/external/bluetooth/glib/glib/ |
D | gtestutils.h | 40 #define g_assert_cmpint(n1, cmp, n2) do { gint64 __n1 = (n1), __n2 = (n2); \ 41 if (__n1 cmp __n2) ; else \ 43 … #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'i'); } while (0) 44 #define g_assert_cmpuint(n1, cmp, n2) do { guint64 __n1 = (n1), __n2 = (n2); \ 45 if (__n1 cmp __n2) ; else \ 47 … #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'i'); } while (0) 48 #define g_assert_cmphex(n1, cmp, n2) do { guint64 __n1 = (n1), __n2 = (n2); \ 49 if (__n1 cmp __n2) ; else \ 51 … #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'x'); } while (0) 52 #define g_assert_cmpfloat(n1,cmp,n2) do { long double __n1 = (n1), __n2 = (n2); \ [all …]
|
/external/stlport/stlport/stl/ |
D | _string_sum.h | 170 …_BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_ty… in replace() argument 171 {return _M_get_storage().replace(__pos1, __n1, __s, __pos2, __n2);} in replace() 172 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) in replace() argument 173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);} in replace() 174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) in replace() argument 175 {return _M_get_storage().replace(__pos, __n1, __s);} in replace() 176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) in replace() argument 177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);} in replace() 241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const in compare() argument 242 { return _M_get_storage().compare(__pos1, __n1, __s); } in compare() [all …]
|
D | _slist.c | 73 _Node_base* __n1 = this->_M_head._M_data._M_next; variable 75 while (__n1 && __n2) { 76 __STATIC_CAST(_Node*, __n1)->_M_data = __STATIC_CAST(const _Node*, __n2)->_M_data; 77 __p1 = __n1; 78 __n1 = __n1->_M_next;
|
D | _string.h | 824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument 830 const size_type __len1 = (min) (__n1, __size1 - __pos1); in replace() 838 _Self& replace(size_type __pos, size_type __n1, in replace() argument 844 const size_type __len = (min) (__n1, __size - __pos); in replace() 851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 853 return replace(__pos, __n1, __s, _Traits::length(__s)); in replace() 856 _Self& replace(size_type __pos, size_type __n1, in replace() argument 861 const size_type __len = (min) (__n1, __size - __pos); in replace() 1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { in compare() argument 1033 this->_M_Start() + __pos1 + (min) (__n1, size() - __pos1), in compare() [all …]
|
D | _string_workaround.h | 477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); in replace() 483 _Self& replace(size_type __pos, size_type __n1, in replace() argument 486 _Base::replace(__pos, __n1, __s, __n2); in replace() 490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 492 _Base::replace(__pos, __n1, __s); in replace() 496 _Self& replace(size_type __pos, size_type __n1, in replace() argument 498 _Base::replace(__pos, __n1, __n2, __c); in replace()
|
/external/stlport/stlport/stl/debug/ |
D | _string.h | 522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument 525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); in replace() 530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { in replace() argument 534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2); in replace() 539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 543 _M_non_dbg_impl.replace(__pos, __n1, __s); in replace() 548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { in replace() argument 550 _M_non_dbg_impl.replace(__pos, __n1, __n2, __c); in replace() 655 int compare(size_type __pos1, size_type __n1, const _Self& __s, in compare() argument 657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); } in compare() [all …]
|