/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
tuple | 84 template<int _Idx, typename _Head, typename... _Tail> 85 struct _Tuple_impl<_Idx, _Head, _Tail...> 90 _Head _M_head; 98 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 227 template<int __i, typename _Head, typename... _Tail> 228 struct tuple_element<__i, tuple<_Head, _Tail...> > 234 template<typename _Head, typename... _Tail> 235 struct tuple_element<0, tuple<_Head, _Tail...> > 237 typedef _Head type; 254 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/ |
tuple | 84 template<int _Idx, typename _Head, typename... _Tail> 85 struct _Tuple_impl<_Idx, _Head, _Tail...> 90 _Head _M_head; 98 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 227 template<int __i, typename _Head, typename... _Tail> 228 struct tuple_element<__i, tuple<_Head, _Tail...> > 234 template<typename _Head, typename... _Tail> 235 struct tuple_element<0, tuple<_Head, _Tail...> > 237 typedef _Head type; 254 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
tuple | 86 template<int _Idx, typename _Head, typename... _Tail> 87 struct _Tuple_impl<_Idx, _Head, _Tail...> 92 _Head _M_head; 100 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 229 template<int __i, typename _Head, typename... _Tail> 230 struct tuple_element<__i, tuple<_Head, _Tail...> > 236 template<typename _Head, typename... _Tail> 237 struct tuple_element<0, tuple<_Head, _Tail...> > 239 typedef _Head type; 256 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
tuple | 86 template<int _Idx, typename _Head, typename... _Tail> 87 struct _Tuple_impl<_Idx, _Head, _Tail...> 92 _Head _M_head; 100 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 229 template<int __i, typename _Head, typename... _Tail> 230 struct tuple_element<__i, tuple<_Head, _Tail...> > 236 template<typename _Head, typename... _Tail> 237 struct tuple_element<0, tuple<_Head, _Tail...> > 239 typedef _Head type; 256 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
tuple | 86 template<int _Idx, typename _Head, typename... _Tail> 87 struct _Tuple_impl<_Idx, _Head, _Tail...> 92 _Head _M_head; 100 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 229 template<int __i, typename _Head, typename... _Tail> 230 struct tuple_element<__i, tuple<_Head, _Tail...> > 236 template<typename _Head, typename... _Tail> 237 struct tuple_element<0, tuple<_Head, _Tail...> > 239 typedef _Head type; 256 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
tuple | 86 template<int _Idx, typename _Head, typename... _Tail> 87 struct _Tuple_impl<_Idx, _Head, _Tail...> 92 _Head _M_head; 100 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 229 template<int __i, typename _Head, typename... _Tail> 230 struct tuple_element<__i, tuple<_Head, _Tail...> > 236 template<typename _Head, typename... _Tail> 237 struct tuple_element<0, tuple<_Head, _Tail...> > 239 typedef _Head type; 256 template<int __i, typename _Head, typename... _Tail [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/ |
tuple | 86 template<int _Idx, typename _Head, typename... _Tail> 87 struct _Tuple_impl<_Idx, _Head, _Tail...> 92 _Head _M_head; 100 _Tuple_impl(typename __add_c_ref<_Head>::type __head, 229 template<int __i, typename _Head, typename... _Tail> 230 struct tuple_element<__i, tuple<_Head, _Tail...> > 236 template<typename _Head, typename... _Tail> 237 struct tuple_element<0, tuple<_Head, _Tail...> > 239 typedef _Head type; 256 template<int __i, typename _Head, typename... _Tail [all...] |
/external/clang/test/SemaObjC/ |
nonnull.m | 64 void _dispatch_queue_push_list(dispatch_object_t _head); // no warning 66 void func6(dispatch_object_t _head) { 68 _dispatch_queue_push_list(_head._do); // no warning
|
/external/srec/portable/src/ |
pmalloc.c | 274 if (p->_Head == 0) 276 for (q = p->_Head; q != 0; q = q->_Next) 303 for (qb = &_Aldata._Head; *qb != 0; 314 for (qb = &_Aldata._Head; *qb != q; 464 if (_Aldata._Head == 0 465 || _PTR_NORM(q) < _PTR_NORM(_Aldata._Head)) 467 q->_Next = _Aldata._Head; 468 _Aldata._Head = q; 476 register _Cell *qp = _Aldata._Head; 514 * qp could have been set to _Aldata._Head prior to the binIndex loop above [all...] |
/external/clang/www/ |
libstdc++4.4-clang0x.patch | 547 _Head& _M_head() { return *this; } 548 const _Head& _M_head() const { return *this; } 550 - void _M_swap_impl(_Head&&) { /* no-op */ } 551 + void _M_swap_impl(_Head&) { /* no-op */ } 554 template<std::size_t _Idx, typename _Head> 556 const _Head& _M_head() const { return _M_head_impl; } 559 - _M_swap_impl(_Head&& __h) 560 + _M_swap_impl(_Head& __h)
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 77 typedef base_type::_Head<synth_access_traits, metadata> head; 124 typedef base_type::_Head<synth_access_traits, metadata> head;
|
pat_trie_base.hpp | 56 * i_node is used by _Inode, leaf_node by _Leaf, and head_node by _Head. 131 struct _Head 141 _Head() : base_type(head_node) { } [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 77 typedef base_type::_Head<synth_access_traits, metadata> head; 124 typedef base_type::_Head<synth_access_traits, metadata> head;
|
pat_trie_base.hpp | 56 * i_node is used by _Inode, leaf_node by _Leaf, and head_node by _Head. 131 struct _Head 141 _Head() : base_type(head_node) { } [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 77 typedef base_type::_Head<synth_access_traits, metadata> head; 124 typedef base_type::_Head<synth_access_traits, metadata> head;
|
pat_trie_base.hpp | 56 * i_node is used by _Inode, leaf_node by _Leaf, and head_node by _Head. 131 struct _Head 141 _Head() : base_type(head_node) { } [all...] |
/external/srec/portable/include/ |
pmalloc.h | 68 _Cell *_Head; /* null, or lowest addressed free cell */
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
compat-queue.h | 81 * _HEAD + + + +
|
/external/ipsec-tools/src/include-glibc/sys/ |
queue.h | 86 * _HEAD + + + +
|
/external/pixman/pixman/ |
pixman-arm-neon-asm.S | 120 * This is implemented as a pair of macros: '*_head' and '*_tail'. When used 243 * Different instruction streams (originaling from '*_head', '*_tail' 247 * result in exactly the code from '*_head', '*_tail' or 'cache_preload' [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libpulse.so | |
libpulse.so.0 | |
libpulse.so.0.4 | |
libpulse.so.0.4.1 | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/ |
libpulse.so | |