Home
last modified time | relevance | path

Searched refs:cit (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/containers/
H A Diterator.rel_ops.compile.pass.cpp49 (void)(it == cit); in test_eq()
50 (void)(it != cit); in test_eq()
53 (void)(cit == cit); in test_eq()
54 (void)(cit != cit); in test_eq()
71 (void)(cit < cit); in test_lt()
72 (void)(cit <= cit); in test_lt()
73 (void)(cit > cit); in test_lt()
74 (void)(cit >= cit); in test_lt()
79 (void)(it - cit); in test_lt()
80 (void)(cit - it); in test_lt()
[all …]
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.counted/
H A Dcounted.pass.cpp75 auto cit = contiguous_iterator<const int*>(buffer); in test() local
81 auto c5 = std::views::counted(cit, 3); in test()
83 auto c7 = std::views::counted(std::move(cit), 3); in test()
113 auto c5 = std::views::counted(cit, 3); in test()
115 auto c7 = std::views::counted(std::move(cit), 3); in test()
131 assert(c5.begin() == cit && c5.end() == cit + 3); in test()
132 assert(c6.begin() == cit && c6.end() == cit + 3); in test()
133 assert(c7.begin() == cit && c7.end() == cit + 3); in test()
134 assert(c8.begin() == cit && c8.end() == cit + 3); in test()
145 auto c5 = std::views::counted(cit, 3); in test()
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/
H A Dcopy_assign.pass.cpp153 recursive_directory_iterator const& cit = it; in TEST_CASE() local
154 it = cit; in TEST_CASE()
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/
H A Dincomplete_type.pass.cpp21 std::list<A>::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/
H A Dincomplete_type.pass.cpp23 Set::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/associative/set/
H A Dincomplete_type.pass.cpp23 Set::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/
H A Dincomplete_type.pass.cpp23 Map::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/
H A Dincomplete_type.pass.cpp23 Map::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.set/
H A Dincomplete.pass.cpp30 Map::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.multiset/
H A Dincomplete.pass.cpp30 Map::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.multimap/
H A Dincomplete.pass.cpp29 Map::const_iterator cit; member
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.map/
H A Dincomplete_type.pass.cpp29 Map::const_iterator cit; member
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DDenseMapTest.cpp324 typename TypeParam::const_iterator cit(it); in TYPED_TEST() local
325 EXPECT_TRUE(it == cit); in TYPED_TEST()
328 typename TypeParam::const_iterator cit2(cit); in TYPED_TEST()
329 EXPECT_TRUE(cit == cit2); in TYPED_TEST()
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.td241 defm CIT : CmpBranchRIEaPair<"cit", 0xEC72, GR32, imm32sx16>;
256 def CITAsm#V : FixedCmpBranchRIEa<ICV<V>, "cit", 0xEC72, GR32,
/llvm-project-15.0.7/llvm/test/MC/SystemZ/
H A Dinsn-bad.s1482 #CHECK: cit %r0, -32769
1484 #CHECK: cit %r0, 32768
1490 cit %r0, -32769
1491 cit %r0, 32768
H A Dinsn-good.s4693 #CHECK: cit %r0, 0, 12 # encoding: [0xec,0x00,0x00,0x00,0xc0,0x72]
4694 #CHECK: cit %r0, -1, 12 # encoding: [0xec,0x00,0xff,0xff,0xc0,0x72]
4695 #CHECK: cit %r0, -32768, 12 # encoding: [0xec,0x00,0x80,0x00,0xc0,0x72]
4696 #CHECK: cit %r0, 32767, 12 # encoding: [0xec,0x00,0x7f,0xff,0xc0,0x72]
4704 cit %r0, 0, 12
4705 cit %r0, -1, 12
4706 cit %r0, -32768, 12
4707 cit %r0, 32767, 12