Lines Matching refs:SJIS

16  * (The SJIS-Mobile encodings all use MS extensions) */
19 /* U+301C (WAVE DASH) converts to SJIS 0x8160 (WAVE DASH) */
21 /* U+2212 (MINUS SIGN) converts to SJIS 0x817C (FULLWIDTH HYPHEN-MINUS) */
23 /* U+203E (OVERLINE) converts to SJIS 0x8150 (FULLWIDTH MACRON) */
25 /* U+2016 (DOUBLE VERTICAL LINE) converts to SJIS 0x8161 (PARALLEL TO) */
27 /* U+00AF (MACRON) converts to SJIS 0x8150 (FULLWIDTH MACRON) */
29 /* U+00AC (NOT SIGN) converts to SJIS 0x81CA (FULLWIDTH NOT SIGN) */
31 /* U+00A5 (YEN SIGN) converts to SJIS 0x818F (FULLWIDTH YEN SIGN) */
33 /* U+00A3 (POUND SIGN) converts to SJIS 0x8192 (FULLWIDTH POUND SIGN) */
35 /* U+00A2 (CENT SIGN) converts to SJIS 0x8191 (FULLWIDTH CENT SIGN) */
65 * Our implementation of CP932 prefers the F's, but for SJIS-Mobile,
289 // The mobile SJIS variants all have special characters to represent certain national
292 // be converted to SJIS and should be treated as an error
299 testSJISVariant($docomo, $nonInvertibleDocomo, 'SJIS-Mobile#DOCOMO');
300 testSJISVariant($kddi, $nonInvertible, 'SJIS-Mobile#KDDI');
301 testSJISVariant($softbank, $nonInvertibleSoftbank, 'SJIS-Mobile#SOFTBANK');
304 convertValidString("\x1B\$O", "", "SJIS-Mobile#SOFTBANK", "UTF-8", false);
305 convertValidString("\x1B\$P", "", "SJIS-Mobile#SOFTBANK", "UTF-8", false);
306 convertValidString("\x1B\$Q", "", "SJIS-Mobile#SOFTBANK", "UTF-8", false);
308 convertInvalidString("\x1B\$X", "%", "SJIS-Mobile#SOFTBANK", "UTF-8", false);
310 convertInvalidString("\x1B\$", "%", "SJIS-Mobile#SOFTBANK", "UTF-8", false);
314 convertValidString("\xA9\xA9\xA9\xA9", "\xF9\xD6\xF9\xD6\xF9\xD6\xF9\xD6", '8bit', 'SJIS-Mobile#DOC…
315 convertValidString("\xA9\xA9\xA9\xA9", "\xF7\x74\xF7\x74\xF7\x74\xF7\x74", '8bit', 'SJIS-Mobile#KDD…
316 convertValidString("\xA9\xA9\xA9\xA9", "\xF7\xEE\xF7\xEE\xF7\xEE\xF7\xEE", '8bit', 'SJIS-Mobile#SOF…
321 convertValidString("abc" . chr($i), "abc" . chr($i), 'UTF-8', 'SJIS-Mobile#DOCOMO');
322 convertValidString("abc" . chr($i), "abc" . chr($i), 'UTF-8', 'SJIS-Mobile#KDDI');
323 convertValidString("abc" . chr($i), "abc" . chr($i), 'UTF-8', 'SJIS-Mobile#SOFTBANK');
331 …0a", $i) . "\x00\x30\x20\xE3", str_repeat('a', $i) . "\xF9\x90", 'UTF-16BE', 'SJIS-Mobile#DOCOMO');
332 …x00a", $i) . "\x00\x30\x20\xE3", str_repeat('a', $i) . "\xF7\xC9", 'UTF-16BE', 'SJIS-Mobile#KDDI');
333 …", $i) . "\x00\x30\x20\xE3", str_repeat('a', $i) . "\xF7\xC5", 'UTF-16BE', 'SJIS-Mobile#SOFTBANK');
339 …convertValidString(str_repeat("\x000", $i), str_repeat('0', $i), 'UTF-16BE', 'SJIS-Mobile#DOCOMO');
340 convertValidString(str_repeat("\x000", $i), str_repeat('0', $i), 'UTF-16BE', 'SJIS-Mobile#KDDI');
341 …convertValidString(str_repeat("\x000", $i), str_repeat('0', $i), 'UTF-16BE', 'SJIS-Mobile#SOFTBANK…
348 mb_convert_encoding($str, 'SJIS-Mobile#SOFTBANK', 'SJIS-Mobile#SOFTBANK');
352 SJIS-Mobile#DOCOMO verification and conversion works on all valid characters
353 SJIS-Mobile#DOCOMO verification and conversion works on all invalid characters
354 Unicode -> SJIS-Mobile#DOCOMO conversion works on all invalid codepoints
355 SJIS-Mobile#KDDI verification and conversion works on all valid characters
356 SJIS-Mobile#KDDI verification and conversion works on all invalid characters
357 Unicode -> SJIS-Mobile#KDDI conversion works on all invalid codepoints
358 SJIS-Mobile#SOFTBANK verification and conversion works on all valid characters
359 SJIS-Mobile#SOFTBANK verification and conversion works on all invalid characters
360 Unicode -> SJIS-Mobile#SOFTBANK conversion works on all invalid codepoints