Home
last modified time | relevance | path

Searched refs:cend (Results 1 - 25 of 217) sorted by relevance

123456789

/third_party/skia/third_party/externals/dawn/src/common/
H A DGPUInfo.cpp95 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()
[all...]
/third_party/json/tests/src/
H A Dunit-iterators1.cpp83 SECTION("json + cbegin/cend")
86 CHECK(it != j.cend());
91 CHECK(it == j.cend());
95 CHECK(it != j.cend());
100 CHECK(it == j.cend());
104 CHECK(it != j.cend());
108 SECTION("const json + cbegin/cend")
111 CHECK(it != j_const.cend());
116 CHECK(it == j_const.cend());
120 CHECK(it != j_const.cend());
[all...]
H A Dunit-class_const_iterator.cpp101 CHECK((it == j.cend()));
109 CHECK((it == j.cend()));
117 CHECK((it == j.cend()));
138 it = j.cend();
171 it = j.cend();
300 json::const_iterator it = j.cend();
307 json::const_iterator it = j.cend();
318 json::const_iterator it = j.cend();
327 json::const_iterator it = j.cend();
349 json::const_iterator it = j.cend();
[all...]
H A Dunit-element_access1.cpp299 json::const_iterator it2 = jarray.erase(jarray.cbegin(), jarray.cend());
301 CHECK(it2 == jarray.cend());
376 CHECK_THROWS_WITH_AS(jarray.erase(jarray.cbegin(), jarray2.cend()),
378 CHECK_THROWS_WITH_AS(jarray.erase(jarray2.cbegin(), jarray.cend()),
380 CHECK_THROWS_WITH_AS(jarray.erase(jarray2.cbegin(), jarray2.cend()),
644 CHECK_THROWS_WITH_AS(j.erase(j.cend()), "[json.exception.invalid_iterator.205] iterator out of range", json::invalid_iterator&);
656 CHECK_THROWS_WITH_AS(j.erase(j.cend()), "[json.exception.invalid_iterator.205] iterator out of range", json::invalid_iterator&);
668 CHECK_THROWS_WITH_AS(j.erase(j.cend()), "[json.exception.invalid_iterator.205] iterator out of range", json::invalid_iterator&);
680 CHECK_THROWS_WITH_AS(j.erase(j.cend()), "[json.exception.invalid_iterator.205] iterator out of range", json::invalid_iterator&);
692 CHECK_THROWS_WITH_AS(j.erase(j.cend()), "[jso
[all...]
H A Dunit-constructor1.cpp1301 json j_new(jobject.cbegin(), jobject.cend());
1338 CHECK_THROWS_WITH_AS(json(jobject.cbegin(), jobject2.cend()), "[json.exception.invalid_iterator.201] iterators are not compatible", json::invalid_iterator&);
1339 CHECK_THROWS_WITH_AS(json(jobject2.cbegin(), jobject.cend()), "[json.exception.invalid_iterator.201] iterators are not compatible", json::invalid_iterator&);
1355 json j_new(jarray.cbegin(), jarray.cend());
1399 CHECK_THROWS_WITH_AS(json(jarray.cbegin(), jarray2.cend()), "[json.exception.invalid_iterator.201] iterators are not compatible", json::invalid_iterator&);
1400 CHECK_THROWS_WITH_AS(json(jarray2.cbegin(), jarray.cend()), "[json.exception.invalid_iterator.201] iterators are not compatible", json::invalid_iterator&);
1417 CHECK_THROWS_WITH_AS(json(j.cbegin(), j.cend()), "[json.exception.invalid_iterator.206] cannot construct with iterators from null", json::invalid_iterator&);
1430 json j_new(j.cbegin(), j.cend());
1444 json j_new(j.cbegin(), j.cend());
1458 json j_new(j.cbegin(), j.cend());
[all...]
H A Dunit-ordered_json.cpp63 j1.insert( j2.cbegin(), j2.cend() );
69 oj1.insert( oj2.cbegin(), oj2.cend() );
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCLContext.h181 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) {
208 }) != mDevices.cend());
/third_party/glslang/SPIRV/
H A DLogger.cpp57 for (auto it = tbdFeatures.cbegin(); it != tbdFeatures.cend(); ++it) in getAllMessages()
59 for (auto it = missingFeatures.cbegin(); it != missingFeatures.cend(); ++it) in getAllMessages()
61 for (auto it = warnings.cbegin(); it != warnings.cend(); ++it) in getAllMessages()
63 for (auto it = errors.cbegin(); it != errors.cend(); ++it) in getAllMessages()
H A DSpvPostProcess.cpp350 for (auto fi = module.getFunctions().cbegin(); fi != module.getFunctions().cend(); fi++) { in postProcessCFG()
360 for (auto bi = f->getBlocks().cbegin(); bi != f->getBlocks().cend(); bi++) { in postProcessCFG()
365 for (; ii != b->getInstructions().cend(); ++ii) in postProcessCFG()
369 for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ++ii) in postProcessCFG()
420 for (auto fi = module.getFunctions().cbegin(); fi != module.getFunctions().cend(); fi++) { in postProcessFeatures()
422 for (auto bi = f->getBlocks().cbegin(); bi != f->getBlocks().cend(); bi++) { in postProcessFeatures()
424 for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ii++) in postProcessFeatures()
430 for (auto vi = b->getLocalVariables().cbegin(); vi != b->getLocalVariables().cend(); vi++) { in postProcessFeatures()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-space.cc27 DCHECK_EQ(pages_.cend(), std::find(pages_.cbegin(), pages_.cend(), page)); in AddPage()
33 auto it = std::find(pages_.cbegin(), pages_.cend(), page); in RemovePage()
34 DCHECK_NE(pages_.cend(), it); in RemovePage()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dbasic_block.h97 const_iterator end() const { return insts_.cend(); } in end()
99 const_iterator cend() const { return insts_.cend(); } in cend() function in spvtools::opt::BasicBlock
104 return const_reverse_iterator(cend()); in rbegin()
110 return const_reverse_iterator(cend()); in crbegin()
127 return --insts_.cend(); in ctail()
H A Ddominator_tree.h53 const_iterator end() const { return cend(); } in end()
55 const_iterator cend() const { return children_.end(); } in cend() function
116 const_iterator end() const { return cend(); } in end()
118 const_iterator cend() const { return const_iterator(); } in cend() function in spvtools::opt::DominatorTree
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dbasic_block.h97 const_iterator end() const { return insts_.cend(); } in end()
99 const_iterator cend() const { return insts_.cend(); } in cend() function in spvtools::opt::BasicBlock
104 return const_reverse_iterator(cend()); in rbegin()
110 return const_reverse_iterator(cend()); in crbegin()
127 return --insts_.cend(); in ctail()
H A Ddominator_tree.h53 const_iterator end() const { return cend(); } in end()
55 const_iterator cend() const { return children_.end(); } in cend() function
116 const_iterator end() const { return cend(); } in end()
118 const_iterator cend() const { return const_iterator(); } in cend() function in spvtools::opt::DominatorTree
/third_party/spirv-tools/source/opt/
H A Dbasic_block.h97 const_iterator end() const { return insts_.cend(); } in end()
99 const_iterator cend() const { return insts_.cend(); } in cend() function in spvtools::opt::BasicBlock
104 return const_reverse_iterator(cend()); in rbegin()
110 return const_reverse_iterator(cend()); in crbegin()
127 return --insts_.cend(); in ctail()
H A Ddominator_tree.h53 const_iterator end() const { return cend(); } in end()
55 const_iterator cend() const { return children_.end(); } in cend() function
116 const_iterator end() const { return cend(); } in end()
118 const_iterator cend() const { return const_iterator(); } in cend() function in spvtools::opt::DominatorTree
/third_party/node/deps/v8/src/base/
H A Diterator.h47 const_iterator cend() const { return end_; } in cend() function in v8::base::iterator_range
49 bool empty() const { return cbegin() == cend(); } in empty()
53 difference_type size() const { return cend() - cbegin(); } in size()
/third_party/node/test/cctest/
H A Dtest_per_process.cc23 ASSERT_TRUE(std::any_of(sources.cbegin(), sources.cend(), [](auto p) { in TEST_F()
27 ASSERT_TRUE(std::any_of(sources.cbegin(), sources.cend(), [](auto p) { in TEST_F()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLContextCL.h108 return data->mMemories.find(memory) != data->mMemories.cend(); in hasMemory()
114 return data->mSamplers.find(sampler) != data->mSamplers.cend(); in hasSampler()
120 return data->mDeviceQueues.find(queue) != data->mDeviceQueues.cend(); in hasDeviceQueue()
/third_party/json/include/nlohmann/detail/output/
H A Dserializer.hpp147 JSON_ASSERT(i != val.m_value.object->cend()); in dump()
148 JSON_ASSERT(std::next(i) == val.m_value.object->cend()); in dump()
175 JSON_ASSERT(i != val.m_value.object->cend()); in dump()
176 JSON_ASSERT(std::next(i) == val.m_value.object->cend()); in dump()
209 i != val.m_value.array->cend() - 1; ++i) in dump()
231 i != val.m_value.array->cend() - 1; ++i) in dump()
275 i != val.m_value.binary->cend() - 1; ++i) in dump()
306 i != val.m_value.binary->cend() - 1; ++i) in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
H A DGraph.h234 const_iterator cend() const { in cend() function in llvm::xray::Graph::InOutEdgeView
241 const_iterator end() const { return cend(); } in end()
287 const_iterator cend() const { return G.Vertices.cend(); } in cend() function in llvm::xray::Graph::VertexView
324 const_iterator cend() const { return G.Edges.cend(); } in cend() function in llvm::xray::Graph::EdgeView
/third_party/vk-gl-cts/framework/common/
H A DtcuWaiverUtil.cpp444 vendor.cend(), in matchVendor()
446 m_currentVendor.cend(), in matchVendor()
456 device.cend(), in matchDevice()
458 m_currentRenderer.cend(), in matchDevice()
525 std::string::const_iterator pathEnd = casePath.cend(); in isOnWaiverList()
543 c->name.cend(), in isOnWaiverList()
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h98 constexpr const_iterator cend() const noexcept { return std::next(begin(), length); }
131 return const_reverse_iterator(cend());
324 Iterator cend() const in cend() function
335 Iterator end() const { return cend(); } in end()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dfuzzer_pass_construct_composites.cpp178 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructArray()
208 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructMatrix()
237 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructStruct()
314 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructVector()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dfuzzer_pass_construct_composites.cpp178 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructArray()
208 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructMatrix()
237 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructStruct()
314 if (available_instructions == type_id_to_available_instructions.cend()) { in FindComponentsToConstructVector()

Completed in 16 milliseconds

123456789