Home
last modified time | relevance | path

Searched defs:ca (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_pointer.pass.cpp42 any const& ca = a; in test_cast_is_noexcept() local
52 any const& ca = a; in test_cast_return_type() local
63 any const* ca = nullptr; in test_cast_nullptr() local
75 any const& ca = a; in test_cast_empty() local
86 any const& ca = a; in test_cast_empty() local
98 any const& ca = a; in test_cast() local
153 std::any const& ca = a; in test_cast_non_copyable_type() local
Dany_cast_reference.pass.cpp71 any const& ca = a; in test_cast_return_type() local
132 any const& ca = a; in test_cast_to_reference() local
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_pointer.pass.cpp33 const std::any& ca = a; in test_cast_is_noexcept() local
43 const std::any& ca = a; in test_cast_return_type() local
54 const std::any *ca = nullptr; in test_cast_nullptr() local
66 const std::any& ca = a; in test_cast_empty() local
77 const std::any& ca = a; in test_cast_empty() local
89 const std::any& ca = a; in test_cast() local
144 std::any const& ca = a; in test_cast_non_copyable_type() local
Dany_cast_reference.pass.cpp57 const std::any& ca = a; in test_cast_return_type() local
117 const std::any& ca = a; in test_cast_to_reference() local
/external/apache-commons-io/src/test/java/org/apache/commons/io/serialization/
DWildcardClassNameMatcherTest.java30 final ClassNameMatcher ca = new WildcardClassNameMatcher("org.foo"); in noPattern() local
38 final ClassNameMatcher ca = new WildcardClassNameMatcher("org*"); in star() local
45 final ClassNameMatcher ca = new WildcardClassNameMatcher("org?apache?something*"); in starAndQuestionMark() local
DRegexpClassNameMatcherTest.java43 final ClassNameMatcher ca = new RegexpClassNameMatcher("foo.*|bar.*"); in testOrPattern() local
51 final ClassNameMatcher ca = new RegexpClassNameMatcher(Pattern.compile("foo.*")); in testSimplePatternFromPattern() local
58 final ClassNameMatcher ca = new RegexpClassNameMatcher("foo.*"); in testSimplePatternFromString() local
/external/rust/crates/webpki/tests/
Dintegration.rs41 let ca = include_bytes!("netflix/ca.der"); in netflix() localVariable
59 let ca = include_bytes!("ed25519/ca.der"); in ed25519() localVariable
76 let ca = include_bytes!("misc/serial_zero.der"); in read_root_with_zero_serial() localVariable
83 let ca = include_bytes!("misc/serial_neg.der"); in read_root_with_neg_serial() localVariable
/external/rust/crates/openssl/src/x509/
Dtests.rs340 let ca = include_bytes!("../../test/root-ca.pem"); in issued() localVariable
341 let ca = X509::from_pem(ca).unwrap(); in issued() localVariable
379 let ca = include_bytes!("../../test/root-ca.pem"); in test_verify_cert() localVariable
380 let ca = X509::from_pem(ca).unwrap(); in test_verify_cert() localVariable
400 let ca = include_bytes!("../../test/alt_name_cert.pem"); in test_verify_fails() localVariable
401 let ca = X509::from_pem(ca).unwrap(); in test_verify_fails() localVariable
419 let ca = include_bytes!("../../test/root-ca.pem"); in test_verify_fails_with_crl_flag_set_and_no_crl() localVariable
420 let ca = X509::from_pem(ca).unwrap(); in test_verify_fails_with_crl_flag_set_and_no_crl() localVariable
560 let ca = include_bytes!("../../test/root-ca.pem"); in test_verify_param_set_time_fails_verification() localVariable
561 let ca = X509::from_pem(ca).unwrap(); in test_verify_param_set_time_fails_verification() localVariable
[all …]
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dbpf_dctcp.c50 struct dctcp *ca) in dctcp_reset()
62 struct dctcp *ca = inet_csk_ca(sk); in BPF_PROG() local
101 struct dctcp *ca = inet_csk_ca(sk); in BPF_PROG() local
112 struct dctcp *ca = inet_csk_ca(sk); in BPF_PROG() local
140 struct dctcp *ca = inet_csk_ca(sk); in dctcp_react_to_loss() local
198 struct dctcp *ca = inet_csk_ca(sk); in BPF_PROG() local
217 const struct dctcp *ca = inet_csk_ca(sk); in BPF_PROG() local
Dbpf_cubic.c94 static inline void bictcp_reset(struct bictcp *ca) in bictcp_reset()
164 struct bictcp *ca = inet_csk_ca(sk); in bictcp_hystart_reset() local
176 struct bictcp *ca = inet_csk_ca(sk); in BPF_PROG() local
192 struct bictcp *ca = inet_csk_ca(sk); in BPF_PROG() local
266 static __always_inline void bictcp_update(struct bictcp *ca, __u32 cwnd, in bictcp_update()
384 struct bictcp *ca = inet_csk_ca(sk); in BPF_STRUCT_OPS() local
403 struct bictcp *ca = inet_csk_ca(sk); in BPF_STRUCT_OPS() local
450 struct bictcp *ca = inet_csk_ca(sk); in hystart_update() local
497 struct bictcp *ca = inet_csk_ca(sk); in BPF_STRUCT_OPS() local
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/
Dv3_purp.c143 int X509_check_purpose(X509 *x, int id, int ca) in X509_check_purpose()
628 int ca) in check_purpose_ssl_client()
652 int ca) in check_purpose_ssl_server()
669 int ca) in check_purpose_ns_ssl_server()
683 static int purpose_smime(const X509 *x, int ca) in purpose_smime()
703 int ca) in check_purpose_smime_sign()
715 int ca) in check_purpose_smime_encrypt()
727 int ca) in check_purpose_crl_sign()
742 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) in ocsp_helper()
751 int ca) in check_purpose_timestamp_sign()
[all …]
/external/cronet/third_party/boringssl/src/crypto/x509v3/
Dv3_purp.c136 int X509_check_purpose(X509 *x, int id, int ca) { in X509_check_purpose()
599 int ca) { in check_purpose_ssl_client()
623 int ca) { in check_purpose_ssl_server()
642 int ca) { in check_purpose_ns_ssl_server()
657 static int purpose_smime(const X509 *x, int ca) { in purpose_smime()
676 int ca) { in check_purpose_smime_sign()
689 int ca) { in check_purpose_smime_encrypt()
702 int ca) { in check_purpose_crl_sign()
715 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) { in ocsp_helper()
724 int ca) { in check_purpose_timestamp_sign()
[all …]
/external/boringssl/src/crypto/x509v3/
Dv3_purp.c136 int X509_check_purpose(X509 *x, int id, int ca) { in X509_check_purpose()
599 int ca) { in check_purpose_ssl_client()
623 int ca) { in check_purpose_ssl_server()
642 int ca) { in check_purpose_ns_ssl_server()
657 static int purpose_smime(const X509 *x, int ca) { in purpose_smime()
676 int ca) { in check_purpose_smime_sign()
689 int ca) { in check_purpose_smime_encrypt()
702 int ca) { in check_purpose_crl_sign()
715 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) { in ocsp_helper()
724 int ca) { in check_purpose_timestamp_sign()
[all …]
/external/javassist/src/main/javassist/
DCtConstructor.java162 CodeAttribute ca = getMethodInfo2().getCodeAttribute(); in isEmpty() local
264 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBeforeBody() local
295 int getStartPosOfBody(CodeAttribute ca) throws CannotCompileException { in getStartPosOfBody()
367 CodeAttribute ca = minfo.getCodeAttribute(); in toMethod() local
384 private static void removeConsCall(CodeAttribute ca) in removeConsCall()
DCtBehavior.java493 CodeAttribute ca = (CodeAttribute)cattr.copy(cp, map); in setBody0() local
616 CodeAttribute ca = methodInfo.getCodeAttribute(); in addLocalVariable() local
676 CodeAttribute ca = methodInfo.getCodeAttribute(); in addParameter2() local
774 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBefore() local
845 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertAfter() local
1108 CodeAttribute ca = methodInfo.getCodeAttribute(); in addCatch() local
1148 int getStartPosOfBody(CodeAttribute ca) throws CannotCompileException { in getStartPosOfBody()
1200 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertAt() local
/external/libcxx/test/std/utilities/utility/forward/
Dforward.fail.cpp36 const A ca = A(); in main() local
43 const A ca = A(); in main() local
Dmove.fail.cpp31 const move_only ca = move_only(); in main() local
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/utility/forward/
Dforward.fail.cpp29 const A ca = A(); in main() local
36 const A ca = A(); in main() local
/external/libsrtp2/crypto/test/
Dcipher_driver.c439 srtp_err_status_t cipher_array_alloc_init(srtp_cipher_t ***ca, in cipher_array_alloc_init()
568 void cipher_array_test_throughput(srtp_cipher_t *ca[], int num_cipher) in cipher_array_test_throughput()
588 srtp_cipher_t **ca = NULL; in cipher_driver_test_array_throughput() local
/external/curl/lib/
Dcurl_addrinfo.c81 struct Curl_addrinfo *ca; in Curl_freeaddrinfo() local
115 struct Curl_addrinfo *ca; in Curl_getaddrinfo_ex() local
571 struct Curl_addrinfo *ca; in Curl_addrinfo_set_port() local
/external/libmpeg2/common/
Dideint_cac.c105 WORD32 ca; in cac_4x8() local
342 WORD32 ca; /* combing artifact result */ in ideint_cac_8x8() local
/external/rust/crates/openssl/src/
Dpkcs12.rs109 ca: Option<Stack<X509>>, field
149 pub fn ca(&mut self, ca: Stack<X509>) -> &mut Self { in ca() method
178 let ca = self in build() localVariable
/external/rust/crates/x509-cert/src/ext/pkix/constraints/
Dbasic.rs18 pub ca: bool, field
/external/eigen/blas/f2c/
Dlsame.c15 logical lsame_(char *ca, char *cb, ftnlen ca_len, ftnlen cb_len) in lsame_()
/external/clang/test/CXX/over/over.built/
Dp25.cpp14 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) { in foo()

12345678910>>...15