/third_party/json/docs/examples/ |
D | at__json_pointer_const.cpp | 30 json::const_reference ref = j.at("/array/one"_json_pointer); in main() 41 json::const_reference ref = j.at("/array/4"_json_pointer); in main() 52 json::const_reference ref = j.at("/array/-"_json_pointer); in main() 63 json::const_reference ref = j.at("/foo"_json_pointer); in main() 74 json::const_reference ref = j.at("/number/foo"_json_pointer); in main()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/ |
D | vktConstexprVectorUtil.hpp | 47 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/ |
D | ilist.h | 188 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 {
|
D | simple_ilist.h | 90 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/ |
D | ilist.h | 173 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 {
|
D | simple_ilist.h | 94 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/docs/mkdocs/docs/api/basic_json/ |
D | operator_eq.md | 5 bool operator==(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator==(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator==(ScalarType lhs, const const_reference rhs) noexcept; // (2) 15 bool operator==(const_reference rhs) const noexcept; // (1) 85 bool my_equal(const_reference lhs, const_reference rhs)
|
D | operator_ne.md | 5 bool operator!=(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator!=(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator!=(ScalarType lhs, const const_reference rhs) noexcept; // (2) 15 bool operator!=(const_reference rhs) const noexcept; // (1)
|
D | operator_gt.md | 5 bool operator>(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator>(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator>(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
D | operator_le.md | 5 bool operator<=(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator<=(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator<=(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
D | operator_ge.md | 5 bool operator>=(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator>=(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator>=(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
D | operator_lt.md | 5 bool operator<(const_reference lhs, const_reference rhs) noexcept; // (1) 8 bool operator<(const_reference lhs, const ScalarType rhs) noexcept; // (2) 11 bool operator<(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | inlined_vector.h | 101 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 …]
|
D | fixed_array.h | 109 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundleIterator.h | 120 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/mesa3d/src/amd/compiler/ |
D | aco_util.h | 49 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/googletest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 348 typedef const type& const_reference; typedef 350 static const_reference ConstReference(const RawContainer& container) { in ConstReference() 369 typedef const type const_reference; typedef 371 static const_reference ConstReference(const Element (&array)[N]) { in ConstReference() 390 typedef const type const_reference; typedef 392 static const_reference ConstReference( in ConstReference()
|
/third_party/skia/include/core/ |
D | SkStringView.h | 22 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/json/include/nlohmann/ |
D | json.hpp | 209 using const_reference = const value_type&; typedef in basic_json 1949 const_reference at(size_type idx) const in at() 2010 const_reference at(const typename object_t::key_type& key) const in at() 2030 const_reference at(KeyType && key) const in at() 2094 const_reference operator[](size_type idx) const in operator []() 2129 const_reference operator[](const typename object_t::key_type& key) const in operator []() 2151 const_reference operator[](T* key) const in operator []() 2184 const_reference operator[](KeyType && key) const in operator []() 2389 const_reference front() const in front() 2405 const_reference back() const in back() [all …]
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | FixedVector.h | 28 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()
|
D | CircularBuffer.h | 27 using const_reference = typename Storage::const_reference; variable 56 const_reference front() const; 154 ANGLE_INLINE typename CircularBuffer<T, N, Storage>::const_reference
|
D | FastVector.h | 30 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | SpeculateAnalyses.cpp | 110 [](decltype(BBFreqs)::const_reference BBF, in operator ()() 111 decltype(BBFreqs)::const_reference BBS) { in operator ()() 252 llvm::sort(BBFreqs, [](decltype(BBFreqs)::const_reference Bbf, in queryCFG() 253 decltype(BBFreqs)::const_reference Bbs) { in queryCFG()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | PoolAlloc.h | 48 typedef const T &const_reference; typedef 57 const_pointer address(const_reference x) const { return &x; } in address()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | memory.h | 335 using const_reference = const T&; member 354 inline const_pointer address(const_reference x) const; 368 inline void construct(pointer p, const_reference val); 405 const_reference x) const { in address() 429 void StlAllocator<T>::construct(pointer p, const_reference val) { in construct()
|