/external/libcxx/test/std/containers/sequences/array/array.swap/ |
swap.pass.cpp | 37 C c2 = {4, 5, 6.5}; local 38 c1.swap(c2); 43 assert(c2.size() == 3); 44 assert(c2[0] == 1); 45 assert(c2[1] == 2); 46 assert(c2[2] == 3.5); 52 C c2 = {4, 5, 6.5}; local 53 std::swap(c1, c2); 58 assert(c2.size() == 3); 59 assert(c2[0] == 1) 68 C c2 = {}; local 77 C c2 = {}; local [all...] |
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
remove_if.pass.cpp | 37 C c2(std::begin(t2), std::end(t2)); 40 assert(c1 == c2); 49 C c2; local 52 assert(c1 == c2); 62 C c2(std::begin(t2), std::end(t2)); 65 assert(c1 == c2); 73 C c2; local 76 assert(c1 == c2); 86 C c2(std::begin(t2), std::end(t2)); 89 assert(c1 == c2); 112 C c2; local 136 C c2; local [all...] |
unique_pred.pass.cpp | 33 C c2(std::begin(t2), std::end(t2)); 35 assert(c1 == c2); 43 C c2(std::begin(t2), std::end(t2)); 45 assert(c1 == c2); 53 C c2(std::begin(t2), std::end(t2)); 55 assert(c1 == c2); 61 C c2; local 63 assert(c1 == c2); 71 C c2(std::begin(t2), std::end(t2)); 73 assert(c1 == c2); 110 C c2; local [all...] |
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
emplace_hint.pass.cpp | 85 C c2; local 86 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
|
insert_hint_const_lvalue.pass.cpp | 90 C c2; local 91 C::const_iterator e = c2.end();
|
insert_hint_rvalue.pass.cpp | 171 C c2; local 172 C::const_iterator e = c2.end();
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/ |
emplace_hint.pass.cpp | 102 C c2; local 103 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
|
insert_hint_const_lvalue.pass.cpp | 90 C c2; local 91 C::const_iterator e = c2.end();
|
insert_hint_rvalue.pass.cpp | 171 C c2; local 172 C::const_iterator e = c2.end();
|
/external/libcxx/test/std/containers/unord/unord.multiset/ |
emplace_hint.pass.cpp | 74 C c2; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
insert_hint_const_lvalue.pass.cpp | 82 C c2; local 83 C::const_iterator e = c2.end();
|
insert_hint_rvalue.pass.cpp | 131 C c2; local 132 C::const_iterator e = c2.end();
|
/external/libcxx/test/std/containers/unord/unord.set/ |
emplace_hint.pass.cpp | 74 C c2; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
insert_hint_const_lvalue.pass.cpp | 82 C c2; local 83 C::const_iterator e = c2.end();
|
insert_hint_rvalue.pass.cpp | 131 C c2; local 132 C::const_iterator e = c2.end();
|
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/ |
rv_value.pass.cpp | 31 typename C::value_type x3, const C& c2) 37 assert(c1 == c2); 65 C c2; local 67 c2.push_back(Ptr(x+i)); 68 insert3at(c2, c2.begin(), Ptr(x+3), Ptr(x+4), Ptr(x+5)); 69 test(std::move(c1), 0, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2); 73 c2.clear(); 75 c2.push_back(Ptr(x+i)); 76 insert3at(c2, c2.begin()+1, Ptr(x+3), Ptr(x+4), Ptr(x+5)) [all...] |
/external/llvm/test/MC/X86/ |
expand-var.s | 22 c2 = b2 - a2 define
|
/external/pcre/dist2/src/ |
pcre2_string_utils.c | 68 PCRE2_UCHAR c1, c2; local 72 c2 = *str2++; 73 if (c1 != c2) return ((c1 > c2) << 1) - 1; 96 PCRE2_UCHAR c1, c2; local 100 c2 = *str2++; 101 if (c1 != c2) return ((c1 > c2) << 1) - 1; 123 PCRE2_UCHAR c1, c2; local 127 c2 = *str2++ 152 PCRE2_UCHAR c1, c2; local [all...] |
/external/strace/tests/ |
print_quoted_string.c | 55 char c2 = '0' + ((c >> 3) & 0x7); local 61 putchar(c2); 66 if (c3 != '0' || c2 != '0') 67 putchar(c2);
|
/external/strace/tests-m32/ |
print_quoted_string.c | 55 char c2 = '0' + ((c >> 3) & 0x7); local 61 putchar(c2); 66 if (c3 != '0' || c2 != '0') 67 putchar(c2);
|
/external/strace/tests-mx32/ |
print_quoted_string.c | 55 char c2 = '0' + ((c >> 3) & 0x7); local 61 putchar(c2); 66 if (c3 != '0' || c2 != '0') 67 putchar(c2);
|
/external/vogar/src/vogar/target/junit/ |
DescriptionComparator.java | 40 String c2 = d2.getClassName(); local 41 int result = c1.compareTo(c2);
|
/frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
parameters.cpp | 13 // CHECK: {c = 97 'a', c2 = "01"} 24 char c2[2]; member in struct:char_struct 41 s.c2[0] = '0'; 42 s.c2[1] = '1';
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/ |
swap_noexcept.pass.cpp | 41 C c1, c2; local 42 static_assert(noexcept(swap(c1, c2)), ""); 46 C c1, c2; local 47 static_assert(noexcept(swap(c1, c2)), ""); 51 C c1, c2; local 52 static_assert(noexcept(swap(c1, c2)), ""); 56 C c1, c2; local 57 static_assert(!noexcept(swap(c1, c2)), "");
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/ |
swap_noexcept.pass.cpp | 41 C c1, c2; local 42 static_assert(noexcept(swap(c1, c2)), ""); 46 C c1, c2; local 47 static_assert(noexcept(swap(c1, c2)), ""); 51 C c1, c2; local 52 static_assert(noexcept(swap(c1, c2)), ""); 56 C c1, c2; local 57 static_assert(!noexcept(swap(c1, c2)), "");
|