/php-src/ext/dom/tests/modern/spec/ |
H A D | Element_removeAttributeNS.phpt | 17 $body->removeAttributeNS(NULL, "align"); 21 $body->removeAttributeNS("", "align"); 80 <body align="foo" foo:bar="baz"></body> 81 <body align="foo" foo:bar="baz"></body> 82 <body align="foo"></body> 83 <body align="foo"></body> 84 <body align="foo" foo:bar="baz"></body> 85 <body align="foo" foo:bar="baz"></body> 88 <body align="foo" foo:bar="baz" prefix:local="A"></body> 90 <body align="foo" foo:bar="baz"></body> [all …]
|
H A D | Element_getAttributeNS.phpt | 8 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 14 var_dump($body->getAttributeNS(NULL, "align")); 15 var_dump($body->getAttributeNS("", "align"));
|
H A D | Element_hasAttributeNS.phpt | 8 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 14 var_dump($body->hasAttributeNS(NULL, "align")); 15 var_dump($body->hasAttributeNS("", "align"));
|
H A D | Element_getAttributeNodeNS.phpt | 10 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 16 var_dump($body->getAttributeNodeNS(NULL, "align")->textContent); 17 var_dump($body->getAttributeNodeNS("", "align")->textContent);
|
H A D | Element_getAttribute.phpt | 10 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 12 var_dump($body->getAttribute("align"));
|
H A D | Element_getAttributeNode.phpt | 10 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 12 var_dump($body->getAttributeNode("align")->textContent);
|
H A D | Element_hasAttribute.phpt | 10 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><body align="foo" foo:bar="baz"></b… 12 var_dump($body->hasAttribute("align"));
|
/php-src/ext/dom/tests/modern/css_selectors/ |
H A D | namespaces.phpt | 12 <container align="left"/> 27 test_helper($dom, 'container[align]'); 39 --- Selector: container[align] --- 40 <container align="left" foo:bar="baz" xmlns:a="urn:a" a:bar="baz"/> 42 <container align="left" foo:bar="baz" xmlns:a="urn:a" a:bar="baz"/>
|
/php-src/ext/standard/tests/strings/ |
H A D | strnatcmp_leftalign.phpt | 2 Test strnatcmp() function : left align, whitespace, digits 7 echo "-- Testing strnatcmp() function whitespace, left-align, digit --\n"; 19 -- Testing strnatcmp() function whitespace, left-align, digit --
|
/php-src/ext/pcre/tests/ |
H A D | 006.phpt | 9 $text = '[CODE]<td align="$stylevar[right]">[/CODE]'; 21 string(58) "[CODE]<td align="$stylevar[right]">[/CODE]" 23 string(58) "[CODE]<td align="$stylevar[right]">[/CODE]"
|
/php-src/ext/xmlwriter/tests/ |
H A D | xmlwriter_toMemory_normal_usage.phpt | 10 $writer->writeAttribute("align", "left"); 17 <root align="left"><!--hello--></root>
|
H A D | xmlwriter_toStream_normal_usage.phpt | 12 $writer->writeAttribute("align", "left"); 27 <root align="left"><!--hello--></root>
|
H A D | xmlwriter_toStream_invalidate_stream.phpt | 13 $writer->writeAttribute("align", "left");
|
/php-src/ext/dom/tests/ |
H A D | xpath_evaluate_basic_types.phpt | 9 $dom->loadHTML('<p align="center">foo</p>'); 12 var_dump($xpath->evaluate("string(//p/@align)"));
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromString_without_body.phpt | 8 $dom = Dom\HTMLDocument::createFromString('<!doctype html><p align="\'">foo '</p>'); 13 <!DOCTYPE html><html><head></head><body><p align="'">foo '</p></body></html>
|
/php-src/ext/ffi/tests/ |
H A D | 022.phpt | 15 function test_align($align, $type) { 16 if (FFI::alignof(FFI::cdef()->new($type)) !== $align) { 17 echo "FAIL: alignof($type) != $align\n"; 68 test_size(16, "struct __declspec(align(16)) {char a; uint32_t b;}"); 69 test_align(16, "struct __declspec(align(16)) {char a; uint32_t b;}");
|
/php-src/ext/pcre/pcre2lib/sljit/ |
H A D | sljitUtils.c | 151 sljit_sw align; in get_page_alignment() local 155 align = sysconf(_SC_PAGESIZE); in get_page_alignment() 157 align = getpagesize(); in get_page_alignment() 160 if (align < 0) in get_page_alignment() 161 align = 4096; in get_page_alignment() 162 sljit_page_align = (sljit_uw)align - 1; in get_page_alignment()
|
/php-src/Zend/asm/ |
H A D | make_ppc64_sysv_elf_gas.S | 73 .align 2 80 .align 3 86 .align 2 95 .align 2
|
H A D | jump_ppc64_sysv_elf_gas.S | 73 .align 2 80 .align 3 86 .align 2 95 .align 2
|
H A D | make_x86_64_sysv_macho_gas.S | 29 .align 8
|
H A D | make_s390x_sysv_elf_gas.S | 47 .align 8
|
/php-src/ext/hash/sha3/generic32lc/ |
H A D | align.h | 27 #define ALIGN(x) __declspec(align(x))
|
/php-src/ext/hash/sha3/generic64lc/ |
H A D | align.h | 27 #define ALIGN(x) __declspec(align(x))
|
/php-src/ext/standard/tests/general_functions/ |
H A D | 001.phpt | 15 echo("sprintf padding and align test: "); 58 sprintf padding and align test: passed
|
/php-src/ext/dom/tests/compareDocumentPosition/ |
H A D | contains_attribute_direct_descendent.phpt | 11 <container align="center"/>
|