HomeSort by relevance Sort by last modified time
    Searched defs:c2 (Results 76 - 100 of 1594) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
swap_noexcept.pass.cpp 46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.swap/
swap_noexcept.pass.cpp 46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
time_h.pass.cpp 38 const char* c2 = 0; local
39 static_assert((std::is_same<decltype(strftime(c1,s,c2,&tmv)), size_t>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/
lv_value.pass.cpp 27 typename C::value_type x3, const C& c2)
33 assert(c1 == c2);
54 C c2 = c1; local
55 insert3at(c2, c2.begin(), 'a', 'b', 'c');
56 test(c1, 0, 'a', 'b', 'c', c2);
57 c2 = c1;
58 insert3at(c2, c2.begin()+1, 'a', 'b', 'c');
59 test(c1, 1, 'a', 'b', 'c', c2);
72 C c2 = c1; local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.opEQ/
lv_value.pass.cpp 27 typename C::value_type x3, const C& c2)
33 assert(c1 == c2);
54 C c2 = c1; local
55 insert3at(c2, c2.begin(), 'a', 'b', 'c');
56 test(c1, 0, 'a', 'b', 'c', c2);
57 c2 = c1;
58 insert3at(c2, c2.begin()+1, 'a', 'b', 'c');
59 test(c1, 1, 'a', 'b', 'c', c2);
72 C c2 = c1; local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
ctime.pass.cpp 38 const char* c2 = 0; local
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
count.pass.cpp 33 std::size_t c2 = 0; local
36 ++c2;
37 assert(c1 == c2);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/vector/
db_iterators_2.pass.cpp 32 C c2; local
33 bool b = c1.begin() < c2.begin();
41 C c2;
42 bool b = c1.begin() < c2.begin();
db_iterators_3.pass.cpp 32 C c2; local
33 int i = c1.begin() - c2.begin();
41 C c2; local
42 int i = c1.begin() - c2.begin();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.ops/
unique.pass.cpp 28 C c2(std::begin(t2), std::end(t2));
30 assert(c1 == c2);
38 C c2(std::begin(t2), std::end(t2));
40 assert(c1 == c2);
48 C c2(std::begin(t2), std::end(t2));
50 assert(c1 == c2);
56 C c2; local
58 assert(c1 == c2);
66 C c2(std::begin(t2), std::end(t2));
68 assert(c1 == c2);
105 C c2; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.cons/
move.pass.cpp 65 std::vector<int> c2 = std::move(c1); local
66 assert(is_contiguous_container_asan_correct(c2));
67 std::vector<int>::iterator j = c2.erase(i);
69 assert(is_contiguous_container_asan_correct(c2));
95 std::vector<int, min_allocator<int>> c2 = std::move(c1); local
96 assert(is_contiguous_container_asan_correct(c2));
97 std::vector<int, min_allocator<int>>::iterator j = c2.erase(i);
99 assert(is_contiguous_container_asan_correct(c2));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.modifiers/
insert_iter_size_value.pass.cpp 89 std::vector<int> c2; local
90 std::vector<int>::iterator i = c1.insert(c2.cbegin() + 10, 5, 1);
126 std::vector<int, min_allocator<int>> c2; local
127 std::vector<int, min_allocator<int>>::iterator i = c1.insert(c2.cbegin() + 10, 5, 1);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
time_h.pass.cpp 38 const char* c2 = 0; local
39 static_assert((std::is_same<decltype(strftime(c1,s,c2,&tmv)), size_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/
lv_value.pass.cpp 27 typename C::value_type x3, const C& c2)
33 assert(c1 == c2);
54 C c2 = c1; local
55 insert3at(c2, c2.begin(), 'a', 'b', 'c');
56 test(c1, 0, 'a', 'b', 'c', c2);
57 c2 = c1;
58 insert3at(c2, c2.begin()+1, 'a', 'b', 'c');
59 test(c1, 1, 'a', 'b', 'c', c2);
72 C c2 = c1; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.runtime/
ctime.pass.cpp 44 const char* c2 = 0; local
46 ((void)c2); // Prevent unused warning
47 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
count.pass.cpp 35 std::size_t c2 = 0; local
38 ++c2;
39 assert(c1 == c2);
  /toolchain/binutils/binutils-2.25/gold/testsuite/
constructor_test.cc 68 class c2 class
71 c2() function in class:c2
79 ~c2()
83 c2 c2v1;
84 c2 c2v2;
  /external/clang/test/CodeCompletion/
enum-switch-case.c 23 unsigned c2; local
24 switch (c2) {
37 // CHECK-CC2-NEXT: COMPLETION: c2 : [#unsigned int#]c2
  /external/clang/test/CodeGen/
constant-comparison.c 6 int *c2 = 3 != 3LL ? &b : &a; variable
  /external/clang/test/SemaCXX/
attr-cleanup-gcc.cpp 7 void c2(int *a) {} function
14 int v2 __attribute__((cleanup(c2)));
attr-deprecated-replacement-error.cpp 14 __declspec(deprecated("warning", 1)) int c2; // expected-error{{'deprecated' attribute takes no more than 1 argument}} variable
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 11 Constant<int&, x> *c2; variable
  /external/compiler-rt/test/asan/TestCases/
coverage-trace-pc.cc 27 int c2 = pc_count; local
28 assert(c1 < c2);
  /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...]

Completed in 731 milliseconds

1 2 34 5 6 7 8 91011>>