Home
last modified time | relevance | path

Searched refs:ca (Results 1 – 25 of 76) sorted by relevance

1234

/PHP-7.2/ext/standard/
H A Dstrnatcmp.c94 unsigned char ca, cb; in strnatcmp_ex() local
108 ca = *ap; cb = *bp; in strnatcmp_ex()
112 ca = *++ap; in strnatcmp_ex()
122 while (isspace((int)(unsigned char)ca)) { in strnatcmp_ex()
123 ca = *++ap; in strnatcmp_ex()
131 if (isdigit((int)(unsigned char)ca) && isdigit((int)(unsigned char)cb)) { in strnatcmp_ex()
132 fractional = (ca == '0' || cb == '0'); in strnatcmp_ex()
146 ca = *ap; cb = *bp; in strnatcmp_ex()
151 ca = toupper((int)(unsigned char)ca); in strnatcmp_ex()
155 if (ca < cb) in strnatcmp_ex()
[all …]
/PHP-7.2/Zend/tests/
H A Dclosure_038.phpt28 $ca = $a->getIncrementor();
29 var_dump($ca());
33 $cb = $ca->bindTo($b, $b);
34 $cb2 = Closure::bind($ca, $b, $b);
40 $cb = $ca->bindTo($b, 'B');
41 $cb2 = Closure::bind($ca, $b, 'B');
45 $cb = $ca->bindTo($b, NULL);
H A Dclosure_039.phpt28 $ca = $a->getIncrementor();
29 var_dump($ca());
33 $cb = $ca->bindTo($b, $b);
34 $cb2 = Closure::bind($ca, $b, $b);
40 $cb = $ca->bindTo($b, 'B');
41 $cb2 = Closure::bind($ca, $b, 'B');
45 $cb = $ca->bindTo($b, NULL);
H A Dclosure_036.phpt21 $ca = $a->getIncrementor();
22 $cb = $ca->bindTo($b);
23 $cb2 = Closure::bind($ca, $b);
25 var_dump($ca());
H A Dclosure_040.phpt24 $ca = $a->getIncrementor();
27 $ca->bindTo($a, array());
28 $ca->bindTo(array(), 'A');
29 $ca->bindTo($a, array(), "");
30 $ca->bindTo();
/PHP-7.2/ext/reflection/tests/
H A Dbug43926.phpt22 $ca = $ra->newInstance();
27 print("Is? A ". ($ra->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof A) ? …
28 print("Is? C ". ($rc->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof C) ? …
29 print("Is? D ". ($rd->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof D) ? …
30 print("Is? E ". ($re->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof E) ? …
/PHP-7.2/ext/openssl/tests/
H A DCertificateGenerator.inc8 private $ca;
57 $this->ca = openssl_csr_sign(
75 openssl_x509_export($this->ca, $output);
82 openssl_x509_export_to_file($this->ca, $file);
98 $this->ca,
H A Dbug65538_003.phpt15 $cacertFile = 'bug65538_003-ca.pem';
16 $cacertPhar = __DIR__ . DIRECTORY_SEPARATOR . 'bug65538_003-ca.phar.tmp';
74 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug65538_003-ca.phar.tmp');
H A Dbug69215.phpt16 'cafile' => __DIR__ . '/bug69215-ca.pem',
34 'cafile' => __DIR__ . '/bug69215-ca.pem',
H A Dbug65538_002.phpt11 // We don't get any ca list from php.net but it does not matter as we
13 // We can't use http://curl.haxx.se/ca/cacert.pem for this test
H A Dstream_verify_peer_name_002.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_verify_peer_name_002-ca.pem.tmp';
55 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_verify_peer_name_002-ca.pem.tmp');
H A Dcapture_peer_cert_001.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'capture_peer_cert_001-ca.pem.tmp';
54 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'capture_peer_cert_001-ca.pem.tmp');
H A Dstream_crypto_flags_001.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_001-ca.pem.tmp';
60 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_001-ca.pem.tmp');
H A Dbug65538_001.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001-ca.pem.tmp';
67 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001-ca.pem.tmp');
H A Dstream_verify_peer_name_003.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_verify_peer_name_003-ca.pem.tmp';
54 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_verify_peer_name_003-ca.pem.tmp');
H A Dbug48182.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug48182-ca.pem.tmp';
62 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug48182-ca.pem.tmp');
H A Dbug54992.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug54992-ca.pem.tmp';
56 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug54992-ca.pem.tmp');
H A Dstream_crypto_flags_003.phpt12 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_003-ca.pem.tmp';
68 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_003-ca.pem.tmp');
H A Dsession_meta_capture.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'session_meta_capture-ca.pem.tmp';
71 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'session_meta_capture-ca.pem.tmp');
H A Dstream_crypto_flags_002.phpt11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_002-ca.pem.tmp';
67 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_002-ca.pem.tmp');
/PHP-7.2/tests/classes/
H A Dconstants_basic_003.phpt10 const ca = A::MY_CONST;
21 var_dump(B::ca);
/PHP-7.2/ext/spl/tests/
H A Diterator_015.phpt32 $arr = array("a", array("ba", array("bba", "bbb"), array(array("bcaa"))), array("ca"), "d");
58 0=>ca
H A Diterator_016.phpt45 $arr = array("a", array("ba", array("bba", "bbb"), array(array("bcaa"))), array("ca"), "d");
72 0=>ca
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput7472 \x{6ca}
473 0: \x{6ca}
493 0: \x{6ca}
505 0: \x{6ca}\x{a6c}
512 \x{6ca}
513 0: \x{6ca}
612 \x{6ca}
613 0: \x{6ca}
631 0: \x{6ca}
650 \x{6ca}
[all …]
H A Dtestinput7228 \x{6ca}
235 ABCD1234\x{6ca}\x{a6c}\x{10a7}_
240 \x{6ca}\x{a6c}\x{10a7}_
243 ABCD1234\x{6ca}\x{a6c}\x{10a7}_
249 \x{6ca}\x{a6c}\x{10a7}_
254 \x{6ca}
322 \x{6ca}
333 \x{6ca}\x{a6c}\x{10a7}_
339 A_B12\x{6ca}\x{a6c}\x{10a7}
342 \x{6ca}\x{a6c}\x{10a7}_
[all …]

Completed in 44 milliseconds

1234