/third_party/skia/third_party/externals/dawn/src/common/ |
D | GPUInfo.cpp | 95 return std::find(Skylake.cbegin(), Skylake.cend(), deviceId) != Skylake.cend(); in IsSkylake() 98 return std::find(Kabylake.cbegin(), Kabylake.cend(), deviceId) != Kabylake.cend(); in IsKabylake() 101 return (std::find(Coffeelake.cbegin(), Coffeelake.cend(), deviceId) != Coffeelake.cend()) || in IsCoffeelake() 102 (std::find(Whiskylake.cbegin(), Whiskylake.cend(), deviceId) != Whiskylake.cend()) || in IsCoffeelake() 103 (std::find(Cometlake.cbegin(), Cometlake.cend(), deviceId) != Cometlake.cend()); in IsCoffeelake()
|
/third_party/json/test/src/ |
D | unit-element_access1.cpp | 351 json::const_iterator it2 = jarray.erase(jarray.cbegin(), jarray.cend()); 353 CHECK(it2 == jarray.cend()); 430 … CHECK_THROWS_AS(jarray.erase(jarray.cbegin(), jarray2.cend()), json::invalid_iterator&); 431 … CHECK_THROWS_AS(jarray.erase(jarray2.cbegin(), jarray.cend()), json::invalid_iterator&); 432 … CHECK_THROWS_AS(jarray.erase(jarray2.cbegin(), jarray2.cend()), json::invalid_iterator&); 436 CHECK_THROWS_WITH(jarray.erase(jarray.cbegin(), jarray2.cend()), 438 CHECK_THROWS_WITH(jarray.erase(jarray2.cbegin(), jarray.cend()), 440 CHECK_THROWS_WITH(jarray.erase(jarray2.cbegin(), jarray2.cend()), 727 CHECK_THROWS_AS(j.erase(j.cend()), json::invalid_iterator&); 728 CHECK_THROWS_WITH(j.erase(j.cend()), [all …]
|
D | unit-iterators1.cpp | 108 CHECK(it != j.cend()); 113 CHECK(it == j.cend()); 117 CHECK(it != j.cend()); 122 CHECK(it == j.cend()); 126 CHECK(it != j.cend()); 133 CHECK(it != j_const.cend()); 138 CHECK(it == j_const.cend()); 142 CHECK(it != j_const.cend()); 147 CHECK(it == j_const.cend()); 151 CHECK(it != j_const.cend()); [all …]
|
D | unit-constructor1.cpp | 1280 json j_new(jobject.cbegin(), jobject.cend()); 1319 … CHECK_THROWS_AS(json(jobject.cbegin(), jobject2.cend()), json::invalid_iterator&); 1320 … CHECK_THROWS_AS(json(jobject2.cbegin(), jobject.cend()), json::invalid_iterator&); 1321 …CHECK_THROWS_WITH(json(jobject.cbegin(), jobject2.cend()), "[json.exception.invalid_iterator.201] … 1322 …CHECK_THROWS_WITH(json(jobject2.cbegin(), jobject.cend()), "[json.exception.invalid_iterator.201] … 1338 json j_new(jarray.cbegin(), jarray.cend()); 1384 CHECK_THROWS_AS(json(jarray.cbegin(), jarray2.cend()), json::invalid_iterator&); 1385 CHECK_THROWS_AS(json(jarray2.cbegin(), jarray.cend()), json::invalid_iterator&); 1386 …CHECK_THROWS_WITH(json(jarray.cbegin(), jarray2.cend()), "[json.exception.invalid_iterator.201] it… 1387 …CHECK_THROWS_WITH(json(jarray2.cbegin(), jarray.cend()), "[json.exception.invalid_iterator.201] it… [all …]
|
D | unit-class_const_iterator.cpp | 123 CHECK((it == j.cend())); 131 CHECK((it == j.cend())); 139 CHECK((it == j.cend())); 161 it = j.cend(); 196 it = j.cend(); 326 json::const_iterator it = j.cend(); 333 json::const_iterator it = j.cend(); 344 json::const_iterator it = j.cend(); 353 json::const_iterator it = j.cend(); 375 json::const_iterator it = j.cend(); [all …]
|
/third_party/boost/libs/poly_collection/test/ |
D | test_emplacement.cpp | 46 iterator it3=p.template emplace_hint<type>(p.cend(),5); in test_emplacement() 56 p.template emplace_pos<type>(p.cend(typeid(type)),6); in test_emplacement() 64 local_iterator lit2=p.emplace_pos(p.template cend<type>(),7); in test_emplacement() 78 p.template emplace_hint<type>(p.cend()); in test_emplacement() 80 p.template emplace_pos<type>(p.cend(typeid(type))); in test_emplacement() 82 p.emplace_pos(p.template cend<type>()); in test_emplacement() 96 p.template emplace_hint<type>(p.cend(),v.template make<type>()); in test_emplacement() 100 p.cend(typeid(type)),v.template make<type>()); in test_emplacement() 102 p.emplace_pos(p.template cend<type>(),v.template make<type>()); in test_emplacement()
|
D | test_insertion.cpp | 36 [&]{p.insert(p.cend(),*p2.begin());}, in test_insertion() 43 p.cend(), in test_insertion() 63 [&]{p.insert(p.cend(),*p2.cbegin());}, in test_insertion() 65 [&]{p.insert(p.cend(typeid(type)),*p2.begin());}, in test_insertion() 67 [&]{p.insert(p.template cend<type>(),*p2.begin());}, in test_insertion() 79 [&]{p.insert(p.cend(),p2b,p2e);}, in test_insertion() 80 [&]{p.insert(p.cend(),p2lb,p2le);}, in test_insertion() 81 [&]{p.insert(p.cend(),p2.begin(),p2.end());}, in test_insertion() 82 [&]{p.insert(p.cend(),p2.begin(typeid(type)),p2.end(typeid(type)));}, in test_insertion() 84 p.cend(),p2.template begin<type>(),p2.template end<type>());}, in test_insertion() [all …]
|
D | test_iterators.cpp | 85 BOOST_TEST(clblast==cp.cend(typeid(Type))); in test_iterators() 87 BOOST_TEST(cllast==cp.template cend<Type>()); in test_iterators() 93 BOOST_TEST(clblast==bi.cend()); in test_iterators() 100 BOOST_TEST(cllast==i.cend()); in test_iterators() 151 cs.template cend<Type>()== in test_iterators() 152 static_cast<const_local_iterator>(cs.cend())); in test_iterators() 229 BOOST_TEST(clast==cp.cend()); in test_iterators() 250 BOOST_TEST(clast==cp.segment_traversal().cend()); in test_iterators() 260 BOOST_TEST(clblast==cfirst->cend()); in test_iterators() 266 BOOST_TEST(clblast==cp.cend(first->type_info())); in test_iterators() [all …]
|
/third_party/boost/libs/contract/example/mitchell02/observer/ |
D | subject.hpp | 50 return std::find(observers_.cbegin(), observers_.cend(), ob) != in attached() 51 observers_.cend(); in attached() 87 i != observers_.cend(); ++i) { in observers() 119 i != obs.cend(); ++i) { in all_observers_valid() 143 while(remaining.cend() != remaining_it && old_obs.cend() != old_it) { in other_observers_unchanged() 153 i != obs.cend(); ++i) { in all_observers_updated()
|
/third_party/flutter/skia/third_party/externals/spirv-tools/test/opt/ |
D | instruction_test.cpp | 37 EXPECT_EQ(empty.cend(), empty.cbegin()); in TEST() 49 EXPECT_EQ(inst.cend(), inst.cbegin()); in TEST() 148 auto cend = inst.cend(); in TEST() local 149 EXPECT_NE(cend, inst.cbegin()); in TEST() 157 EXPECT_NE(cend, citer); in TEST() 159 EXPECT_EQ(cend, citer); in TEST() 163 EXPECT_EQ(cend, inst.cend()); in TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | CLContext.h | 181 return std::find(mDevices.cbegin(), mDevices.cend(), device) != mDevices.cend(); in hasDevice() 192 return (std::find_if(mDevices.cbegin(), mDevices.cend(), [](const DevicePtr &ptr) { in supportsImages() 194 }) != mDevices.cend()); in supportsImages() 199 return (std::find_if(mDevices.cbegin(), mDevices.cend(), [](const DevicePtr &ptr) { in supportsIL() 201 }) != mDevices.cend()); in supportsIL() 206 return (std::find_if(mDevices.cbegin(), mDevices.cend(), [&](const DevicePtr &ptr) { in supportsBuiltInKernel() 208 }) != mDevices.cend()); in supportsBuiltInKernel()
|
/third_party/glslang/SPIRV/ |
D | Logger.cpp | 59 for (auto it = tbdFeatures.cbegin(); it != tbdFeatures.cend(); ++it) in getAllMessages() 61 for (auto it = missingFeatures.cbegin(); it != missingFeatures.cend(); ++it) in getAllMessages() 63 for (auto it = warnings.cbegin(); it != warnings.cend(); ++it) in getAllMessages() 65 for (auto it = errors.cbegin(); it != errors.cend(); ++it) in getAllMessages()
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | string_ref.h | 70 const_iterator cend() const { return data_ + length_; } in cend() function 114 auto it = std::search(cbegin(), cend(), s.cbegin(), s.cend()); in find() 115 return it == cend() ? npos : std::distance(cbegin(), it); in find() 119 auto it = std::find(cbegin(), cend(), c); in find() 120 return it == cend() ? npos : std::distance(cbegin(), it); in find()
|
/third_party/boost/libs/array/test/ |
D | array0.cpp | 43 BOOST_TEST ( test_case.cbegin() == test_case.cend()); in RunTests() 45 BOOST_TEST ( const_test_case.cbegin() == const_test_case.cend()); in RunTests() 56 std::for_each( test_case.cbegin(), test_case.cend(), BadValue< T > ); in RunTests() 59 std::for_each( const_test_case.cbegin(), const_test_case.cend(), BadValue< T > ); in RunTests()
|
/third_party/flutter/skia/third_party/externals/libpng/scripts/ |
D | options.awk | 54 cend="*/" end # Comment end 58 une="_SUPPORTED" cend # end unsupported option 207 print comment $0, cend >out 222 print comment, version, cend >out 232 print comment, $2, cend >out 233 print comment, "Machine generated file: DO NOT EDIT", cend >out 235 print comment, "Derived from:", $3, cend >out 549 print comment, "options", cend >out 805 print comment, "end of options", cend >out 813 print comment, "settings", cend >out [all …]
|
/third_party/libpng/scripts/ |
D | options.awk | 54 cend="*/" end # Comment end 58 une="_SUPPORTED" cend # end unsupported option 207 print comment $0, cend >out 222 print comment, version, cend >out 232 print comment, $2, cend >out 233 print comment, "Machine generated file: DO NOT EDIT", cend >out 235 print comment, "Derived from:", $3, cend >out 549 print comment, "options", cend >out 805 print comment, "end of options", cend >out 813 print comment, "settings", cend >out [all …]
|
/third_party/skia/third_party/externals/libpng/scripts/ |
D | options.awk | 54 cend="*/" end # Comment end 58 une="_SUPPORTED" cend # end unsupported option 207 print comment $0, cend >out 222 print comment, version, cend >out 232 print comment, $2, cend >out 233 print comment, "Machine generated file: DO NOT EDIT", cend >out 235 print comment, "Derived from:", $3, cend >out 549 print comment, "options", cend >out 805 print comment, "end of options", cend >out 813 print comment, "settings", cend >out [all …]
|
/third_party/boost/libs/container/bench/ |
D | bench_alloc_stable_vector_burst.cpp | 196 bc::stable_vector<int> c(a.cbegin(), a.cend()); in stable_vector_operations() 197 b.insert(b.cend(), 0); in stable_vector_operations() 199 a.assign(b.cbegin(), b.cend()); in stable_vector_operations() 200 a.assign(c.cbegin(), c.cend()); in stable_vector_operations() 207 stable_vector_t c(a.cbegin(), a.cend()); in stable_vector_operations() 208 b.insert(b.cend(), 0); in stable_vector_operations() 211 a.assign(b.cbegin(), b.cend()); in stable_vector_operations() 213 a.assign(c.cbegin(), c.cend()); in stable_vector_operations()
|
/third_party/boost/libs/beast/include/boost/beast/_experimental/unit_test/detail/ |
D | const_container.hpp | 79 return m_cont.cend(); in end() 83 cend() const in cend() function in boost::beast::unit_test::detail::const_container 85 return m_cont.cend(); in cend()
|
/third_party/boost/boost/beast/_experimental/unit_test/detail/ |
D | const_container.hpp | 79 return m_cont.cend(); in end() 83 cend() const in cend() function in boost::beast::unit_test::detail::const_container 85 return m_cont.cend(); in cend()
|
/third_party/boost/libs/process/test/ |
D | environment.cpp | 196 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), sz + 3); 205 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), sz + 2); 214 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), sz + 1); 221 BOOST_CHECK_LE(std::distance(env.cbegin(), env.cend()), sz); 241 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), 3u); 250 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), 2u); 259 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), 1u); 266 BOOST_CHECK_EQUAL(std::distance(env.cbegin(), env.cend()), 0u);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | basic_block.h | 97 const_iterator end() const { return insts_.cend(); } in end() 99 const_iterator cend() const { return insts_.cend(); } in cend() function 104 return const_reverse_iterator(cend()); in rbegin() 110 return const_reverse_iterator(cend()); in crbegin() 127 return --insts_.cend(); in ctail()
|
/third_party/spirv-tools/source/opt/ |
D | basic_block.h | 97 const_iterator end() const { return insts_.cend(); } in end() 99 const_iterator cend() const { return insts_.cend(); } in cend() function 104 return const_reverse_iterator(cend()); in rbegin() 110 return const_reverse_iterator(cend()); in crbegin() 127 return --insts_.cend(); in ctail()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | basic_block.h | 97 const_iterator end() const { return insts_.cend(); } in end() 99 const_iterator cend() const { return insts_.cend(); } in cend() function 104 return const_reverse_iterator(cend()); in rbegin() 110 return const_reverse_iterator(cend()); in crbegin() 127 return --insts_.cend(); in ctail()
|
/third_party/boost/boost/container/detail/ |
D | flat_tree.hpp | 207 iterator const first_new = dest.insert(dest.cend(), first, last ); in flat_tree_merge_unique() 344 (seq.begin(), seq.end(), boost::movelib::negate<Compare>(comp)), seq.cend()); in flat_tree_adopt_sequence_unique() 354 (seq.begin(), seq.end(), boost::movelib::negate<Compare>(comp)), seq.cend()); in flat_tree_adopt_sequence_unique() 613 …BOOST_ASSERT((is_sorted)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->priv_value_… in flat_tree() 622 …BOOST_ASSERT((is_sorted)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->priv_value_… in flat_tree() 631 …BOOST_ASSERT((is_sorted)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->priv_value_… in flat_tree() 640 …BOOST_ASSERT((is_sorted_and_unique)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->… in flat_tree() 649 …BOOST_ASSERT((is_sorted_and_unique)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->… in flat_tree() 658 …BOOST_ASSERT((is_sorted_and_unique)(this->m_data.m_seq.cbegin(), this->m_data.m_seq.cend(), this->… in flat_tree() 759 { return this->cend(); } in end() [all …]
|