Home
last modified time | relevance | path

Searched refs:y (Results 251 – 275 of 717) sorted by path

1...<<11121314151617181920>>...29

/php-src/ext/date/tests/
H A Didate_variation4.phpt19 'Year (1 or 2 digits)' => 'y',
H A Didate_variation6.phpt9 $format = 'y';
H A Dstrftime_variation5.phpt14 'Year as decimal number without a century' => "%y",
H A Dtest-parse-from-format.phpt70 string(16) "D, d M y H:i:s O"
81 string(16) "l, d-M-y H:i:s T"
92 string(16) "D, d M y H:i:s O"
/php-src/ext/dom/tests/
H A Dbug77686.phpt9 $doc->loadHTML('<html id="htmlelement"><body id="x">before<div id="y">hello</div>after</body></html…
11 $div = $doc->getElementById('y');
12 var_dump($doc->getElementById('y')->textContent);
16 var_dump($doc->getElementById('y'));
20 var_dump($doc->getElementById('y')->textContent);
H A Dbug80602_4.phpt21 $bar->nodeValue = "y";
H A Dgh12455.phpt11 $element1 = $doc->createElementNS('http://test', 'b:y');
31 <a:x xmlns:a="http://test"><b:y xmlns:b="http://test"><b:z/></b:y></a:x>
/php-src/ext/dom/tests/compareDocumentPosition/
H A Dattribute_order_different_element.phpt13 <inner a="b" x="y" />
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_UTF16BE_BOM.phpt31 %0<%0b%0o%0d%0y%0>%0�%0<%0/%0b%0o%0d%0y%0>%0<%0/%0h%0t%0m%0l%0>
H A DHTMLDocument_UTF16LE_BOM.phpt31 %0<%0b%0o%0d%0y%0>%0�%0<%0/%0b%0o%0d%0y%0>%0<%0/%0h%0t%0m%0l%0>%0
/php-src/ext/dom/tests/modern/html/parser/
H A Dpredefined_namespaces.phpt16 <rect id="rectangle" x="10" y="20" width="90" height="60">
54 Attribute: y (NONE)
69 <rect id="rectangle" x="10" y="20" width="90" height="60">
89 <rect id="rectangle" x="10" y="20" width="90" height="60">
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_attribute_ns.phpt11 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/XML/1998/namespace", "y:id"));
H A DHTMLDocument_serialize_ns_imported_02.phpt28 <test xmlns="x:y"/>
41 <test xmlns="x:y"/>
52 <test xmlns="x:y"></test>
H A DHTMLDocument_serialize_ns_imported_03.phpt28 <test xmlns="x:y"/>
H A DHTMLDocument_serialize_ns_imported_04.phpt28 <test xmlns="x:y"/>
H A DHTMLDocument_serialize_ns_imported_05.phpt28 <test xmlns="x:y"/>
41 <test xmlns="x:y"/>
52 <test xmlns="x:y"></test>
H A DHTMLDocument_serialize_ns_imported_06.phpt28 <test xmlns="x:y"/>
40 <test xmlns="x:y"/>
49 <test xmlns="x:y"></test>
/php-src/ext/dom/tests/modern/spec/
H A DElement_setAttributeNS.phpt33 $container->setAttributeNS("urn:a", "y:foo", "2");
58 <container y:foo="2"></container>
59 Attr: y:foo
60 string(1) "y"
61 string(5) "y:foo"
H A DNode_lookupPrefix.phpt14 <p xmlns:y="test">
60 string(1) "y"
62 string(1) "y"
H A Dclone_conflicting_namespace_prefix.phpt21 $dom->documentElement->firstElementChild->setAttributeNS("urn:y", "a:foo", "bar");
38 <a:root1 xmlns:a="urn:a" xmlns:ns1="urn:y" ns1:foo="bar">
51 string(5) "urn:y"
52 <a:root1 xmlns:a="urn:a" xmlns:ns1="urn:y" ns1:foo="bar">
H A Dxml_serialize_formatting.phpt14 '<root><a/><foo><bar><?foo <x><y/></x> ?><baz/></bar></foo></root>',
61 <?foo <x><y/></x> ?>
/php-src/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);
H A D008.phpt19 $a = $ffi->new("struct {int x,y;}");
H A D020.phpt12 $p = $ffi->new("struct {int x; const int y;}");
14 $p->y = 1;
20 $p = $ffi->new("struct {const int x; int y;}");
21 $p->y = 1;
28 $p = $ffi->new("const struct {int x; int y;}");
66 FFI\Exception: Attempt to assign read-only field 'y'
H A D040.phpt33 $y = FFI::cdef()->new("int[2]");
34 $y[0] = 6;
35 var_dump($y[0]);
36 var_dump(FFI::typeof($y[0]));
38 $p = FFI::addr($y[0]);
41 var_dump($y[0]);
42 var_dump(FFI::sizeof($y[0]));
43 var_dump(FFI::alignof($y[0]));
44 FFI::memset($y[0], ord("b"), 4);
45 var_dump(FFI::string($y[0], 4));
[all …]

Completed in 83 milliseconds

1...<<11121314151617181920>>...29