/external/bluetooth/glib/glib/ |
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/ |
_string_sum.h | 170 _BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) 171 {return _M_get_storage().replace(__pos1, __n1, __s, __pos2, __n2);} 172 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) 173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);} 174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) 175 {return _M_get_storage().replace(__pos, __n1, __s);} 176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) 177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);} 241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const 242 { return _M_get_storage().compare(__pos1, __n1, __s); [all...] |
_slist.c | 73 _Node_base* __n1 = this->_M_head._M_data._M_next; 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;
|
_string.h | 824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, 830 const size_type __len1 = (min) (__n1, __size1 - __pos1); 838 _Self& replace(size_type __pos, size_type __n1, 844 const size_type __len = (min) (__n1, __size - __pos); 851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { 853 return replace(__pos, __n1, __s, _Traits::length(__s)); 856 _Self& replace(size_type __pos, size_type __n1, 861 const size_type __len = (min) (__n1, __size - __pos); 1073 const ptrdiff_t __n1 = __l1 - __f1; local [all...] |
_string_workaround.h | 477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); 483 _Self& replace(size_type __pos, size_type __n1, 486 _Base::replace(__pos, __n1, __s, __n2); 490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { 492 _Base::replace(__pos, __n1, __s); 496 _Self& replace(size_type __pos, size_type __n1, 498 _Base::replace(__pos, __n1, __n2, __c);
|
/external/stlport/stlport/stl/debug/ |
_string.h | 522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, 525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); 530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { 534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2); 539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { 543 _M_non_dbg_impl.replace(__pos, __n1, __s); 548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { 550 _M_non_dbg_impl.replace(__pos, __n1, __n2, __c); 655 int compare(size_type __pos1, size_type __n1, const _Self& __s, 657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); [all...] |
/prebuilt/sdk/tools/linux/ |
aidl | |