/external/libcxx/test/std/utilities/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 145 std::any const& ca = a; member in class:std [all...] |
any_cast_reference.pass.cpp | 63 any const& ca = a; local 64 static_assert(std::is_same<decltype(any_cast<int>(ca)), int>::value, ""); 65 static_assert(std::is_same<decltype(any_cast<int const>(ca)), int>::value, ""); 66 static_assert(std::is_same<decltype(any_cast<int const&>(ca)), int const&>::value, ""); 68 static_assert(std::is_same<decltype(any_cast<int const&&>(ca)), int const&&>::value, ""); 124 any const& ca = a; local 146 Type const& v = any_cast<Type const&>(ca); 149 Type const &cv = any_cast<Type const&>(ca); 154 Type const& v = any_cast<Type const&>(std::move(ca)); 157 Type const &cv = any_cast<Type const&>(std::move(ca)); [all...] |
/external/libcxx/test/std/utilities/utility/forward/ |
forward_03.pass.cpp | 35 const A ca = A(); local 38 ((void)ca); // Prevent unused warning 53 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 55 static_assert(sizeof(test(std::forward<const A>(ca))) == 2, "");
|
/external/libcxx/test/std/utilities/utility/utility.swap/ |
swap_array.pass.cpp | 88 using CA = CopyOnly[42]; 91 static_assert(can_swap<CA&>(), ""); 95 CA ca; local 97 static_assert(!noexcept(std::swap(ca, ca)), "");
|
/external/libjpeg-turbo/ |
cdjpeg.c | 87 register int ca, ck; local 90 while ((ca = *arg++) != '\0') { 93 if (isupper(ca)) /* force arg to lcase (assume ck is already) */ 94 ca = tolower(ca); 95 if (ca != ck)
|
/external/tpm2/ |
CommandCodeAttributes.c | 117 COMMAND_ATTRIBUTES ca = s_commandAttributes[commandCode - TPM_CC_FIRST]; local 118 if(ca & ENCRYPT_2) 120 if(ca & ENCRYPT_4) 141 COMMAND_ATTRIBUTES ca = s_commandAttributes[commandCode - TPM_CC_FIRST]; local 142 if(ca & DECRYPT_2) 144 if(ca & DECRYPT_4)
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
X509KeyManagerTest.java | 28 * Tests whether the key manager will select the right key when the CA is of 50 TestKeyStore ca = new TestKeyStore.Builder() local 54 .signer(ca.getPrivateKey(caKeyType, caKeyType))
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
forward.pass.cpp | 40 const A ca = A(); local 52 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 54 static_assert(sizeof(test(std::forward<const A>(ca))) == 8, ""); 68 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 70 static_assert(sizeof(test(std::forward<const A>(ca))) == 2, "");
|
move_copy.pass.cpp | 51 const A ca = A(); local 64 A a4 = ca; 68 A a5 = std::move(ca);
|
move_only1.fail.cpp | 49 const move_only ca = move_only(); local
|
move_only2.fail.cpp | 49 const move_only ca = move_only(); local 51 test(ca);
|
move_only3.fail.cpp | 46 const move_only ca = move_only(); local 48 test(std::move(ca));
|
move_only4.fail.cpp | 49 const move_only ca = move_only(); local
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.nonmembers/any.cast/ |
any_cast_reference.pass.cpp | 63 any const& ca = a; local 64 static_assert(std::is_same<decltype(any_cast<int>(ca)), int>::value, ""); 65 static_assert(std::is_same<decltype(any_cast<int const>(ca)), int>::value, ""); 66 static_assert(std::is_same<decltype(any_cast<int const&>(ca)), int const&>::value, ""); 68 //static_assert(std::is_same<decltype(any_cast<int const&&>(ca)), int const&&>::value, ""); 117 any const& ca = a; local 139 Type const& v = any_cast<Type const&>(ca); 142 Type const &cv = any_cast<Type const&>(ca); 155 Type const& v = any_cast<Type const&>(std::move(ca)); 158 Type const &cv = any_cast<Type const&>(std::move(ca)); 179 any const& ca = a; local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/ |
forward.pass.cpp | 40 const A ca = A(); local 43 ((void)ca); // Prevent unused warning 55 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 57 static_assert(sizeof(test(std::forward<const A>(ca))) == 8, ""); 71 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 73 static_assert(sizeof(test(std::forward<const A>(ca))) == 2, "");
|
move_copy.pass.cpp | 41 const A ca = A(); local 54 A a4 = ca; 58 A a5 = std::move(ca);
|
move_only1.fail.cpp | 49 const move_only ca = move_only(); local
|
move_only2.fail.cpp | 49 const move_only ca = move_only(); local 51 test(ca);
|
move_only3.fail.cpp | 46 const move_only ca = move_only(); local 48 test(std::move(ca));
|
move_only4.fail.cpp | 49 const move_only ca = move_only(); local
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/utility.swap/ |
swap_array.pass.cpp | 88 using CA = CopyOnly[42]; 91 static_assert(can_swap<CA&>(), ""); 95 CA ca; local 97 static_assert(!noexcept(std::swap(ca, ca)), "");
|
/toolchain/binutils/binutils-2.25/libiberty/ |
filename_cmp.c | 215 char * ca = lrealpath(a); local 217 int res = filename_eq (ca, cb); 218 free (ca);
|
/external/javassist/src/main/javassist/bytecode/ |
ClassFilePrinter.java | 100 CodeAttribute ca = (CodeAttribute)ai; local 103 out.println("max stack " + ca.getMaxStack() 104 + ", max locals " + ca.getMaxLocals() 105 + ", " + ca.getExceptionTable().size() 108 printAttributes(ca.getAttributes(), out, kind);
|
/external/javassist/src/main/javassist/expr/ |
Handler.java | 112 CodeAttribute ca = iterator.get(); local 116 b.setMaxLocals(ca.getMaxLocals());
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/ |
NewInstanceDebuggee.java | 45 checkClass[][] ca = {{new checkClass()}, {new checkClass()}}; local 49 logWriter.println("DUMP{" + Arrays.toString(checkString) + Arrays.toString(checkInt) + Arrays.toString(ia) + Arrays.toString(ca) + "}");
|