/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.special/ |
swap_noexcept.pass.cpp | 40 C c1, c2; local 41 static_assert(noexcept(swap(c1, c2)), ""); 45 C c1, c2; local 46 static_assert(noexcept(swap(c1, c2)), ""); 50 C c1, c2; local 51 static_assert(!noexcept(swap(c1, c2)), "");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.swap/ |
swap.pass.cpp | 36 C c1 = {1, 2, 3.5}; local 38 c1.swap(c2); 39 assert(c1.size() == 3); 40 assert(c1[0] == 4); 41 assert(c1[1] == 5); 42 assert(c1[2] == 6.5); 51 C c1 = {1, 2, 3.5}; local 53 std::swap(c1, c2); 54 assert(c1.size() == 3); 55 assert(c1[0] == 4) 67 C c1 = {}; local 76 C c1 = {}; local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.capacity/ |
shrink_to_fit.pass.cpp | 44 test(C& c1) 46 C s = c1; 47 c1.shrink_to_fit(); 48 assert(c1 == s); 55 C c1 = make<C>(N, start); local 56 test(c1);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/ |
assign_size_value.pass.cpp | 45 test(C& c1, int size, int v) 48 c1.assign(size, v); 49 assert(c1.size() == size); 50 assert(distance(c1.begin(), c1.end()) == c1.size()); 51 for (CI i = c1.begin(); i != c1.end(); ++i) 59 C c1 = make<C>(N, start); local 60 test(c1, M, -10) [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.special/ |
swap_noexcept.pass.cpp | 59 C c1, c2; local 60 static_assert(noexcept(swap(c1, c2)), ""); 64 C c1, c2; local 65 static_assert(noexcept(swap(c1, c2)), ""); 69 C c1, c2; local 70 static_assert(noexcept(swap(c1, c2)), ""); 74 C c1, c2; local 77 static_assert( noexcept(swap(c1, c2)), ""); 79 static_assert(!noexcept(swap(c1, c2)), ""); 85 C c1, c2 local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
remove_if.pass.cpp | 35 C c1(std::begin(t1), std::end(t1)); 38 c1.remove_if(std::ref(cp)); 39 assert(c1 == c2); 47 C c1(std::begin(t1), std::end(t1)); 50 c1.remove_if(std::ref(cp)); 51 assert(c1 == c2); 60 C c1(std::begin(t1), std::end(t1)); 63 c1.remove_if(std::ref(cp)); 64 assert(c1 == c2); 71 C c1; local 134 C c1; local [all...] |
unique_pred.pass.cpp | 32 C c1(std::begin(t1), std::end(t1)); 34 c1.unique(g); 35 assert(c1 == c2); 42 C c1(std::begin(t1), std::end(t1)); 44 c1.unique(g); 45 assert(c1 == c2); 52 C c1(std::begin(t1), std::end(t1)); 54 c1.unique(g); 55 assert(c1 == c2); 60 C c1; local 109 C c1; local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.spec/ |
swap_noexcept.pass.cpp | 59 C c1, c2; local 60 static_assert(noexcept(swap(c1, c2)), ""); 64 C c1, c2; local 65 static_assert(noexcept(swap(c1, c2)), ""); 69 C c1, c2; local 70 static_assert(noexcept(swap(c1, c2)), ""); 74 C c1, c2; local 77 static_assert( noexcept(swap(c1, c2)), ""); 79 static_assert(!noexcept(swap(c1, c2)), ""); 85 C c1, c2 local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.special/ |
swap_noexcept.pass.cpp | 59 C c1, c2; local 60 static_assert(noexcept(swap(c1, c2)), ""); 64 C c1, c2; local 65 static_assert(noexcept(swap(c1, c2)), ""); 69 C c1, c2; local 70 static_assert(noexcept(swap(c1, c2)), ""); 74 C c1, c2; local 77 static_assert( noexcept(swap(c1, c2)), ""); 79 static_assert(!noexcept(swap(c1, c2)), ""); 85 C c1, c2 local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.special/ |
swap_noexcept.pass.cpp | 60 C c1, c2; local 61 static_assert(noexcept(swap(c1, c2)), ""); 65 C c1, c2; local 66 static_assert(noexcept(swap(c1, c2)), ""); 70 C c1, c2; local 71 static_assert(noexcept(swap(c1, c2)), ""); 75 C c1, c2; local 78 static_assert( noexcept(swap(c1, c2)), ""); 80 static_assert(!noexcept(swap(c1, c2)), ""); 86 C c1, c2 local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/ |
swap_noexcept.pass.cpp | 59 C c1, c2; local 60 static_assert(noexcept(swap(c1, c2)), ""); 64 C c1, c2; local 65 static_assert(noexcept(swap(c1, c2)), ""); 69 C c1, c2; local 70 static_assert(noexcept(swap(c1, c2)), ""); 74 C c1, c2; local 77 static_assert( noexcept(swap(c1, c2)), ""); 79 static_assert(!noexcept(swap(c1, c2)), ""); 85 C c1, c2 local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/ |
emplace_hint.pass.cpp | 73 C c1; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.set/ |
emplace_hint.pass.cpp | 73 C c1; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/ |
rv_value.pass.cpp | 28 test(C c1, typename C::difference_type j, 32 std::insert_iterator<C> q(c1, c1.begin() + j); 36 assert(c1 == c2); 63 C c1; local 66 c1.push_back(Ptr(x+i)); 71 test(std::move(c1), 0, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2); 72 c1.clear(); 74 c1.push_back(Ptr(x+i)); 79 test(std::move(c1), 1, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2) [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.special/ |
swap_noexcept.pass.cpp | 59 C c1, c2; local 60 static_assert(noexcept(swap(c1, c2)), ""); 64 C c1, c2; local 65 static_assert(noexcept(swap(c1, c2)), ""); 69 C c1, c2; local 72 static_assert( noexcept(swap(c1, c2)), ""); 74 static_assert(!noexcept(swap(c1, c2)), ""); 80 C c1, c2; local 82 static_assert( noexcept(swap(c1, c2)), "");
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/ |
aix-weak-2a.s | 1 .weak c1 2 c1 = 0xcccc1111 define
|
aix-weak-2b.s | 1 .globl c1 2 c1 = 0xdddd1111 define
|
/art/runtime/ |
utf-inl.h | 74 uint32_t c1, c2; local 76 c1 = *utf8_1; 79 if (c1 == 0) { 85 c1 = GetUtf16FromUtf8(&utf8_1); 87 } while (c1 == c2); 89 const uint32_t leading_surrogate_diff = GetLeadingUtf16Char(c1) - GetLeadingUtf16Char(c2); 94 return GetTrailingUtf16Char(c1) - GetTrailingUtf16Char(c2);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ |
utf16_le.c | 88 UChar c1 = *(p+1);
local 90 if (UTF16_IS_SURROGATE_FIRST(c1)) {
91 code = ((((c1 - 0xd8) << 2) + ((c0 & 0xc0) >> 6) + 1) << 16)
96 code = c1 * 256 + p[0];
|
/external/aac/libSYS/src/ |
conv_string.cpp | 99 UCHAR c1, c2; local 112 c1 = ((charBuf[i])>>4)&0x0f; /* upper nibble */ 115 string[i*2] = hexSymb[c1]; /* convert to string */
|
/external/blktrace/ |
strverscmp.c | 93 unsigned char c1, c2;
local 126 c1 = *p1++;
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
134 c1 = *p1++;
136 state |= (c1 == '0') + (isdigit (c1) != 0);
|
/external/clang/test/CodeGenCXX/ |
arm-swiftcall.cpp | 44 char c1; member in struct:__anon15120
|
cxx1z-initializer-aggregate.cpp | 18 C c1 = {}; member in namespace:Constant
|
eh-aggregated-inits-unwind.cpp | 36 Container c1; local 40 Container c2(c1);
|
eh-aggregated-inits.cpp | 34 Container c1; local 38 Container c2(c1);
|