/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | call_traits.hpp | 79 typedef const T& const_reference; typedef 99 typedef const T& const_reference; typedef 113 typedef const T& const_reference; typedef 121 typedef const T& const_reference; typedef 129 typedef const T& const_reference; typedef 138 typedef T * const & const_reference; typedef 152 typedef const array_type& const_reference; typedef 165 typedef const array_type& const_reference; typedef
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | array.hpp | 70 typedef const T& const_reference; typedef in boost::array 92 … const_reference, iterator, reference> > const_reverse_iterator; 97 value_type, const_reference, const_iterator, difference_type> const_reverse_iterator; 127 const_reference operator[](size_type i) const in operator []() 135 const_reference at(size_type i) const { rangecheck(i); return elems[i]; } in at() 143 const_reference front() const in front() 153 const_reference back() const in back() 211 typedef const T& const_reference; typedef in boost::array 233 … const_reference, iterator, reference> > const_reverse_iterator; 238 value_type, const_reference, const_iterator, difference_type> const_reverse_iterator; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/ |
D | types.pass.cpp | 45 typedef const int& const_reference; typedef 55 …tic_assert((std::is_same<std::priority_queue<int>::const_reference, std::vector<int>::const_refere… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/ |
D | types.pass.cpp | 43 typedef const int& const_reference; typedef 53 …static_assert((std::is_same<std::queue<int>::const_reference, std::deque<int>::const_reference>::v… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
D | types.pass.cpp | 44 typedef const int& const_reference; typedef 54 …static_assert((std::is_same<std::stack<int>::const_reference, std::deque<int>::const_reference>::v… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/ |
D | types.pass.cpp | 35 …static_assert((std::is_same<std::list<int>::const_reference, std::allocator<int>::const_reference>… in main() 42 …static_assert((std::is_same<std::list<int, min_allocator<int>>::const_reference, const int&>::valu… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/ |
D | indexing.pass.cpp | 40 C::const_reference r1 = c[0]; in main() 42 C::const_reference r2 = c[2]; in main()
|
D | front_back.pass.cpp | 41 C::const_reference r1 = c.front(); in main() 44 C::const_reference r2 = c.back(); in main()
|
D | at.pass.cpp | 43 C::const_reference r1 = c.at(0); in main() 46 C::const_reference r2 = c.at(2); in main()
|
D | types.pass.cpp | 38 static_assert((std::is_same<C::const_reference, const T&>::value), ""); in main() 52 static_assert((std::is_same<C::const_reference, const T&>::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _queue.h | 80 typedef typename _Sequence::const_reference const_reference; typedef 97 const_reference front() const { return c.front(); } in front() 99 const_reference back() const { return c.back(); } in back() 164 typedef typename _Sequence::const_reference const_reference; in _STLP_RELOPS_OPERATORS() typedef 222 const_reference top() const { return c.front(); } in _STLP_RELOPS_OPERATORS()
|
D | _list.h | 267 typedef const value_type& const_reference; 281 _Node_base* _M_create_node(const_reference __x = value_type()) { 283 _Node_base* _M_create_node(const_reference __x) { 306 explicit list(size_type __n, const_reference __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 312 list(size_type __n, const_reference __val) 315 list(size_type __n, const_reference __val, const allocator_type& __a) 386 const_reference front() const { return *begin(); } 388 const_reference back() const { return *(--end()); } 420 iterator insert(iterator __pos, const_reference __x = value_type()) 422 iterator insert(iterator __pos, const_reference __x) [all …]
|
D | _stack.h | 69 typedef typename _Sequence::const_reference const_reference; typedef 85 const_reference top() const { return c.back(); } in top()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
D | nasty_containers.hpp | 23 typedef typename nested_container::const_reference const_reference; typedef in nasty_vector 74 const_reference operator[](size_type n) const { return v_[n]; } in operator []() 76 const_reference at(size_type n) const { return v_.at(n); } in at() 79 const_reference front() const { return v_.front(); } in front() 81 const_reference back() const { return v_.back(); } in back() 144 typedef typename nested_container::const_reference const_reference; typedef in nasty_list 194 const_reference front() const { return l_.front(); } in front() 196 const_reference back() const { return l_.back(); } in back()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | dynarray | 28 typedef const T& const_reference; 78 const_reference operator[](size_type n) const; 81 const_reference front() const; 83 const_reference back() const; 85 const_reference at(size_type n) const; 125 typedef const value_type& const_reference; 201 …inline _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __n) const { return data()[_… 204 inline _LIBCPP_INLINE_VISIBILITY const_reference front() const { return data()[0]; } 206 inline _LIBCPP_INLINE_VISIBILITY const_reference back() const { return data()[__size_-1]; } 208 inline _LIBCPP_INLINE_VISIBILITY const_reference at(size_type __n) const; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
D | types.pass.cpp | 52 …static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::val… in test() 80 …static_assert((std::is_same<std::vector<int, min_allocator<int>>::const_reference, const int&>::va… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/ |
D | types.pass.cpp | 52 …static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::val… in test() 82 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | array | 24 typedef const T & const_reference; 62 const_reference operator[](size_type n) const; // constexpr in C++14 63 const_reference at(size_type n) const; // constexpr in C++14 67 const_reference front() const; // constexpr in C++14 69 const_reference back() const; // constexpr in C++14 127 typedef const value_type& const_reference; 184 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference operator[](size_type __n) … 186 _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference at(size_type __n) const; 189 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference front() const {return __el… 191 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference back() const {return __el… [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/ |
D | types.pass.cpp | 38 static_assert((std::is_same<std::forward_list<char>::const_reference, const char&>::value), ""); in main() 47 …static_assert((std::is_same<std::forward_list<char, min_allocator<char>>::const_reference, const c… in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _vector.h | 67 typedef const value_type& const_reference; typedef 96 …const_reference operator[](size_type __n) const { return cast_traits::to_value_type_cref(_M_impl[_… 99 const_reference front() const { return cast_traits::to_value_type_cref(_M_impl.front()); } in front() 101 const_reference back() const { return cast_traits::to_value_type_cref(_M_impl.back()); } in back() 104 …const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n));… in at()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/ |
D | types.pass.cpp | 45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 61 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/ |
D | types.pass.cpp | 45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 61 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | stack_allocator.h | 60 typedef const _Tp& const_reference; typedef 136 const_pointer address(const_reference __x) const { return &__x; } in address() 138 void construct(pointer __p, const_reference __val) { new(__p) _Tp(__val); } in construct()
|
/ndk/tests/device/test-stlport/unit/ |
D | stack_allocator.h | 60 typedef const _Tp& const_reference; typedef 136 const_pointer address(const_reference __x) const { return &__x; } in address() 138 void construct(pointer __p, const_reference __val) { new(__p) _Tp(__val); } in construct()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
D | types.pass.cpp | 46 static_assert((std::is_same<std::multiset<int>::const_reference, const int&>::value), ""); in main() 60 …std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::const_reference, const int&>:… in main()
|