Searched defs:c1 (Results 26 - 50 of 649) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/sequences/vector/vector.cons/
H A Dconstruct_default.pass.cpp31 C c1 = {}; local
32 assert(c1.__invariants());
33 assert(c1.empty());
34 assert(c1.get_allocator() == typename C::allocator_type());
/external/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_default.pass.cpp30 C c1 = {}; local
31 assert(c1.__invariants());
32 assert(c1.empty());
33 assert(c1.get_allocator() == typename C::allocator_type());
/external/libcxx/test/containers/unord/unord.map/unord.map.swap/
H A Dswap_noexcept.pass.cpp46 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, c
[all...]
/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_noexcept.pass.cpp46 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, c
[all...]
/external/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_noexcept.pass.cpp46 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, c
[all...]
/external/libcxx/test/containers/unord/unord.set/unord.set.swap/
H A Dswap_noexcept.pass.cpp46 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, c
[all...]
/external/libcxx/test/depr/depr.c.headers/
H A Dtime_h.pass.cpp37 char* c1 = 0; local
39 static_assert((std::is_same<decltype(strftime(c1,s,c2,&tmv)), size_t>::value), "");
/external/libcxx/test/language.support/support.runtime/
H A Dctime.pass.cpp37 char* c1 = 0; local
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
/external/libcxx/test/utilities/template.bitset/bitset.members/
H A Dcount.pass.cpp32 std::size_t c1 = v.count(); local
37 assert(c1 == c2);
/external/libutf/
H A Drunestrncmp.c22 Rune c1, c2; local
25 c1 = *s1++;
28 if(c1 != c2) {
29 if(c1 > c2)
33 if(c1 == 0)
H A Dutfrrune.c23 long c1; local
32 c1 = *(uchar*)s;
33 if(c1 < Runeself) { /* one byte rune */
34 if(c1 == 0)
36 if(c1 == c)
41 c1 = chartorune(&r, s);
44 s += c1;
H A Dutfrune.c23 long c1; local
31 c1 = *(uchar*)s;
32 if(c1 < Runeself) { /* one byte rune */
33 if(c1 == 0)
35 if(c1 == c)
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dfwalsh_sse2.asm49 psllw xmm2, 2 ; c1 b1
53 punpckhqdq xmm1, xmm2 ; c1 d1
59 paddw xmm7, [GLOBAL(c1)]
62 paddw xmm0, xmm1 ; b1+c1 a1+d1
63 psubw xmm2, xmm1 ; b1-c1 a1-d1
64 paddw xmm0, xmm7 ; b1+c1 a1+d1+(a1!=0)
78 pmaddwd xmm0, [GLOBAL(c1)] ; d11 a11 d10 a10
81 pmaddwd xmm1, [GLOBAL(c1)] ; d12 a12 d13 a13
154 c1: label
/external/valgrind/main/massif/tests/
H A Dnew-cpp.cpp21 char* c1 = new char[2000]; local
25 delete [] c1;
/external/apache-http/src/org/apache/http/cookie/
H A DCookieIdentityComparator.java56 public int compare(final Cookie c1, final Cookie c2) { argument
57 int res = c1.getName().compareTo(c2.getName());
60 String d1 = c1.getDomain();
/external/bison/lib/
H A Dc-strncasecmp.c31 unsigned char c1, c2; local
38 c1 = c_tolower (*p1);
41 if (--n == 0 || c1 == '\0')
47 while (c1 == c2);
50 return c1 - c2;
55 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
/external/chromium_org/v8/test/webkit/
H A Dclosure-inside-extra-arg-call.js31 var c1; variable
40 c1 = function() { return d; }
46 shouldBe("c1()", '"xyxy"');
38 c1 = function() { return d; } function
/external/clang/test/CodeGen/
H A Dconstant-comparison.c5 int *c1 = 1 < 2 ? &a : &b; variable
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp4 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/
H A Dinstantiation-default-2.cpp6 Constant<int, 5> *c1; variable
/external/libcxx/test/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp41 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)), "");
/external/libcxx/test/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp41 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)), "");
/external/libcxx/test/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp41 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)), "");
/external/libcxx/test/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp41 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)), "");
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Derase_iter.pass.cpp43 test(int P, C& c1) argument
46 assert(P < c1.size());
47 std::size_t c1_osize = c1.size();
48 I i = c1.erase(c1.cbegin() + P);
49 assert(i == c1.begin() + P);
50 assert(c1.size() == c1_osize - 1);
51 assert(distance(c1.begin(), c1.end()) == c1
[all...]

Completed in 7935 milliseconds

1234567891011>>