HomeSort by relevance Sort by last modified time
    Searched refs:ca (Results 1 - 25 of 921) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/ken/
chan.go 53 ca := make([]*Chan, n)
61 ca[i] = ch
63 return ca
216 ca := mkchan(c, 4)
219 go send(ca[0])
220 go send(ca[1])
221 go send(ca[2])
222 go send(ca[3])
225 go sel(ca[0], ca[1], ca[2], ca[3], nc, nc, nc, nc
    [all...]
  /prebuilts/go/linux-x86/test/ken/
chan.go 53 ca := make([]*Chan, n)
61 ca[i] = ch
63 return ca
216 ca := mkchan(c, 4)
219 go send(ca[0])
220 go send(ca[1])
221 go send(ca[2])
222 go send(ca[3])
225 go sel(ca[0], ca[1], ca[2], ca[3], nc, nc, nc, nc
    [all...]
  /external/clang/test/CXX/over/over.built/
p25.cpp 14 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) {
15 return cond? ca : cb;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.fill/
fill.pass.cpp 27 char ca[n] = {0}; local
28 std::fill(Iter(ca), Iter(ca+n), char(1));
29 assert(ca[0] == 1);
30 assert(ca[1] == 1);
31 assert(ca[2] == 1);
32 assert(ca[3] == 1);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
mov.d 19 0x[0-9a-f]+ 20ca 0040 mov r0,r1
20 0x[0-9a-f]+ 23ca 0100 mov r3,r4
21 0x[0-9a-f]+ 26ca 01c1 mov.eq r6,r7
22 0x[0-9a-f]+ 21ca 1281 mov.eq r9,r10
23 0x[0-9a-f]+ 24ca 1342 mov.ne r12,r13
24 0x[0-9a-f]+ 27ca 1402 mov.ne r15,r16
25 0x[0-9a-f]+ 22ca 24c3 mov.p r18,r19
26 0x[0-9a-f]+ 25ca 2583 mov.p r21,r22
27 0x[0-9a-f]+ 20ca 3644 mov.n r24,r25
28 0x[0-9a-f]+ 23ca 3704 mov.n fp,s
    [all...]
  /external/libcxx/test/std/utilities/utility/forward/
forward.fail.cpp 36 const A ca = A(); local
37 std::forward<A&>(ca); // expected-error {{no matching function for call to 'forward'}}
43 const A ca = A(); local
44 std::forward<A>(ca); // expected-error {{no matching function for call to 'forward'}}
move.fail.cpp 31 const move_only ca = move_only(); local
33 test(std::move(ca)); // c
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/
forward.fail.cpp 36 const A ca = A(); local
37 std::forward<A&>(ca); // expected-error {{no matching function for call to 'forward'}}
43 const A ca = A(); local
44 std::forward<A>(ca); // expected-error {{no matching function for call to 'forward'}}
move.fail.cpp 31 const move_only ca = move_only(); local
33 test(std::move(ca)); // c
  /packages/apps/SecureElement/src/com/android/se/security/
AccessRuleCache.java 146 ChannelAccess ca = mRuleCache.get(refDo); local
151 || (ca.getAccess() == ChannelAccess.ACCESS.DENIED)) {
152 ca.setAccess(ChannelAccess.ACCESS.DENIED, channelAccess.getReason());
154 && (ca.getAccess() != ChannelAccess.ACCESS.UNDEFINED)) {
155 ca.setAccess(ca.getAccess(), ca.getReason());
157 && (ca.getAccess() == ChannelAccess.ACCESS.UNDEFINED)) {
158 ca.setAccess(channelAccess.getAccess(), channelAccess.getReason());
160 ca.setAccess(ChannelAccess.ACCESS.ALLOWED, ca.getReason())
274 ChannelAccess ca = mRuleCache.get(ref_do); local
299 ChannelAccess ca = new ChannelAccess(); local
329 ChannelAccess ca = mRuleCache.get(ref_do); local
355 ChannelAccess ca = new ChannelAccess(); local
    [all...]
  /external/curl/tests/certs/scripts/
genroot.sh 26 if [ ! -f $PREFIX-ca.prm ] ; then
27 echo No configuration file $PREFIX-ca.prm
43 echo "openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout XXX"
44 openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout pass:secret
46 echo "openssl req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr"
47 $OPENSSL req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr -passin pass:secre
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 92 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
95 assertEquals(2, ca.getCount());
103 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, mFrom, mTo); local
106 assertEquals(0, ca.getCount());
114 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
117 assertEquals(2, ca.getCount());
122 ca.changeCursor(c2);
125 assertEquals(5, ca.getCount());
133 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
136 assertEquals(2, ca.getCount())
152 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, mCursor2x2, local
178 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, null, null); local
188 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, null, null, null); local
211 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, mCursor2x2, local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-lwp.d 46 [ ]*[a-f0-9]+: 8f c9 f8 12 ca[ ]+slwpcb %r10
54 [ ]*[a-f0-9]+: 8f e9 f8 12 ca[ ]+slwpcb %rdx
62 [ ]*[a-f0-9]+: 8f c9 78 12 ca[ ]+slwpcb %r10d
70 [ ]*[a-f0-9]+: 8f e9 78 12 ca[ ]+slwpcb %edx
73 [ ]*[a-f0-9]+: 8f ca 78 12 c7 78 56 34 12[ ]+lwpins \$0x12345678,%r15d,%eax
74 [ ]*[a-f0-9]+: 8f ca 70 12 c6 78 56 34 12[ ]+lwpins \$0x12345678,%r14d,%ecx
75 [ ]*[a-f0-9]+: 8f ca 68 12 c5 78 56 34 12[ ]+lwpins \$0x12345678,%r13d,%edx
76 [ ]*[a-f0-9]+: 8f ca 60 12 c4 78 56 34 12[ ]+lwpins \$0x12345678,%r12d,%ebx
77 [ ]*[a-f0-9]+: 8f ca 58 12 c3 78 56 34 12[ ]+lwpins \$0x12345678,%r11d,%esp
78 [ ]*[a-f0-9]+: 8f ca 50 12 c2 78 56 34 12[ ]+lwpins \$0x12345678,%r10d,%eb
    [all...]
