Home
last modified time | relevance | path

Searched refs:X (Results 51 – 75 of 416) sorted by relevance

12345678910>>...17

/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput18-1613 /X(\C{3})/8
14 X\x{11234}Y
15 0: X\x{11234}Y
18 0: X\x{11234}Y
21 /X(\C{4})/8
29 /X\C*/8
33 /X\C*?/8
35 0: X
37 /X\C{3,5}/8
51 /X\C{3,5}?/8
[all …]
H A Dtestinput7131 X
564 /^S(\X*)e(\X*)$/8
567 /^\X/8
577 /\X/
585 /\X{2}/
589 /\X+a/
594 /\X+?a/
609 /^\X/8
633 /^\X+/8
822 /\D+\X \d+\X \S+\X \s+\X \W+\X \w+\X \C+\X \R+\X \H+\X \h+\X \V+\X \v+\X a+\X \n+\X .+\X/BZx
[all …]
H A Dtestoutput18-3213 /X(\C{3})/8
14 X\x{11234}Y
16 X\x{11234}YZ
17 0: X\x{11234}YZ
20 /X(\C{4})/8
27 /X\C*/8
31 /X\C*?/8
33 0: X
35 /X\C{3,5}/8
49 /X\C{3,5}?/8
[all …]
H A Dtestoutput617 X
18 0: X
33 X
34 0: X
41 X
42 0: X
49 X
50 0: X
1518 /^(?>\X{2})X/8+
1523 /^\X{2,4}X/8+
[all …]
H A Dtestinput4126 /(?<=(.))X/8
205 > >X Y
397 X
404 X
410 X
414 \x{150}X
417 \x{100}X
422 \x{150}X
425 \x{100}X
433 \x{100}X
[all …]
H A Dtestoutput4251 0: X
254 0: X
347 0: X
360 0: X
683 0: X
685 0: X
693 0: X
695 0: X
697 0: X
705 0: X
[all …]
/PHP-7.2/ext/standard/tests/strings/
H A Dvfprintf_basic9.phpt18 $format11 = "%X";
19 $format22 = "%X %X";
20 $format33 = "%X %X %X";
H A Dprintf_basic9.phpt20 $format11 = "%X";
21 $format22 = "%X %X";
22 $format33 = "%X %X %X";
H A Dsscanf_basic8.phpt15 $format2 = "%X %X %X %X %X %X";
H A Dbug37244.phpt17 string(92) "Implemem][ۜ�UT��Z�X�H[���[��Y�]�۝Z[���\�X�\���]�YHH�\�H[X
/PHP-7.2/ext/reflection/tests/
H A DReflectionClass_getProperty_004.phpt34 class X {
35 public $pubC = "pubC in X";
36 protected $protC = "protC in X";
37 private $privC = "privC in X";
89 showInfo("X::pubC");
90 showInfo("X::protC");
91 showInfo("X::privC");
92 showInfo("X::doesntExist");
242 --- (Reflecting on X::pubC) ---
244 --- (Reflecting on X::protC) ---
[all …]
H A DReflectionClass_isSubclassOf_error1.phpt8 var_dump($rc->isSubclassOf('X'));
12 Fatal error: Uncaught ReflectionException: Class X does not exist in %s:5
14 #0 %s(5): ReflectionClass->isSubclassOf('X')
H A DReflectionClass_isSubclassOf_basic.phpt10 class X implements I {}
12 $classNames = array('A', 'B', 'C', 'I', 'X');
41 Is A a subclass of X?
56 Is B a subclass of X?
71 Is C a subclass of X?
86 Is I a subclass of X?
89 Is X a subclass of A?
92 Is X a subclass of B?
95 Is X a subclass of C?
98 Is X a subclass of I?
[all …]
H A DReflectionClass_getProperty_003.phpt34 class X {
35 static public $pubC = "pubC in X";
36 static protected $protC = "protC in X";
37 static private $privC = "privC in X";
89 showInfo("X::pubC");
90 showInfo("X::protC");
91 showInfo("X::privC");
92 showInfo("X::doesntExist");
242 --- (Reflecting on X::pubC) ---
244 --- (Reflecting on X::protC) ---
[all …]
H A DReflectionObject_getConstants_error.phpt5 class X {
8 $rc = new ReflectionObject(new X);
10 $rc->getConstants('X');
/PHP-7.2/ext/dom/tests/
H A Dbug70558.phpt8 class X extends \DOMDocument {
11 var_dump($this->registerNodeClass('DOMDocument', 'X'));
15 $dom = clone (new X());
/PHP-7.2/sapi/cgi/tests/
H A Dapache_request_headers.phpt33 X-Powered-By: PHP/%s
41 …[X-Test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
45 …[X-_test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
49 …[X-] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
/PHP-7.2/Zend/tests/
H A Dbug41961.phpt5 X::test();
7 /** Class X is related to neither ParentClass nor ChildClass. */
8 class X {
11 $myChild->secret(); // bug - invokes X::secret() instead of ChildClass::secret()
H A Djump04.phpt5 $s = "X";
7 L1: if ($s != "X") {
13 $s .= "X";
/PHP-7.2/tests/classes/
H A Dconstants_basic_006.phpt7 const X = E::A;
20 var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
/PHP-7.2/ext/json/tests/
H A Dbug77843.phpt6 class X implements JsonSerializable {
16 $arr = [new X()];
21 object(X)#1 (1) {
/PHP-7.2/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_2.phpt24 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string
50 getting basename of %s\�e�X�g�}���`�o�C�g�E�p�X33
51 string(%d) "�e�X�g�}���`�o�C�g�E�p�X33"
53 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X33"
/PHP-7.2/Zend/tests/assert/
H A Dexpect_015.phpt23 assert(0 && ($a = function &(array &$a, ?X $b = null) use ($c,&$d) : ?X {
25 const X = 12;
26 const Y = self::X, Z = "aaa";
65 assert(0 && ($a = function &(array &$a, X $b = null) use ($c,&$d) : X {
97 assert(0 && ($a = function &(array &$a, X $b = null) use ($c,&$d) : X {
165 Warning: assert(): assert(0 && ($a = function &(array &$a, ?X $b = null) use($c, &$d): ?X {
167 const X = 12;
168 const Y = self::X, Z = 'aaa';
207 Warning: assert(): assert(0 && ($a = function &(array &$a, X $b = null) use($c, &$d): X {
247 Warning: assert(): assert(0 && ($a = function &(array &$a, X $b = null) use($c, &$d): X {
/PHP-7.2/ext/phar/tests/cache_list/files/
H A Dfrontcontroller3.phar12 v���������������������a.php���nWX�����ж���������a.jpg���nWX�����ж���������a.phps���n…
H A Dfrontcontroller4.phar12 v���������������������a.php����WX�����ж���������a.jpg����WX�����ж���������a.phps����…

Completed in 98 milliseconds

12345678910>>...17