Searched refs:ASCII (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteISO2022JP.java31 private static final int ASCII = 0; // ESC ( B field in class:CharToByteISO2022JP
42 private int currentMode = ASCII;
47 // XXX: Assumes subBytes are ASCII string. Need to change Escape sequence
50 protected int subBytesMode = ASCII;
61 if (!flushed && (currentMode != ASCII)) {
71 currentMode = ASCII;
168 if (currentMode != ASCII) {
174 newMode = ASCII;
285 // return mode ASCII at the end
286 if (currentMode != ASCII){
[all...]
H A DByteToCharISO2022JP.java30 private static final int ASCII = 0; // ESC ( B field in class:ByteToCharISO2022JP
44 currentState = ASCII;
53 currentState = ASCII;
70 int previousState = ASCII;
159 currentState = ASCII;
230 case ASCII:
306 currentState = ASCII;
/openjdk7/jdk/test/java/lang/System/MacJNUEncoding/
H A DMacJNUEncoding.sh69 "${JAVA}" ${TESTVMOPTS} -classpath "${TESTCLASSES}" ExpectedEncoding US-ASCII UTF-8
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISO2022_JP.java42 * (1)"Standard based" (ASCII, JIS_X_0201 and JIS_X_0208) ISO2022-JP charset
123 private static final int ASCII = 0; // ESC ( B field in class:ISO2022_JP
216 currentState = ASCII;
217 previousState = ASCII;
225 currentState = ASCII;
226 previousState = ASCII;
262 currentState = ASCII;
304 case ASCII:
379 currentState = ASCII;
423 case ASCII
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java102 static final int ASCII = 1; field in class:FtpURLConnection
325 type = ASCII;
422 if (type == ASCII) {
534 if (type == ASCII) {
583 type = ASCII;
611 value = (type == ASCII ? "a" : type == DIR ? "d" : "i");
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java165 * <tr align="left"><th colspan="2" id="posix">POSIX character classes</b> (US-ASCII only)<b></th></tr>
171 * <tr><td valign="top" headers="construct posix"><tt>\p{ASCII}</tt></td>
172 * <td headers="matches">All ASCII:<tt>[\x00-\x7F]</tt></td></tr>
620 * <tr><td><tt>\p{ASCII}</tt></td>
621 * <td>All ASCII:<tt>[\x00-\x7F]</tt></td></tr>
795 * in the US-ASCII charset are being matched. Unicode-aware
866 * matching assumes that only characters in the US-ASCII charset are being
896 * <p> When this flag is specified then the (US-ASCII only)
1592 if (! ASCII.isAscii(c) || ASCII
[all...]
H A DASCII.java35 final class ASCII { class
55 static final int ASCII = 0x0000FF00; field in class:ASCII
H A DMatcher.java779 if (ASCII.isLower(nextChar) ||
780 ASCII.isUpper(nextChar) ||
781 ASCII.isDigit(nextChar)) {
795 if (ASCII.isDigit(gname.charAt(0)))
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java81 ASCII, BINARY, EBCDIC enum constant in enum:FtpClient.TransferType
683 * {@code setType(TransferType.ASCII)}
691 setType(TransferType.ASCII);
/openjdk7/jdk/test/java/util/regex/
H A DPOSIX_ASCII.java45 static final int ASCII = 0x0000FF00; field in class:POSIX_ASCII
H A DRegExTest.java224 * Converts ASCII alphabet characters [A-Za-z] in the given 's' to
1520 // ASCII "a"
3009 report("Boyer Moore (ASCII)");
3033 // Create a buffer with random ASCII chars that does
3666 Matcher ASCII = Pattern.compile("\\p{ASCII}").matcher("");
3682 Matcher ASCIIU = Pattern.compile("\\p{ASCII}", Pattern.UNICODE_CHARACTER_CLASS).matcher("");
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java154 * Test the named character encoding to verify that it converts ASCII
155 * characters correctly. We have to use an ASCII based encoding, or else
157 * However, we cannot just use ASCII or ISO8859_1 universally, because in
158 * Asian locales, non-ASCII characters may be embedded in otherwise
159 * ASCII based protocols (eg. HTTP). The specifications (RFC2616, 2398)
168 * where it is possible to send non-ASCII characters in their original
793 if (type == TransferType.ASCII) {
800 if (type == TransferType.ASCII) {
1485 * TYPE: ASCII, FORM: Nonprint; STRUcture: File; transfer MODE: Stream
1660 if (type == TransferType.ASCII) {
[all...]
/openjdk7/jdk/make/java/java/
H A DFILES_java.gmk359 java/util/regex/ASCII.java \

Completed in 126 milliseconds