Home
last modified time | relevance | path

Searched refs:U (Results 26 – 50 of 204) sorted by relevance

123456789

/php-src/ext/mbstring/tests/
H A Dcp932_encoding.phpt33 /* U+00A2 is CENT SIGN; convert to FULLWIDTH CENT SIGN */
35 /* U+00A3 is POUND SIGN; convert to FULLWIDTH POUND SIGN */
37 /* U+00A5 is YEN SIGN; convert to 0x5C, which has conflicting uses
42 /* We map the JIS X 0208 FULLWIDTH TILDE to U+FF5E (FULLWIDTH TILDE)
49 * but when converting Unicode to CP932, we also accept U+2016
52 /* We map the JIS X 0208 NOT SIGN to U+FFE2 (FULLWIDTH NOT SIGN),
56 /* U+00AF is MACRON; convert to FULLWIDTH MACRON */
59 /* U+203E is OVERLINE; convert to 0x7E, which has conflicting uses
114 * Instead of mapping U+00A5 and U+203E to the single bytes 0x5C and 07E
118 /* U+00A5 is YEN SIGN; convert to FULLWIDTH YEN SIGN */
[all …]
H A Dbug52981.phpt16 test("\xF0\x90\x90\xB8");// U+10438 DESERET SMALL LETTER H (added in 3.1.0, March 2001)
18 test("\xE2\xB0\xB0"); // U+2C30 GLAGOLITIC SMALL LETTER AZU (added in 4.1.0, March 2005)
19 test("\xD4\xA5"); // U+0525 CYRILLIC SMALL LETTER PE WITH DESCENDER (added in 5.2.0, October 2009)
H A Dutf8_mobile_encodings.phpt103 die("Expected U+" . bin2hex($cp) . " to be the same in UTF-8 and " . $encoding);
107 // In Docomo Shift-JIS, we have mappings for U+FEE16 up to U+FEE25 and
108 // then U+FEE29-U+FEE2B, U+FEE2D-U+FEE33
110 // one emoji which converts to U+25EA (SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK)
113 // accept U+FEE26 and convert it to the same SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK emoji
114 // So our mapping for U+FEE26 is not reversible
117 // Similar for U+FEE27, U+FEE28, U+FEE2C
H A Dcp51932_encoding.phpt25 if (sscanf($line, '<U%x> \x%x\x%x', $codepoint, $byte1, $byte2) >= 2) {
42 /* We map the JIS X 0208 FULLWIDTH TILDE to U+FF5E (FULLWIDTH TILDE)
43 * But when converting Unicode to CP51932, we also accept U+301C (WAVE DASH) */
45 /* We map the JIS X 0208 MINUS SIGN to U+FF0D (FULLWIDTH HYPHEN-MINUS SIGN),
46 * but when converting Unicode to CP51932, we also accept U+2212 (MINUS SIGN) */
48 /* We map the JIS X 0208 PARALLEL TO symbol to U+2225 (PARALLEL TO),
49 * but when converting Unicode to CP51932, we also accept U+2016
91 /* U+00A5 is YEN SIGN; convert to FULLWIDTH YEN SIGN */
93 /* U+203E is OVERLINE; convert to FULLWIDTH MACRON */
95 /* U+00AF is MACRON; convert to FULLWIDTH MACRON */
H A Dsjismac_encoding.phpt58 /* While Shift-JIS 0x815C normally corresponds to U+2015 (HORIZONTAL BAR),
59 * for MacJapanese we convert 0x815C to U+2014 (EM DASH)
62 * However, when converting Unicode -> MacJapanese, we accept both U+2014
63 * and U+2015 */
66 /* Convert U+203E (OVERLINE) to 0x8150 (FULLWIDTH MACRON) */
68 /* And also U+00AF (MACRON) */
71 /* Convert U+FF5E (FULLWIDTH TILDE) to 0x8160 (WAVE DASH) */
H A Deucjp_2004_encoding.phpt41 /* Convert 0xA1B1 to U+FFE3 (FULLWIDTH MACRON), not U+203E (OVERLINE) */
45 /* Convert 0xA1EF to U+FFE5 (FULLWIDTH YEN SIGN), not U+00A5 (YEN SIGN) */
49 /* Convert U+00A5 (YEN SIGN) to 0x5C; that is one of the single bytes
H A Dcasemapping.phpt30 // Capital I with dot (U+0130)
38 // Lower i without dot (U+0131)
46 // Capital I without dot (U+0049)
54 // Lower i with dot (U+0069)
/php-src/.github/actions/setup-x64/
H A Daction.yml14 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "cre…
15 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "cre…
16 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "ALT…
17 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "CRE…
18 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "CRE…
/php-src/ext/date/tests/
H A Dbug-gh8964-001.phpt14 echo $expectedLower->format( 'H:i:s.u U' ), "\n";
15 echo $actual ->format( 'H:i:s.u U' ), "\n";
16 echo $expectedUpper->format( 'H:i:s.u U' ), "\n";
H A Dbug76770.phpt2 Bug #76770 'U' modifier in 'datetime::createFromFormat' adds seconds to other specifiers
5 var_dump(datetime::createFromFormat('U H', '3600 01')->getTimestamp());
H A Dbug-gh8964-002.phpt16 echo $expectedLower->format( 'H:i:s.u U' ), "\n";
17 echo $actual ->format( 'H:i:s.u U' ), "\n";
18 echo $expectedUpper->format( 'H:i:s.u U' ), "\n";
H A Dbug52062.phpt12 var_dump($d->format('Y-m-d H:i:s U'));
18 var_dump($d->format('U'));
25 var_dump($d->format('Y-m-d H:i:s U'));
H A Dbug52062-64bit.phpt12 var_dump($d->format('Y-m-d H:i:s U'));
16 var_dump($d->format('Y-m-d H:i:s U'));
H A Dbug48097.phpt10 echo $d->format( 'U' ), "\n\n";
15 echo $d->format( 'U' ), "\n\n";
/php-src/ext/intl/tests/
H A Duconverter_oop_basic.phpt10 var_dump(urlencode($c->convert("Espa\xF1ol"))); // U+00F1 LATIN SMALL LETTER N WITH TILDE
11 var_dump(urlencode($c->convert("Stra\xDFa"))); // U+00DF LATIN SMALL LETTER SHARP S
15 var_dump(bin2hex($k->convert("\xE4"))); // U+0414 CYRILLIC CAPITAL LETTER DE
H A Dnormalizer_normalize.phpt40 $char_a_diaeresis = "\xC3\xA4"; // 'LATIN SMALL LETTER A WITH DIAERESIS' (U+00E4)
41 $char_a_ring = "\xC3\xA5"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5)
42 $char_o_diaeresis = "\xC3\xB6"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6)
44 $char_angstrom_sign = "\xE2\x84\xAB"; // 'ANGSTROM SIGN' (U+212B)
45 $char_A_ring = "\xC3\x85"; // 'LATIN CAPITAL LETTER A WITH RING ABOVE' (U+00C5)
47 $char_ohm_sign = "\xE2\x84\xA6"; // 'OHM SIGN' (U+2126)
48 $char_omega = "\xCE\xA9"; // 'GREEK CAPITAL LETTER OMEGA' (U+03A9)
50 $char_combining_ring_above = "\xCC\x8A"; // 'COMBINING RING ABOVE' (U+030A)
52 $char_fi_ligature = "\xEF\xAC\x81"; // 'LATIN SMALL LIGATURE FI' (U+FB01)
54 $char_long_s_dot = "\xE1\xBA\x9B"; // 'LATIN SMALL LETTER LONG S WITH DOT ABOVE' (U+1E9B)
/php-src/ext/standard/tests/strings/
H A Dcrypt_blowfish_variation2.phpt6 $crypt = crypt('U*U', '$2a$CCCCCCCCCCCCCCCCCCCCC.E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW');
H A Dcrypt_blowfish_variation1.phpt15 $crypt = crypt('U*U', $salt);
H A Dcrypt_blowfish.phpt7 array('$2a$05$CCCCCCCCCCCCCCCCCCCCC.E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW', 'U*U'),
8 array('$2a$05$CCCCCCCCCCCCCCCCCCCCC.VGOzA784oUp/Z0DY336zx7pLYAy0lwK', 'U*U*'),
9 array('$2a$05$XXXXXXXXXXXXXXXXXXXXXOAcXxm9kjPGEMsLznoKqmqw7tc8WCx4a', 'U*U*U'),
H A Dhtml_entity_decode_iso8859-15.phpt63 0x00D9 => array(0xD9, "LATIN CAPITAL LETTER U WITH GRAVE"),
95 0x00F9 => array(0xF9, "LATIN SMALL LETTER U WITH GRAVE"),
96 0x00FA => array(0xFA, "LATIN SMALL LETTER U WITH ACUTE"),
289 LATIN CAPITAL LETTER U WITH GRAVE: &#xD9; => d9
292 LATIN CAPITAL LETTER U WITH ACUTE: &#xDA; => da
295 LATIN CAPITAL LETTER U WITH CIRCUMFLEX: &#xDB; => db
298 LATIN CAPITAL LETTER U WITH DIAERESIS: &#xDC; => dc
385 LATIN SMALL LETTER U WITH GRAVE: &#xF9; => f9
388 LATIN SMALL LETTER U WITH ACUTE: &#xFA; => fa
391 LATIN SMALL LETTER U WITH CIRCUMFLEX: &#xFB; => fb
[all …]
/php-src/ext/standard/tests/time/
H A Didate_iso.phpt16 U: 1041808859
20 U: 1072912859
/php-src/ext/dom/tests/
H A Dbug69679.phpt8 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod…
14 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
/php-src/ext/standard/tests/file/
H A Dbug72330.phpt13 $utf_1 = chr(0xD1) . chr(0x81); // U+0440;
14 $utf_2 = chr(0xD8) . chr(0x80); // U+0600
/php-src/ext/standard/tests/misc/
H A Duser_agents.txt206 Mozilla/4.76 [en] (Windows NT 5.0; U)
207 Mozilla/4.79 [en] (Windows NT 5.0; U)
568 Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.00
953 Opera/7.11 (Windows NT 5.1; U) [en]
954 Opera/7.54 (Windows NT 5.1; U) [pl]
956 Opera/8.00 (Windows NT 5.1; U; en)
958 Opera/9.00 (Windows NT 4.0; U; en)
959 Opera/9.00 (Windows NT 5.1; U; en)
960 Opera/9.00 (Windows NT 5.1; U; ru)
961 Opera/9.01 (Windows NT 5.1; U; en)
[all …]
/php-src/ext/phar/tests/files/
H A Dsha256.phar2 0���������������������hi���UIG����*�ض������hi��uR�G�^~���c]��{���@�;�����GBMB

Completed in 66 milliseconds

123456789