Home
last modified time | relevance | path

Searched refs:it2 (Results 1 - 25 of 46) sorted by relevance

12

/third_party/json/tests/src/
H A Dunit-iterators2.cpp35 auto it2 = j.begin(); variable
37 ++it2;
50 CHECK(!(it1 == it2));
52 CHECK(!(it2 == it3));
63 CHECK( (it1 != it2) == !(it1 == it2) );
65 CHECK( (it2 != it3) == !(it2 == it3) );
78 CHECK_THROWS_WITH_AS(it1 < it2, "[json.exception.invalid_iterator.213] (/5) cannot compare order of object iterators", json::invalid_iterator&);
79 CHECK_THROWS_WITH_AS(it2 < it
[all...]
H A Dunit-concepts.cpp135 json::iterator it2 = j.end(); variable
136 swap(it1, it2);
138 CHECK(it2 == j.begin());
143 json::const_iterator it2 = j.cend(); variable
144 swap(it1, it2);
146 CHECK(it2 == j.begin());
H A Dunit-element_access1.cpp277 json::iterator it2 = jarray.erase(jarray.begin()); variable
279 CHECK(*it2 == json(1u));
283 json::const_iterator it2 = jarray.erase(jarray.cbegin()); variable
285 CHECK(*it2 == json(1u));
293 json::iterator it2 = jarray.erase(jarray.begin(), jarray.end()); variable
295 CHECK(it2 == jarray.end());
299 json::const_iterator it2 = jarray.erase(jarray.cbegin(), jarray.cend()); variable
301 CHECK(it2 == jarray.cend());
309 json::iterator it2 = jarray.erase(jarray.begin(), jarray.begin()); variable
311 CHECK(*it2
315 json::const_iterator it2 = jarray.erase(jarray.cbegin(), jarray.cbegin()); global() variable
326 json::iterator it2 = jarray.erase(it); global() variable
333 json::const_iterator it2 = jarray.erase(it); global() variable
343 json::iterator it2 = jarray.erase(jarray.begin() + 3, jarray.begin() + 6); global() variable
349 json::const_iterator it2 = jarray.erase(jarray.cbegin() + 3, jarray.cbegin() + 6); global() variable
[all...]
H A Dunit-ordered_map.cpp185 auto it2 = om.begin(); variable
186 CHECK(it2->first == "zwei");
187 ++it2;
188 CHECK(it2->first == "drei");
189 ++it2;
190 CHECK(it2 == om.end());
H A Dunit-element_access2.cpp836 typename Json::iterator it2 = jobject.erase(jobject.begin()); variable
838 CHECK(*it2 == Json(1));
842 typename Json::const_iterator it2 = jobject.erase(jobject.cbegin()); variable
844 CHECK(*it2 == Json(1));
852 typename Json::iterator it2 = jobject.erase(jobject.begin(), jobject.end()); variable
854 CHECK(it2 == jobject.end());
858 typename Json::const_iterator it2 = jobject.erase(jobject.cbegin(), jobject.cend()); variable
860 CHECK(it2 == jobject.cend());
868 typename Json::iterator it2 = jobject.erase(jobject.begin(), jobject.begin()); variable
870 CHECK(*it2
874 typename Json::const_iterator it2 = jobject.erase(jobject.cbegin(), jobject.cbegin()); global() variable
885 typename Json::iterator it2 = jobject.erase(it); global() variable
892 typename Json::const_iterator it2 = jobject.erase(it); global() variable
902 typename Json::iterator it2 = jobject.erase(jobject.find("b"), jobject.find("e")); global() variable
908 typename Json::const_iterator it2 = jobject.erase(jobject.find("b"), jobject.find("e")); global() variable
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp129 for (succ_iterator_ty it2 = succ_begin(*it), ie2 = succ_end(*it); in ExecuteOneTest()
130 it2 != ie2; ++it2) in ExecuteOneTest()
131 assert(S.count(*it2) && "Attempt to run invalid changeset!"); in ExecuteOneTest()
221 for (succ_closure_iterator_ty it2 = succ_closure_begin(*it), in DAGDeltaAlgorithmImpl()
222 ie2 = succ_closure_end(*it); it2 != ie2; ++it2) in DAGDeltaAlgorithmImpl()
223 PredClosure[*it2].insert(*it); in DAGDeltaAlgorithmImpl()
237 for (succ_iterator_ty it2 = succ_begin(*it), ie2 = succ_end(*it); in DAGDeltaAlgorithmImpl()
238 it2 ! in DAGDeltaAlgorithmImpl()
[all...]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksCacheBuilder.cpp164 auto it2 = allSpirvShaders.find(gpCI.pStages[i].module); in exportFilesForExternalCompiler() local
165 if (it2 == end(allSpirvShaders)) in exportFilesForExternalCompiler()
167 spirvShaders.insert(*it2); in exportFilesForExternalCompiler()
175 auto it2 = allRenderPasses2.find(gpCI.renderPass); in exportFilesForExternalCompiler() local
176 if (it2 == end(allRenderPasses2)) in exportFilesForExternalCompiler()
179 renderPasses2.insert(*it2); in exportFilesForExternalCompiler()
195 auto it2 = allDescriptorSetLayouts.find(it->second.pSetLayouts[i]); in exportFilesForExternalCompiler() local
196 if (it2 == end(allDescriptorSetLayouts)) in exportFilesForExternalCompiler()
198 descriptorSetLayouts.insert({ it2->first, it2 in exportFilesForExternalCompiler()
288 auto it2 = allSpirvShaders.find(cpCI.stage.module); exportFilesForExternalCompiler() local
304 auto it2 = allDescriptorSetLayouts.find(it->second.pSetLayouts[i]); exportFilesForExternalCompiler() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DXCldrStub.java151 private Iterator<V> it2 = null; field in XCldrStub.MultimapIterator
159 return it1.hasNext() || it2 != null && it2.hasNext(); in hasNext()
163 if (it2 != null && it2.hasNext()) { in next()
164 entry.value = it2.next(); in next()
168 it2 = e.getValue().iterator(); in next()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
H A DXCldrStub.java159 private Iterator<V> it2 = null; field in XCldrStub.MultimapIterator
167 return it1.hasNext() || it2 != null && it2.hasNext(); in hasNext()
171 if (it2 != null && it2.hasNext()) { in next()
172 entry.value = it2.next(); in next()
176 it2 = e.getValue().iterator(); in next()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DCaseIterator.java258 Iterator it2 = s.iterator();
260 while (it2.hasNext()) {
266 System.out.print(toHex2.transliterate((String)it2.next()));
385 Iterator it2 = closure.iterator();
388 while (it2.hasNext()) {
389 String item = (String)it2.next();
/third_party/googletest/googletest/test/
H A Dgoogletest-param-test-test.cc142 ParamGenerator<int>::iterator it2 = it; in TEST() local
143 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the " in TEST()
148 EXPECT_FALSE(*it == *it2); in TEST()
149 it2 = it; in TEST()
150 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the " in TEST()
165 it2 = it; in TEST()
167 ++it2; in TEST()
168 EXPECT_TRUE(*it == *it2); in TEST()
/third_party/vk-gl-cts/modules/glshared/
H A DglsFboCompletenessTests.cpp1012 for (Formats::const_iterator it2 = rboFmts.begin(); it2 != rboFmts.end(); it2++) in createRenderableTests()
1014 const RenderableParams params = { it->attPoint, GL_RENDERBUFFER, *it2 }; in createRenderableTests()
1019 for (Formats::const_iterator it2 = texFmts.begin(); it2 != texFmts.end(); it2++) in createRenderableTests()
1021 const RenderableParams params = { it->attPoint, GL_TEXTURE, *it2 }; in createRenderableTests()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Ddecoration_manager.cpp32 auto it2 = b.begin(); in IsSubset() local
35 if (it2 == b.end() || *it1 < *it2) { in IsSubset()
39 if (*it1 == *it2) { in IsSubset()
42 it2++; in IsSubset()
43 } else /* *it1 > *it2 */ { in IsSubset()
45 it2++; in IsSubset()
H A Dtype_manager.cpp122 for (auto it2 = it1 + 1; it2 != incomplete_types_.end(); ++it2) { in AnalyzeTypes()
123 uint32_t id2 = it2->id(); in AnalyzeTypes()
125 Type* type2 = it2->type(); in AnalyzeTypes()
132 it2->ResetType(nullptr); in AnalyzeTypes()
133 id_to_incomplete_type_[it2->id()] = type1; in AnalyzeTypes()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Ddecoration_manager.cpp32 auto it2 = b.begin(); in IsSubset() local
35 if (it2 == b.end() || *it1 < *it2) { in IsSubset()
39 if (*it1 == *it2) { in IsSubset()
42 it2++; in IsSubset()
43 } else /* *it1 > *it2 */ { in IsSubset()
45 it2++; in IsSubset()
H A Dtype_manager.cpp122 for (auto it2 = it1 + 1; it2 != incomplete_types_.end(); ++it2) { in AnalyzeTypes()
123 uint32_t id2 = it2->id(); in AnalyzeTypes()
125 Type* type2 = it2->type(); in AnalyzeTypes()
132 it2->ResetType(nullptr); in AnalyzeTypes()
133 id_to_incomplete_type_[it2->id()] = type1; in AnalyzeTypes()
/third_party/spirv-tools/source/opt/
H A Ddecoration_manager.cpp35 auto it2 = b.begin(); in IsSubset() local
38 if (it2 == b.end() || *it1 < *it2) { in IsSubset()
42 if (*it1 == *it2) { in IsSubset()
45 it2++; in IsSubset()
46 } else /* *it1 > *it2 */ { in IsSubset()
48 it2++; in IsSubset()
H A Dtype_manager.cpp121 for (auto it2 = it1 + 1; it2 != incomplete_types_.end(); ++it2) { in AnalyzeTypes()
122 uint32_t id2 = it2->id(); in AnalyzeTypes()
124 Type* type2 = it2->type(); in AnalyzeTypes()
131 it2->ResetType(nullptr); in AnalyzeTypes()
132 id_to_incomplete_type_[it2->id()] = type1; in AnalyzeTypes()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCanonicalIterator.java263 Iterator<String> it2 = permutations.iterator(); in getEquivalents()
264 while (it2.hasNext()) { in getEquivalents()
265 String possible = it2.next(); in getEquivalents()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCanonicalIterator.java259 Iterator<String> it2 = permutations.iterator(); in getEquivalents()
260 while (it2.hasNext()) { in getEquivalents()
261 String possible = it2.next(); in getEquivalents()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPlatform.cpp511 auto it2 = m_computePipelines.find(pipeline); in destroyPipelineHandler() local
512 if (it2 != end(m_computePipelines)) in destroyPipelineHandler()
516 m_computePipelines.erase(it2); in destroyPipelineHandler()
644 auto it2 = m_renderPasses2.find(renderPass); in destroyRenderPassHandler() local
645 if (it2 != end(m_renderPasses2)) in destroyRenderPassHandler()
648 DDSTAT_HANDLE_DESTROY(subpassDescriptionRequestCount, it2->second.subpassCount); in destroyRenderPassHandler()
649 DDSTAT_HANDLE_DESTROY(attachmentDescriptionRequestCount, it2->second.attachmentCount); in destroyRenderPassHandler()
650 m_renderPasses2.erase(it2); in destroyRenderPassHandler()
/third_party/rust/crates/rust-openssl/openssl-sys/src/
H A Dmacros.rs9 $($it2:item)*
15 ( () ($($it2)*) ),
/third_party/rust/crates/libc/src/
H A Dmacros.rs14 $($it2:item)*
20 ( () ($($it2)*) ),
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-bit-set-invertible.hh157 auto it2 = other.iter (); in is_equal() local
158 return hb_all (+ hb_zip (it1, it2) in is_equal()
/third_party/node/deps/v8/src/inspector/
H A Dv8-inspector-impl.cc370 auto it2 = it->second.find(sessionId); in sessionById()
371 return it2 == it->second.end() ? nullptr : it2->second; in sessionById()

Completed in 27 milliseconds

12