/external/ceres-solver/internal/ceres/ |
single_linkage_clustering.cc | 77 const int c1 = FindConnectedComponent(vertex1, membership); local 80 if (c1 == c2) { 84 if (c1 < c2) { 85 (*membership)[c2] = c1; 87 (*membership)[c1] = c2;
|
/external/clang/test/CodeGen/ |
constant-comparison.c | 5 int *c1 = 1 < 2 ? &a : &b; variable
|
/external/clang/test/CodeGenCXX/ |
eh-aggregate-copy-destroy.cpp | 24 Container c1; local 29 Container c2(c1);
|
/external/clang/test/SemaCXX/ |
attr-cleanup-gcc.cpp | 4 void c1(int *a) {} function in namespace:N 13 int v1 __attribute__((cleanup(N::c1))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}}
|
/external/clang/test/SemaTemplate/ |
instantiation-default-2.cpp | 6 Constant<int, 5> *c1; variable
|
/external/libcxx/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);
|
/external/libcxx/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...] |
/external/libcxx/test/std/containers/sequences/deque/deque.special/ |
swap_noexcept.pass.cpp | 57 C c1, c2; local 58 static_assert(noexcept(swap(c1, c2)), ""); 62 C c1, c2; local 63 static_assert(noexcept(swap(c1, c2)), ""); 67 C c1, c2; local 68 static_assert(noexcept(swap(c1, c2)), ""); 72 C c1, c2; local 75 static_assert( noexcept(swap(c1, c2)), ""); 77 static_assert(!noexcept(swap(c1, c2)), ""); 83 C c1, c2 local [all...] |
/external/libcxx/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...] |
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/ |
swap_noexcept.pass.cpp | 57 C c1, c2; local 58 static_assert(noexcept(swap(c1, c2)), ""); 62 C c1, c2; local 63 static_assert(noexcept(swap(c1, c2)), ""); 67 C c1, c2; local 68 static_assert(noexcept(swap(c1, c2)), ""); 72 C c1, c2; local 75 static_assert( noexcept(swap(c1, c2)), ""); 77 static_assert(!noexcept(swap(c1, c2)), ""); 83 C c1, c2 local [all...] |
/external/libcxx/test/std/containers/sequences/list/list.special/ |
swap_noexcept.pass.cpp | 57 C c1, c2; local 58 static_assert(noexcept(swap(c1, c2)), ""); 62 C c1, c2; local 63 static_assert(noexcept(swap(c1, c2)), ""); 67 C c1, c2; local 68 static_assert(noexcept(swap(c1, c2)), ""); 72 C c1, c2; local 75 static_assert( noexcept(swap(c1, c2)), ""); 77 static_assert(!noexcept(swap(c1, c2)), ""); 83 C c1, c2 local [all...] |
/external/libcxx/test/std/containers/sequences/vector/vector.special/ |
swap_noexcept.pass.cpp | 58 C c1, c2; local 59 static_assert(noexcept(swap(c1, c2)), ""); 63 C c1, c2; local 64 static_assert(noexcept(swap(c1, c2)), ""); 68 C c1, c2; local 69 static_assert(noexcept(swap(c1, c2)), ""); 73 C c1, c2; local 76 static_assert( noexcept(swap(c1, c2)), ""); 78 static_assert(!noexcept(swap(c1, c2)), ""); 84 C c1, c2 local [all...] |
/external/libcxx/test/std/containers/sequences/vector.bool/ |
swap_noexcept.pass.cpp | 57 C c1, c2; local 58 static_assert(noexcept(swap(c1, c2)), ""); 62 C c1, c2; local 63 static_assert(noexcept(swap(c1, c2)), ""); 67 C c1, c2; local 68 static_assert(noexcept(swap(c1, c2)), ""); 72 C c1, c2; local 75 static_assert( noexcept(swap(c1, c2)), ""); 77 static_assert(!noexcept(swap(c1, c2)), ""); 83 C c1, c2 local [all...] |
/external/libcxx/test/std/containers/unord/unord.multiset/ |
emplace_hint.pass.cpp | 73 C c1; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
/external/libcxx/test/std/containers/unord/unord.set/ |
emplace_hint.pass.cpp | 73 C c1; local 75 R r = c1.emplace_hint(c2.begin(), 5, 6);
|
/external/libcxx/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...] |
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string.special/ |
swap_noexcept.pass.cpp | 57 C c1, c2; local 58 static_assert(noexcept(swap(c1, c2)), ""); 62 C c1, c2; local 63 static_assert(noexcept(swap(c1, c2)), ""); 67 C c1, c2; local 70 static_assert( noexcept(swap(c1, c2)), ""); 72 static_assert(!noexcept(swap(c1, c2)), ""); 78 C c1, c2; local 80 static_assert( noexcept(swap(c1, c2)), "");
|
/external/v8/test/webkit/ |
closure-inside-extra-arg-call.js | 31 var c1; variable 40 c1 = function() { return d; } 46 shouldBe("c1()", '"xyxy"'); 38 c1 = function() { return d; } function
|
/ndk/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)), "");
|
/ndk/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)), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.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)), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.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)), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.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)), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
remove_if.pass.cpp | 32 C c1(std::begin(t1), std::end(t1)); 34 c1.remove_if(g); 35 assert(c1 == c2); 41 C c1(std::begin(t1), std::end(t1)); 43 c1.remove_if(g); 44 assert(c1 == c2); 51 C c1(std::begin(t1), std::end(t1)); 53 c1.remove_if(g); 54 assert(c1 == c2); 59 C c1; local 107 C c1; local [all...] |