Home
last modified time | relevance | path

Searched refs:y (Results 251 – 275 of 634) sorted by relevance

1...<<11121314151617181920>>...26

/PHP-8.1/ext/opcache/tests/jit/
H A Dfetch_dim_r_012.phpt13 $a1[] = &$y;
14 $a2["$a1[$a] "] = $a += $y;
H A Dassign_obj_op_001.phpt14 (function(){$this->y.=[];})->call($test);
17 Warning: Undefined property: Test::$y in %sassign_obj_op_001.php on line 6
H A Dmul_009.phpt12 $x[~"$y"] *= 1;
15 Warning: Undefined variable $y in %smul_009.php on line 3
/PHP-8.1/ext/soap/tests/
H A Dserver002.phpt7 function Add($x,$y) {
8 return $x+$y;
25 <y xsi:type="xsd:int">33</y>
H A Dserver011.phpt11 function Add($x,$y) {
12 return $x+$y;
/PHP-8.1/ext/xml/
H A Dcompat.c96 int y = 0; in _start_element_handler_ns() local
100 …er->h_start_ns(parser->user, (const XML_Char *) namespaces[y], (const XML_Char *) namespaces[y+1]); in _start_element_handler_ns()
101 y += 2; in _start_element_handler_ns()
103 y = 0; in _start_element_handler_ns()
142 att_name = (char *) attributes[y++]; in _start_element_handler_ns()
144 y++; in _start_element_handler_ns()
145 att_value = (char *)attributes[y++]; in _start_element_handler_ns()
176 if (attributes[y+1] != NULL) { in _start_element_handler_ns()
177 _qualify_namespace(parser, attributes[y] , attributes[y + 2], &qualified_name_attr); in _start_element_handler_ns()
182 attrs[z + 1] = xmlStrndup(attributes[y + 3] , (int) (attributes[y + 4] - attributes[y + 3])); in _start_element_handler_ns()
[all …]
/PHP-8.1/ext/spl/tests/
H A DarrayObject___construct_basic7.phpt5 $y = 2;
7 $a = array($y, $x);
/PHP-8.1/ext/date/tests/
H A Dbug76032.phpt11 var_dump($d->diff($a)->y);
18 var_dump($d->diff($a)->y);
H A Ddate-parse-by-format001.phpt6 print_r( date_parse_from_format( '!m/d/y', $date ) );
7 print_r( date_parse_from_format( '!m*d*y', $date ) );
H A Ddate_basic1.phpt13 var_dump( date("m.d.y", $timestamp) );
16 var_dump( date('h-i-s, j-m-y, it is w Day', $timestamp) );
17 var_dump( date('\i\t \i\s \t\h\e jS \d\a\y.', $timestamp) );
H A Ddate_format_basic1.phpt12 var_dump( date_format($date, "m.d.y") );
15 var_dump( date_format($date, 'h-i-s, j-m-y, it is w Day') );
16 var_dump( date_format($date, '\i\t \i\s \t\h\e jS \d\a\y.') );
/PHP-8.1/ext/ffi/tests/
H A D002.phpt63 typedef struct tag1 {int x; int y;} type37;
64 typedef union tag2 {int x; int y;} type38;
65 typedef struct {int x, y; int z;} type39;
66 typedef struct {unsigned int x:8, y:8;} type40;
67 typedef struct {unsigned int x:8, :8, y:8;} type41;
113 static void f7(int x, int y);
114 static void f8(int x, int y, ...);
126 typedef int (*type71[3])(int *x, int *y);
/PHP-8.1/Zend/tests/fibers/
H A Dgh10340-003.phpt14 $y = 'a';
15 $$y = Fiber::getCurrent();
/PHP-8.1/ext/json/
H A DMakefile.frag4 $(srcdir)/json_parser.tab.c $(srcdir)/json_parser.tab.h: $(srcdir)/json_parser.y
5 @$(YACC) $(YFLAGS) --defines -l $(srcdir)/json_parser.y -o $(srcdir)/json_parser.tab.c
/PHP-8.1/ext/pdo_sqlite/tests/
H A Dpdo_fetch_func_001.phpt16 $st->fetchAll(PDO::FETCH_FUNC, function($x, $y) use ($st) { var_dump($st); print "data: $x, $y\n"; …
67 static public function test($x, $y) {
68 return $x .'---'. $y;
71 private function test2($x, $y) {
75 public function test3($x, $y) {
76 return $x .'==='. $y;
/PHP-8.1/ext/sodium/tests/
H A Dcrypto_secretbox.phpt13 $y = sodium_crypto_secretbox_open("\0" . $a, $nonce, $key);
14 var_dump($y);
/PHP-8.1/ext/standard/tests/serialize/
H A Dbug68594.phpt17 $y = unserialize($z);
18 $z = serialize($y);
H A Dbug45706.phpt13 $y = unserialize($s);
14 var_dump($y);
/PHP-8.1/ext/standard/tests/strings/
H A Ducwords_variation4.phpt28 "P't'y 't it's ",
45 "/test/r\test\\ucwords\t\y\y\\u\3 \yy\ /uu/",
84 string(14) "P't'y 't It's "
117 string(37) "/test/r Est\ucwords \y\y\u \yy\ /uu/"
/PHP-8.1/ext/reflection/tests/
H A DReflectionClass_getModifierNames_basic.phpt26 abstract class y
49 dump_methodModifierNames('y');
124 string(4) "y::a"
131 string(4) "y::b"
/PHP-8.1/Zend/tests/
H A Dbug36759.phpt22 $y = new Bar();
23 $x = new Foo($y);
/PHP-8.1/Zend/tests/closures/
H A Dclosure_from_callable_gc.phpt9 public function method2($y) {
11 $x = $y;
/PHP-8.1/ext/gd/libgd/
H A Dgd_matrix.c31 double y = src->y; in gdAffineApplyToPointF() local
32 dst->x = x * affine[0] + y * affine[2] + affine[4]; in gdAffineApplyToPointF()
33 dst->y = x * affine[1] + y * affine[3] + affine[5]; in gdAffineApplyToPointF()
/PHP-8.1/ext/xmlreader/tests/
H A Dbug42139.phpt12 <!ENTITY x "y">
28 3, #text, y
/PHP-8.1/Zend/tests/attributes/
H A D015_property_group.phpt9 public $x, $y;
17 $rp2 = new ReflectionProperty('C', 'y');

Completed in 63 milliseconds

1...<<11121314151617181920>>...26