/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | iterator.hpp | 104 typedef typename Iterator::reference reference; typedef 114 typedef T& reference; typedef 124 typedef T const& reference; typedef 156 BOOST_MPL_HAS_XXX_TRAIT_DEF(reference) 256 typedef typename T::reference reference; typedef 271 typedef T& reference; typedef 315 typedef typename pointer_reference<T>::type reference; typedef 328 typedef typename Iterator::reference reference; typedef 338 typedef typename std::iterator_traits<Iterator>::value_type& reference; typedef 347 typedef const typename std::iterator_traits<Iterator>::value_type& reference; typedef [all …]
|
D | call_traits.hpp | 78 typedef T& reference; typedef 98 typedef T& reference; typedef 112 typedef T& reference; typedef 120 typedef T& reference; typedef 128 typedef T& reference; typedef 137 typedef T * & reference; typedef 151 typedef array_type& reference; typedef 164 typedef array_type& reference; typedef
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | array.hpp | 69 typedef T& reference; typedef in boost::array 90 reference, iterator, reference> > reverse_iterator; 92 … const_reference, iterator, reference> > const_reverse_iterator; 95 value_type, reference, iterator, difference_type> reverse_iterator; 121 reference operator[](size_type i) in operator []() 134 reference at(size_type i) { rangecheck(i); return elems[i]; } in at() 138 reference front() in front() 148 reference back() in back() 210 typedef T& reference; typedef in boost::array 231 reference, iterator, reference> > reverse_iterator; [all …]
|
D | iterator.hpp | 32 typedef Reference reference; typedef 46 typedef Reference reference;
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
D | negative | 15 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 22 '#MAKEFILE#:4: *** unterminated variable reference. Stop.', 36 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 43 '#MAKEFILE#:4: *** unterminated variable reference. Stop.',
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
D | test_iterators.h | 26 typedef typename std::iterator_traits<It>::reference reference; typedef 35 reference operator*() const {return *it_;} 53 typedef typename std::iterator_traits<It>::reference reference; typedef 62 reference operator*() const {return *it_;} 102 typedef typename std::iterator_traits<It>::reference reference; typedef 111 reference operator*() const {return *it_;} 151 typedef typename std::iterator_traits<It>::reference reference; typedef 160 reference operator*() const {return *it_;} 199 typedef typename std::iterator_traits<It>::reference reference; typedef 208 reference operator*() const {return *it_;} [all …]
|
D | nasty_containers.hpp | 22 typedef typename nested_container::reference reference; typedef in nasty_vector 73 reference operator[](size_type n) { return v_[n]; } in operator []() 75 reference at(size_type n) { return v_.at(n); } in at() 78 reference front() { return v_.front(); } in front() 80 reference back() { return v_.back(); } in back() 143 typedef typename nested_container::reference reference; typedef in nasty_list 193 reference front() { return l_.front(); } in front() 195 reference back() { return l_.back(); } in back()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iterator/ |
D | types.pass.cpp | 42 static_assert((std::is_same<typename R::reference, typename R::value_type&&>::value), ""); in test() 44 static_assert((std::is_same<typename R::reference, typename T::reference>::value), ""); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/ |
D | input_iterator.h | 24 typedef typename std::iterator_traits<It>::reference reference; typedef 29 reference operator*() const {return *it_;}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/ |
D | types.pass.cpp | 44 typedef int& reference; typedef 54 …static_assert((std::is_same<std::priority_queue<int>::reference, std::vector<int>::reference>::val… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/ |
D | types.pass.cpp | 42 typedef int& reference; typedef 52 … static_assert((std::is_same<std::queue<int>::reference, std::deque<int>::reference>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
D | types.pass.cpp | 43 typedef int& reference; typedef 53 … static_assert((std::is_same<std::stack<int>::reference, std::deque<int>::reference>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/ |
D | types.pass.cpp | 34 …static_assert((std::is_same<std::list<int>::reference, std::allocator<int>::reference>::value), ""… in main() 41 static_assert((std::is_same<std::list<int, min_allocator<int>>::reference, int&>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.basic/ |
D | iterator.pass.cpp | 36 static_assert((std::is_same<typename It::reference, T&>::value), ""); in test2() 48 static_assert((std::is_same<typename It::reference, T&>::value), ""); in test3() 60 static_assert((std::is_same<typename It::reference, T&>::value), ""); in test4() 72 static_assert((std::is_same<typename It::reference, const T&>::value), ""); in test5()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
D | swap.pass.cpp | 57 std::vector<bool>::reference r1 = v[0]; in main() 58 std::vector<bool>::reference r2 = v[1]; in main() 89 std::vector<bool, min_allocator<bool>>::reference r1 = v[0]; in main() 90 std::vector<bool, min_allocator<bool>>::reference r2 = v[1]; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/ |
D | indexing.pass.cpp | 26 C::reference r1 = c[0]; in main() 31 C::reference r2 = c[2]; in main()
|
D | front_back.pass.cpp | 27 C::reference r1 = c.front(); in main() 32 C::reference r2 = c.back(); in main()
|
D | at.pass.cpp | 26 C::reference r1 = c.at(0); in main() 31 C::reference r2 = c.at(2); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iterator/ |
D | types.pass.cpp | 51 static_assert((std::is_same<typename R::reference, typename T::reference>::value), ""); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | dynarray | 27 typedef T& reference; 77 reference operator[](size_type n); 80 reference front(); 82 reference back(); 86 reference at(size_type n); 124 typedef value_type& reference; 200 …inline _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __n) { return data()[_… 203 inline _LIBCPP_INLINE_VISIBILITY reference front() { return data()[0]; } 205 inline _LIBCPP_INLINE_VISIBILITY reference back() { return data()[__size_-1]; } 209 inline _LIBCPP_INLINE_VISIBILITY reference at(size_type __n); [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
D | types.pass.cpp | 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), ""); in test() 79 static_assert((std::is_same<std::vector<int, min_allocator<int>>::reference, int&>::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _stack.h | 68 typedef typename _Sequence::reference reference; typedef 84 reference top() { return c.back(); } in top()
|
D | _iterator_base.h | 64 typedef _Reference reference; typedef 73 typedef void reference; 94 …, _Tp) _STLP_STD::_IsRefType< _STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::reference >::_Ret() 153 typedef typename _Iterator::reference reference; 171 typedef const _Tp& reference; 180 typedef _Tp& reference; 190 typedef const _Tp& reference; 386 typedef const _Tp& reference; 395 typedef _Tp& reference; 411 typedef const _Tp& reference; [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _vector.h | 61 typedef _Tp& reference; typedef 71 typedef const _Tp& reference; typedef 80 typedef _Bit_iterator::reference reference; 89 typedef _Bit_const_iterator::reference reference; 161 reference operator[](size_type __n) { 171 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); } 248 reference front() { 256 reference back() {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/ |
D | types.pass.cpp | 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), ""); in test() 81 static_assert((std::is_same<C::reference, C::value_type&>::value), ""); in main()
|