Home
last modified time | relevance | path

Searched refs:const_reference (Results 1 – 25 of 124) sorted by relevance

12345

/third_party/json/doc/examples/
Dat_json_pointer_const.cpp29 json::const_reference ref = j.at("/array/one"_json_pointer); in main()
40 json::const_reference ref = j.at("/array/4"_json_pointer); in main()
51 json::const_reference ref = j.at("/array/-"_json_pointer); in main()
62 json::const_reference ref = j.at("/foo"_json_pointer); in main()
73 json::const_reference ref = j.at("/number/foo"_json_pointer); in main()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/
DvktConstexprVectorUtil.hpp47 using const_reference = const value_type&; typedef in vkt::ConstexprVector
67 inline constexpr const_reference at(size_type pos) const noexcept { return values[pos]; } in at()
68 inline constexpr const_reference operator[](size_type pos) const noexcept { return values[pos]; } in operator []()
69 inline constexpr const_reference front() const noexcept { return values[0]; } in front()
70 inline constexpr const_reference back() const noexcept { return values[count - 1]; } in back()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/util/
DvktConstexprVectorUtil.hpp47 using const_reference = const value_type&; typedef in vkt::ConstexprVector
67 inline constexpr const_reference at(size_type pos) const noexcept { return values[pos]; } in at()
68 inline constexpr const_reference operator[](size_type pos) const noexcept { return values[pos]; } in operator []()
69 inline constexpr const_reference front() const noexcept { return values[0]; } in front()
70 inline constexpr const_reference back() const noexcept { return values[count - 1]; } in back()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dilist.h188 typedef typename base_list_type::const_reference const_reference;
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 N) const {
Dsimple_ilist.h90 typedef typename OptionsT::const_reference const_reference; typedef
135 const_reference front() const { return *begin(); } in front()
137 const_reference back() const { return *rbegin(); } in back()
171 for (const_reference V : L2) in cloneFrom()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Dilist.h173 typedef typename base_list_type::const_reference const_reference;
191 static bool op_less(const_reference L, const_reference R) { return L < R; }
192 static bool op_equal(const_reference L, const_reference R) { return L == R; }
231 iterator insert(iterator where, const_reference New) {
245 for (const_reference V : L2)
365 const_pointer getPrevNode(const_reference N) const {
377 const_pointer getNextNode(const_reference N) const {
Dsimple_ilist.h94 using const_reference = typename OptionsT::const_reference; variable
139 const_reference front() const { return *begin(); } in front()
141 const_reference back() const { return *rbegin(); } in back()
175 for (const_reference V : L2) in cloneFrom()
/third_party/json/doc/mkdocs/docs/api/basic_json/
Doperator_eq.md4 bool operator==(const_reference lhs, const_reference rhs) noexcept;
7 bool operator==(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator==(ScalarType lhs, const const_reference rhs) noexcept;
71 bool my_equal(const_reference lhs, const_reference rhs)
Doperator_ne.md4 bool operator!=(const_reference lhs, const_reference rhs) noexcept;
7 bool operator!=(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator!=(ScalarType lhs, const const_reference rhs) noexcept;
Doperator_gt.md4 bool operator>(const_reference lhs, const_reference rhs) noexcept,
7 bool operator>(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator>(ScalarType lhs, const const_reference rhs) noexcept;
Doperator_ge.md4 bool operator>=(const_reference lhs, const_reference rhs) noexcept,
7 bool operator>=(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator>=(ScalarType lhs, const const_reference rhs) noexcept;
Doperator_le.md4 bool operator<=(const_reference lhs, const_reference rhs) noexcept,
7 bool operator<=(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator<=(ScalarType lhs, const const_reference rhs) noexcept;
Doperator_lt.md4 bool operator<(const_reference lhs, const_reference rhs) noexcept,
7 bool operator<(const_reference lhs, const ScalarType rhs) noexcept;
10 bool operator<(ScalarType lhs, const const_reference rhs) noexcept;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dinlined_vector.h101 using const_reference = typename Storage::const_reference; variable
126 InlinedVector(size_type n, const_reference v,
319 const_reference operator[](size_type i) const {
343 const_reference at(size_type i) const { in at()
361 const_reference front() const { in front()
376 const_reference back() const { in back()
499 void assign(size_type n, const_reference v) { in assign()
552 void resize(size_type n, const_reference v) { in resize()
561 iterator insert(const_iterator pos, const_reference v) { in insert()
574 iterator insert(const_iterator pos, size_type n, const_reference v) { in insert()
[all …]
Dfixed_array.h109 using const_reference = const value_type&; variable
223 const_reference operator[](size_type i) const {
241 const_reference at(size_type i) const { in at()
258 const_reference front() const { in front()
273 const_reference back() const { in back()
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DFastVector.h29 using const_reference = typename Storage::const_reference; variable
50 const_reference at(size_type pos) const;
53 const_reference operator[](size_type pos) const;
75 const_reference front() const;
78 const_reference back() const;
199 typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::at( in at()
216 typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::operator[](
313 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::front() in front()
328 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::back() in back()
DFixedVector.h28 using const_reference = typename Storage::const_reference; variable
51 const_reference at(size_type pos) const;
54 const_reference operator[](size_type pos) const;
76 const_reference back() const;
165 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::at( in at()
180 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::operator[](
278 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::back() const in back()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineInstrBundleIterator.h120 using const_reference = typename instr_iterator::const_reference;
211 const_reference R) {
214 friend bool operator==(const_reference L,
246 const_reference R) {
249 friend bool operator!=(const_reference L,
/third_party/googletest/googlemock/include/gmock/internal/
Dgmock-internal-utils.h328 typedef const type& const_reference; typedef
330 static const_reference ConstReference(const RawContainer& container) { in ConstReference()
349 typedef const type const_reference; typedef
351 static const_reference ConstReference(const Element (&array)[N]) { in ConstReference()
370 typedef const type const_reference; typedef
372 static const_reference ConstReference( in ConstReference()
/third_party/mesa3d/src/amd/compiler/
Daco_util.h49 using const_reference = const value_type&; variable
156 constexpr const_reference operator[](const size_type index) const noexcept
174 constexpr const_reference back() const noexcept in back()
192 constexpr const_reference front() const noexcept in front()
218 constexpr void push_back(const_reference val) noexcept { *std::next(begin(), length++) = val; } in push_back()
/third_party/skia/include/core/
DSkStringView.h22 using const_reference = const value_type&; variable
54 constexpr const_reference operator[](size_type idx) const {
58 constexpr const_reference front() const { in front()
62 constexpr const_reference back() const { in back()
/third_party/skia/third_party/externals/angle2/src/common/
DFixedVector.h28 using const_reference = typename Storage::const_reference; variable
51 const_reference at(size_type pos) const;
54 const_reference operator[](size_type pos) const;
79 const_reference back() const;
168 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::at( in at()
183 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::operator[](
290 typename FixedVector<T, N, Storage>::const_reference FixedVector<T, N, Storage>::back() const in back()
DFastVector.h30 using const_reference = typename Storage::const_reference; variable
54 const_reference at(size_type pos) const;
57 const_reference operator[](size_type pos) const;
82 const_reference front() const;
85 const_reference back() const;
213 typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::at( in at()
229 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference
331 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::front() in front()
346 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::back() in back()
DCircularBuffer.h27 using const_reference = typename Storage::const_reference; variable
56 const_reference front() const;
154 ANGLE_INLINE typename CircularBuffer<T, N, Storage>::const_reference
/third_party/json/include/nlohmann/
Djson.hpp292 using const_reference = const value_type&; typedef in nlohmann::basic_json
3533 const_reference at(size_type idx) const in at()
3635 const_reference at(const typename object_t::key_type& key) const in at()
3734 const_reference operator[](size_type idx) const in operator []()
3821 const_reference operator[](const typename object_t::key_type& key) const in operator []()
3913 const_reference operator[](T* key) const in operator []()
4113 const_reference front() const in front()
4159 const_reference back() const in back()
4987 static iteration_proxy<const_iterator> iterator_wrapper(const_reference ref) noexcept in items()
5990 void update(const_reference j) in update()
[all …]

12345