/php-src/ext/dom/lexbor/patches/ |
H A D | 0004-Remove-unused-upper-case-tag-static-data.patch | 4 Subject: [PATCH 4/6] Remove unused upper case tag static data 7 source/lexbor/tag/res.h | 2 ++ 8 source/lexbor/tag/tag.c | 2 ++ 11 diff --git a/source/lexbor/tag/res.h b/source/lexbor/tag/res.h 13 --- a/source/lexbor/tag/res.h 14 +++ b/source/lexbor/tag/res.h 31 diff --git a/source/lexbor/tag/tag.c b/source/lexbor/tag/tag.c 33 --- a/source/lexbor/tag/tag.c 34 +++ b/source/lexbor/tag/tag.c
|
/php-src/ext/dom/tests/ |
H A D | gh8996.phpt | 27 $dom->loadXML('<tag>value</tag>'); 51 $dom->loadXML('<tag>value</tag>'); 74 $dom->loadXML('<tag>value</tag>'); 85 <tag>value</tag> 90 <tag>value</tag> 96 <tag>value</tag> 101 <tag>value</tag> 107 <tag>value</tag> 114 <tag>value</tag> 120 <tag>value</tag>
|
H A D | DOMDocument_loadXML_error1.phpt | 8 This test verifies the method detects an opening and ending tag mismatch 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
H A D | DOMDocument_load_error1.phpt | 8 This test verifies the method detects an opening and ending tag mismatch 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
/php-src/ext/openssl/tests/ |
H A D | cipher_tests.inc | 8 'tag' => '1fc64fbfaccd', 17 'tag' => '484392fbc1b09951', 31 'tag' => '2024931d73bca480c24a24ece6b6c2bf', 42 'tag' => '58e2fccefa7e3061367f1d57a4e7455a', 49 'tag' => 'ab6e47d42cec13bdf53a67b21257bddf', 56 'tag' => '4d5c2af327cd64a62cf35abd2ba6fab4', 70 'tag' => '5bc94fbc3221a5db94fae95ae7121a47', 84 'tag' => '3612d2e79e3b0785561be14aaca2fccb', 101 'tag' => '619cc5aefffe0bfa462af43c1699d050', 119 'tag' => '785407BFFFC8AD9EDCC5520AC9111EE6', [all …]
|
H A D | openssl_encrypt_chacha20_poly1305.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (max is 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20)); 30 // Failing when no tag supplied 44 Warning: openssl_encrypt(): Retrieving verification tag failed in %s on line %d 47 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_encrypt_ccm.phpt | 20 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 22 var_dump($test['tag'] === $tag); 27 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 29 // Test setting different IV length and tag length 30 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 10), $tag, '', 14)); 31 var_dump(strlen($tag)); 33 // Test setting invalid tag length 34 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 16), $tag, '', 1024));
|
H A D | openssl_encrypt_gcm.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (max is 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 32), $tag, '', 20)); 30 // Failing when no tag supplied 56 Warning: openssl_encrypt(): Retrieving verification tag failed in %s on line %d 59 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_encrypt_ocb.phpt | 19 $test['iv'], $tag, $test['aad'], strlen($test['tag'])); 21 var_dump($test['tag'] === $tag); 25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, '')); 27 // Failing to retrieve tag (must be at most 16 bytes) 28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20)); 30 // Failing when no tag supplied 56 Warning: openssl_encrypt(): Setting tag length for AEAD cipher failed in %s on line %d 59 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
|
H A D | openssl_decrypt_ocb.phpt | 19 $test['iv'], $test['tag'], $test['aad']); 25 '', $test['tag'], $test['aad'])); 29 str_repeat('x', 32), $test['tag'], $test['aad'])); 33 $test['iv'], $test['tag'])); 35 // failed because wrong tag
|
/php-src/ext/xml/tests/ |
H A D | xml_parse_into_struct_variation.phpt | 53 [tag] => MAIN 60 [tag] => PARA 67 [tag] => NOTE 75 [tag] => PARA 82 [tag] => PARA 89 [tag] => NOTE 97 [tag] => PARA 104 [tag] => MAIN
|
H A D | xml007.phpt | 14 function startHandler($parser,$tag,$attr) 16 var_dump($tag,$attr); 19 function endHandler($parser,$tag) 21 var_dump($tag); 40 ["tag"]=>
|
H A D | bug50576.phpt | 64 [tag] => LISTOFAWARDS 78 [tag] => COUNT 87 [tag] => TOTAL 95 [tag] => COUNT 104 [tag] => COUNT 111 [tag] => LISTOFAWARDS 120 [tag] => LISTOFAWARDS
|
H A D | xml011.phpt | 37 [tag] => TEXT 45 [tag] => B 52 [tag] => TEXT 60 [tag] => TEXT
|
/php-src/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 13 $tag = 'en_US'; 15 if (!enchant_broker_dict_exists($r, $tag)) 16 die('skip, no dictionary for ' . $tag . ' tag'); 21 $tag = 'en_US'; 24 $d = enchant_broker_request_dict($r, $tag);
|
/php-src/ext/exif/tests/ |
H A D | bug76557.phpt | 11 Warning: exif_read_data(bug76557.jpg): Process tag(x010F=Make): Illegal format code 0x3030, suppose… 13 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 15 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 17 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 19 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 21 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 23 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 25 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 27 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,… 29 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x3030,…
|
H A D | bug72094.phpt | 14 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 16 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 18 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 20 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 22 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 24 Warning: exif_read_data(bug72094_1.jpg): Process tag(x8298=Copyright): Illegal format code 0x3030, … 38 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 40 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 42 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… 44 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTag): Illegal format code 0x303… [all …]
|
H A D | bug54002.phpt | 2 Bug #54002 (crash on crafted tag) 14 Warning: exif_read_data(bug54002_1.jpg): Process tag(x0205=UndefinedTag): Illegal byte_count in %sb… 16 Warning: exif_read_data(bug54002_2.jpg): Process tag(x0205=UndefinedTag): Illegal byte_count in %sb…
|
/php-src/ext/fileinfo/libmagic/ |
H A D | der.c | 153 uint32_t tag; in gettag() local 158 tag = c[(*p)++] & 0x1f; in gettag() 160 if (tag != 0x1f) in gettag() 161 return tag; in gettag() 167 tag = tag * 128 + c[(*p)++] - 0x80; in gettag() 171 return tag; in gettag() 229 if (tag < DER_TAG_LAST) in der_tag() 242 switch (tag) { in der_data() 310 uint32_t tag, tlen; in der_cmp() local 316 if (tag == DER_BAD) { in der_cmp() [all …]
|
/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Document_body_setter_errors.phpt | 23 echo "--- Wrong element tag in right namespace ---\n"; 26 echo "--- Right element tag in wrong namespace ---\n"; 29 echo "--- Right element tag in no namespace ---\n"; 45 The new body must either be a body or a frameset tag 47 --- Wrong element tag in right namespace --- 49 The new body must either be a body or a frameset tag 51 --- Right element tag in wrong namespace --- 55 --- Right element tag in no namespace ---
|
/php-src/ext/standard/tests/image/ |
H A D | iptcembed_002.phpt | 62 foreach ($tags as $tag => $string) { $rec=$tag[0]; $tag = substr($tag, 2); $iptc .= iptc_make_tag($… 89 foreach ($tags as $tag => $string) { 90 #check if tag exists 91 if (!isset($iptc_data_from_created_image[$tag])) { 92 echo "error iptc tag $tag not found".PHP_EOL; 96 if ($iptc_data_from_created_image[$tag][0]!=$string) { 97 … echo "error tag $tag : bad value ($string != ".$iptc_data_from_created_image[$tag][0].")".PHP_EOL;
|
/php-src/ext/dom/tests/modern/html/serializer/ |
H A D | HTMLDocument_serialize_text_02.phpt | 10 …ch (["style", "script", "xmp", "iframe", "noembed", "noframes", "plaintext", "noscript"] as $tag) { 11 $tag = $body->appendChild($dom->createElement($tag)); 12 $tag->textContent = "&\"<>\xc2\xa0 foobar";
|
H A D | HTMLDocument_serialize_text_03.phpt | 10 …ch (["style", "script", "xmp", "iframe", "noembed", "noframes", "plaintext", "noscript"] as $tag) { 11 $tag = $body->appendChild($dom->createElementNS("some:ns", $tag)); 12 $tag->textContent = "&\"<>\xc2\xa0 foobar";
|
/php-src/ext/dom/ |
H A D | serialize_common.h | 24 static zend_always_inline bool dom_local_name_compare_ex(const xmlNode *node, const char *tag, size… in dom_local_name_compare_ex() argument 26 return name_length == tag_length && memcmp((const char *) node->name, tag, name_length + 1) == 0; in dom_local_name_compare_ex()
|
/php-src/tests/lang/ |
H A D | short_tags.001.phpt | 7 echo "Used a short tag\n"; 11 Used a short tag
|