sse-check-none.d 10 [ ]*[a-f0-9]+: 0f 58 ca addps %xmm2,%xmm1
11 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1
12 [ ]*[a-f0-9]+: 66 0f d0 ca addsubpd %xmm2,%xmm1
13 [ ]*[a-f0-9]+: 66 0f 38 01 ca phaddw %xmm2,%xmm1
sse-check.d 10 [ ]*[a-f0-9]+: 0f 58 ca addps %xmm2,%xmm1
11 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1
12 [ ]*[a-f0-9]+: 66 0f d0 ca addsubpd %xmm2,%xmm1
13 [ ]*[a-f0-9]+: 66 0f 38 01 ca phaddw %xmm2,%xmm1
  /external/libffi/testsuite/libffi.call/
many_complex.inc 56 _Complex T_C_TYPE ca[13];
63 values[i] = &ca[i];
64 ca[i] = i + (-20 - i) * I;
72 cc = many(ca[0], ca[1], ca[2], ca[3], ca[4], ca[5], ca[6], ca[7], ca[8]
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
array_init.rs 22 char ca[4] = {'a', 7, 'b', 'c'};
40 _RS_ASSERT(ca[0] == 'a');
41 _RS_ASSERT(ca[1] == 7);
42 _RS_ASSERT(ca[2] == 'b');
43 _RS_ASSERT(ca[3] == 'c');
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_linux.go 9 "/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc.
10 "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL 6
11 "/etc/ssl/ca-bundle.pem", // OpenSUSE
13 "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
  /prebuilts/go/linux-x86/src/crypto/x509/
root_linux.go 9 "/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc.
10 "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL 6
11 "/etc/ssl/ca-bundle.pem", // OpenSUSE
13 "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
  /external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
any_cast_pointer.pass.cpp 41 any const& ca = a; local
42 static_assert(noexcept(any_cast<int>(&ca)), "");
51 any const& ca = a; local
52 static_assert(std::is_same<decltype(any_cast<int>(&ca)), int const*>::value, "");
53 static_assert(std::is_same<decltype(any_cast<int const>(&ca)), int const*>::value, "");
62 any const* ca = nullptr; local
63 assert(nullptr == any_cast<int>(ca));
64 assert(nullptr == any_cast<int const>(ca));
74 any const& ca = a; local
75 assert(nullptr == any_cast<int>(&ca));
85 any const& ca = a; local
97 any const& ca = a; local
152 std::any const& ca = a; member in class:std
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.nonmembers/any.cast/
any_cast_pointer.pass.cpp 41 any const& ca = a; local
42 static_assert(noexcept(any_cast<int>(&ca)), "");
51 any const& ca = a; local
52 static_assert(std::is_same<decltype(any_cast<int>(&ca)), int const*>::value, "");
53 static_assert(std::is_same<decltype(any_cast<int const>(&ca)), int const*>::value, "");
62 any const* ca = nullptr; local
63 assert(nullptr == any_cast<int>(ca));
64 assert(nullptr == any_cast<int const>(ca));
74 any const& ca = a; local
75 assert(nullptr == any_cast<int>(&ca));
85 any const& ca = a; local
97 any const& ca = a; local
152 std::any const& ca = a; member in class:std
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
fill.pass.cpp 39 char ca[n] = {0};
40 std::fill(Iter(ca), Iter(ca+n), char(1));
41 assert(ca[0] == 1);
42 assert(ca[1] == 1);
43 assert(ca[2] == 1);
44 assert(ca[3] == 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.nonmembers/any.cast/
any_cast_pointer.pass.cpp 34 any const& ca = a; local
35 static_assert(noexcept(any_cast<int>(&ca)), "");
44 any const& ca = a; local
45 static_assert(std::is_same<decltype(any_cast<int>(&ca)), int const*>::value, "");
46 static_assert(std::is_same<decltype(any_cast<int const>(&ca)), int const*>::value, "");
55 any const* ca = nullptr; local
56 assert(nullptr == any_cast<int>(ca));
57 assert(nullptr == any_cast<int const>(ca));
67 any const& ca = a; local
68 assert(nullptr == any_cast<int>(&ca));
78 any const& ca = a; local
90 any const& ca = a; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/
x86-64-sse-check-none.d 11 [ ]*[a-f0-9]+: 0f 58 ca addps %xmm2,%xmm1
12 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1
13 [ ]*[a-f0-9]+: 66 0f d0 ca addsubpd %xmm2,%xmm1
14 [ ]*[a-f0-9]+: 66 0f 38 01 ca phaddw %xmm2,%xmm1
x86-64-sse-check-warn.d 12 [ ]*[a-f0-9]+: 0f 58 ca addps %xmm2,%xmm1
13 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1
14 [ ]*[a-f0-9]+: 66 0f d0 ca addsubpd %xmm2,%xmm1
15 [ ]*[a-f0-9]+: 66 0f 38 01 ca phaddw %xmm2,%xmm1

Completed in 701 milliseconds

1 2 3 4 5 6 7 8 91011>>