Searched refs:const_reference (Results 1 - 25 of 101) sorted by relevance

12345

/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h40 typedef const value_type &const_reference; typedef in class:clang::ContinuousRangeMap
49 bool operator ()(const_reference L, Int R) const {
52 bool operator ()(Int L, const_reference R) const {
58 bool operator ()(const_reference L, const_reference R) const {
105 const_reference back() const { return Rep.back(); }
121 [](const_reference A, const_reference B) {
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DInMemoryStruct.h29 typedef const value_type &const_reference; typedef in class:llvm::InMemoryStruct
56 const_reference operator*() const {
/external/libcxx/test/std/containers/sequences/array/
H A Dindexing.pass.cpp13 // const_reference operator[] (size_type); // constexpr in C++14
15 // const_reference at (size_type); // constexpr in C++14
54 C::const_reference r1 = c[0];
56 C::const_reference r2 = c[2];
68 C::const_reference r2 = cc[0];
82 C::const_reference r2 = cc[0];
H A Dat.pass.cpp13 // const_reference operator[] (size_type); // constexpr in C++14
15 // const_reference at (size_type); // constexpr in C++14
83 C::const_reference r1 = c.at(0);
86 C::const_reference r2 = c.at(2);
/external/libcxx/test/std/containers/container.adaptors/queue/queue.defn/
H A Dtypes.pass.cpp19 // typedef typename container_type::const_reference const_reference;
43 typedef const int& const_reference; typedef in struct:C
53 static_assert(( std::is_same<std::queue<int>::const_reference, std::deque<int>::const_reference>::value), "");
/external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/
H A Dtypes.pass.cpp19 // typedef typename container_type::const_reference const_reference;
44 typedef const int& const_reference; typedef in struct:C
54 static_assert(( std::is_same<std::stack<int>::const_reference, std::deque<int>::const_reference>::value), "");
/external/libcxx/test/std/containers/container.adaptors/priority.queue/
H A Dtypes.pass.cpp21 // typedef typename container_type::const_reference const_reference;
50 typedef const int& const_reference; typedef in struct:C
60 static_assert(( std::is_same<std::priority_queue<int>::const_reference, std::vector<int>::const_reference>::value), "");
/external/tensorflow/tensorflow/core/lib/gtl/
H A Darray_slice.h117 typedef typename Impl::const_reference const_reference; typedef in class:tensorflow::gtl::ArraySlice
178 const_reference operator[](size_type i) const { return impl_[i]; }
179 const_reference at(size_type i) const { return impl_.at(i); }
180 const_reference front() const { return impl_.front(); }
181 const_reference back() const { return impl_.back(); }
226 typedef typename Impl::const_reference const_reference; typedef in class:tensorflow::gtl::MutableArraySlice
/external/libcxx/test/std/containers/sequences/list/
H A Dtypes.pass.cpp21 // typedef typename allocator_type::const_reference const_reference;
39 static_assert((std::is_same<C::const_reference, std::allocator<int>::const_reference>::value), "");
57 static_assert((std::is_same<C::const_reference, const int&>::value), "");
/external/libcxx/test/std/containers/sequences/vector/
H A Dtypes.pass.cpp21 // typedef typename allocator_type::const_reference const_reference;
57 static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::value), "");
96 static_assert((std::is_same<C::const_reference, const int&>::value), "");
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp21 typedef const _E& const_reference; typedef in class:std::initializer_list
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp45 typedef const _E& const_reference; typedef in class:std::initializer_list
/external/libcxx/test/std/language.support/support.initlist/
H A Dtypes.pass.cpp18 // typedef const E& const_reference;
33 static_assert((std::is_same<std::initializer_list<A>::const_reference, const A&>::value), "");
/external/vulkan-validation-layers/libs/glm/detail/
H A Dtype_gentype.hpp71 typedef TYPE<VALTYPE> const & const_reference; typedef in struct:glm::detail::genType
207 // typedef genType const& const_reference;
/external/v8/src/zone/
H A Dzone-allocator.h20 typedef const T& const_reference; typedef in class:v8::internal::zone_allocator
42 const_pointer address(const_reference x) const { return &x; }
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h84 typedef const T& const_reference; typedef in class:clang::BumpVector
107 const_reference operator[](unsigned idx) const {
115 const_reference front() const {
122 const_reference back() const {
154 void push_back(const_reference Elt, BumpVectorContext &C) {
167 iterator insert(iterator I, size_t Cnt, const_reference E,
/external/libcxx/test/support/
H A Dnasty_containers.hpp26 typedef typename nested_container::const_reference const_reference; typedef in class:nasty_vector
77 const_reference operator[](size_type n) const { return v_[n]; }
79 const_reference at(size_type n) const { return v_.at(n); }
82 const_reference front() const { return v_.front(); }
84 const_reference back() const { return v_.back(); }
148 typedef typename nested_container::const_reference const_reference; typedef in class:nasty_list
198 const_reference front() const { return l_.front(); }
200 const_reference bac
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist.h188 typedef typename base_list_type::const_reference const_reference; typedef in class:llvm::iplist_impl
206 static bool op_less(const_reference L, const_reference R) { return L < R; }
207 static bool op_equal(const_reference L, const_reference R) { return L == R; }
246 iterator insert(iterator where, const_reference New) {
260 for (const_reference V : L2)
380 const_pointer getPrevNode(const_reference N) const {
392 const_pointer getNextNode(const_reference
[all...]
H A Dsimple_ilist.h90 typedef typename OptionsT::const_reference const_reference; typedef in class:llvm::simple_ilist
135 const_reference front() const { return *begin(); }
137 const_reference back() const { return *rbegin(); }
171 for (const_reference V : L2)
/external/libchrome/base/memory/
H A Dscoped_vector.h30 typedef typename std::vector<T*>::const_reference const_reference; typedef in class:ScopedVector
48 const_reference operator[](size_t index) const { return v_[index]; }
63 const_reference front() const { return v_.front(); }
65 const_reference back() const { return v_.back(); }
/external/webrtc/webrtc/system_wrappers/include/
H A Dscoped_vector.h35 typedef typename std::vector<T*>::const_reference const_reference; typedef in class:webrtc::ScopedVector
67 const_reference operator[](size_t index) const { return v_[index]; }
82 const_reference front() const { return v_.front(); }
84 const_reference back() const { return v_.back(); }
/external/libcxx/test/std/containers/sequences/deque/
H A Dtypes.pass.cpp21 // typedef typename allocator_type::const_reference const_reference;
52 static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::value), "");
89 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), "");
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-internal-utils.h370 // - const_reference is a type that provides a reference to a const
383 typedef const type& const_reference; typedef in class:testing::internal::StlContainerView
385 static const_reference ConstReference(const RawContainer& container) {
403 // 'typedef const type& const_reference' here, as that would mean
405 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
407 static const_reference ConstReference(const Element (&array)[N]) {
446 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
448 static const_reference ConstReference(
/external/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h395 // - const_reference is a type that provides a reference to a const
408 typedef const type& const_reference; typedef in class:testing::internal::StlContainerView
410 static const_reference ConstReference(const RawContainer& container) {
428 // 'typedef const type& const_reference' here, as that would mean
430 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
432 static const_reference ConstReference(const Element (&array)[N]) {
472 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
474 static const_reference ConstReference(
/external/v8/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h396 // - const_reference is a type that provides a reference to a const
409 typedef const type& const_reference; typedef in class:testing::internal::StlContainerView
411 static const_reference ConstReference(const RawContainer& container) {
429 // 'typedef const type& const_reference' here, as that would mean
431 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
433 static const_reference ConstReference(const Element (&array)[N]) {
473 typedef const type const_reference; typedef in class:testing::internal::StlContainerView
475 static const_reference ConstReference(

Completed in 679 milliseconds

12345