Searched refs:ch (Results 226 - 250 of 814) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DWhitespaceStripper.java68 public void characters(char[] ch, int start, int length) throws SAXException { argument
81 System.arraycopy(ch,start,buf,bufLen,length);
88 if( !WhiteSpaceProcessor.isWhiteSpace(ch[i]) ) {
89 super.characters(ch, start, length);
124 public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DDataWriter.java314 * @param ch The characters to write.
322 public void characters (char ch[], int start, int length) argument
326 super.characters(ch, start, length);
347 char[] ch = indentStep.toCharArray();
349 characters(ch, 0, ch.length);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.h65 * @param ch - the input character
71 virtual LEUnicode32 mapChar(LEUnicode32 ch) const = 0;
222 * <code>TRUE</code> if <code>mapCharToGlyph(ch)</code>
225 * @param ch - the character to be tested
227 * @return <code>TRUE</code> if the font can render ch.
231 virtual le_bool canDisplay(LEUnicode32 ch) const;
248 * <code>mapCharToGlyph(ch, mapper)</code> on each one. It also handles surrogate
273 * @param ch - the character
283 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
290 * @param ch
[all...]
/openjdk7/jdk/test/java/util/Locale/
H A DThaiGov.java55 String toHex(char ch) { argument
57 buff.append(hex[ch>>12]);
58 buff.append(hex[(ch>>8) & 0x0F]);
59 buff.append(hex[(ch>>4) & 0x0F]);
60 buff.append(hex[ch & 0x0F]);
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC_JP_Solaris.java70 protected int getNative(char ch) { argument
71 int r = super.getNative(ch);
75 int offset = j0208Index1[((ch & 0xff00) >> 8 )] << 8;
76 r = j0208Index2[offset >> 12].charAt((offset & 0xfff) + (ch & 0xff));
78 return 0x8f8080 + cbJIS0212.getNative(ch);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_JP_Open.java162 protected int encodeDouble(char ch) { argument
163 int r = super.encodeDouble(ch);
168 int offset = j0208Index1[((ch & 0xff00) >> 8 )] << 8;
170 (ch & 0xFF));
172 return 0x8F8080 + encoderJ0212.encodeDouble(ch);
H A DPCK.java115 protected int encodeDouble(char ch) { argument
120 switch (ch) {
129 if ((result = super.encodeDouble(ch)) != 0) {
133 int offset = j0208Index1[ch >> 8] << 8;
134 int pos = j0208Index2[offset >> 12].charAt((offset & 0xfff) + (ch & 0xff));
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSolarisEventPort.java26 package sun.nio.ch;
197 PollableChannel ch;
200 ch = fdToChannel.get(fd);
206 if (ch != null) {
209 ch.onEvent(events, isPooledThread);
H A DEPollSelectorImpl.java26 package sun.nio.ch;
161 SelChImpl ch = ski.channel;
162 int fd = Integer.valueOf(ch.getFDVal());
170 SelChImpl ch = ski.channel;
171 int fd = ch.getFDVal();
186 SelChImpl ch = ski.channel;
187 pollWrapper.setInterest(ch.getFDVal(), ops);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12CipherKAT.java77 int ch = r.read();
78 if (ch == -1) {
80 } else if ((ch >= '0') && (ch <= '9')) {
81 return ch - '0';
82 } else if ((ch >= 'a') && (ch <= 'f')) {
83 return ch - 'a' + 10;
84 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RC2ArcFour/
H A DCipherKAT.java88 int ch = r.read();
89 if (ch == -1) {
91 } else if ((ch >= '0') && (ch <= '9')) {
92 return ch - '0';
93 } else if ((ch >= 'a') && (ch <= 'f')) {
94 return ch - 'a' + 10;
95 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java176 int ch = r.read();
177 if (ch == -1) {
179 } else if ((ch >= '0') && (ch <= '9')) {
180 return ch - '0';
181 } else if ((ch >= 'a') && (ch <= 'f')) {
182 return ch - 'a' + 10;
183 } else if ((ch >= 'A') && (ch <
[all...]
H A DTestRSA.java89 int ch = r.read();
90 if (ch == -1) {
92 } else if ((ch >= '0') && (ch <= '9')) {
93 return ch - '0';
94 } else if ((ch >= 'a') && (ch <= 'f')) {
95 return ch - 'a' + 10;
96 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DMacKAT.java88 int ch = r.read();
89 if (ch == -1) {
91 } else if ((ch >= '0') && (ch <= '9')) {
92 return ch - '0';
93 } else if ((ch >= 'a') && (ch <= 'f')) {
94 return ch - 'a' + 10;
95 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/sun/security/provider/DSA/
H A DTestDSA.java229 int ch = r.read();
230 if (ch == -1) {
232 } else if ((ch >= '0') && (ch <= '9')) {
233 return ch - '0';
234 } else if ((ch >= 'a') && (ch <= 'f')) {
235 return ch - 'a' + 10;
236 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/sun/security/provider/MessageDigest/
H A DDigestKAT.java82 int ch = r.read();
83 if (ch == -1) {
85 } else if ((ch >= '0') && (ch <= '9')) {
86 return ch - '0';
87 } else if ((ch >= 'a') && (ch <= 'f')) {
88 return ch - 'a' + 10;
89 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/javax/crypto/spec/RC2ParameterSpec/
H A DRC2AlgorithmParameters.java177 int ch = r.read();
178 if (ch == -1) {
180 } else if ((ch >= '0') && (ch <= '9')) {
181 return ch - '0';
182 } else if ((ch >= 'a') && (ch <= 'f')) {
183 return ch - 'a' + 10;
184 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DStringPrep.java176 private char getCodePointValue(int ch){ argument
177 return sprepTrieImpl.sprepTrie.getCodePointValue(ch);
292 int ch = UCharacterIterator.DONE;
296 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
298 result = getCodePointValue(ch);
327 ch -= val.value;
334 UTF16.append(dest,ch);
360 boolean isLabelSeparator(int ch){
361 int result = getCodePointValue(ch);
435 int ch;
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/MessageDigest/
H A DDigestKAT.java83 int ch = r.read();
84 if (ch == -1) {
86 } else if ((ch >= '0') && (ch <= '9')) {
87 return ch - '0';
88 } else if ((ch >= 'a') && (ch <= 'f')) {
89 return ch - 'a' + 10;
90 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DTestDSA.java243 int ch = r.read();
244 if (ch == -1) {
246 } else if ((ch >= '0') && (ch <= '9')) {
247 return ch - '0';
248 } else if ((ch >= 'a') && (ch <= 'f')) {
249 return ch - 'a' + 10;
250 } else if ((ch >= 'A') && (ch <
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLiteralAttribute.java138 char ch = chars[i];
139 if (ch < 32 || 126 < ch || ch == '<' || ch == '>' || ch == '&' || ch == '\"')
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DEntity.java294 public char[] ch = null; field in class:Entity.ScannedEntity
405 ch = ba.getCharBuffer(size);
406 if (ch == null) {
407 this.ch = new char[size];
416 ba.returnCharBuffer(ch);
417 ch = null;
462 str.append(",ch="+ new String(ch));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DAbstractCreator.java123 protected final void storeContentCharacters(int type, char[] ch, int start, int length) { argument
127 storeContentCharactersCopy(ch, start, length);
136 System.arraycopy(ch, start, _contentCharactersBuffer, _contentCharactersBufferPtr, length);
142 System.arraycopy(ch, start, _contentCharactersBuffer, _contentCharactersBufferPtr, length);
146 storeContentCharactersCopy(ch, start, length);
162 protected final void storeContentCharactersCopy(char[] ch, int start, int length) { argument
164 System.arraycopy(ch, start, copyOfCh, 0, length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DIndentingXMLFilter.java217 * @param ch The characters to write.
225 public void characters (char ch[], int start, int length) argument
229 super.characters(ch, start, length);
232 public void comment(char ch[], int start, int length) throws SAXException { argument
238 lexical.comment(ch,start,length);
287 char[] ch = indentStep.toCharArray();
289 characters(ch, 0, ch.length);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java172 char ch = s.charAt(i);
174 if ('a' <= ch && ch <= 'z') {
176 ch = (char) (ch + ('A' - 'a'));
179 chars[i] = ch;
524 * @param ch the character to test
527 static boolean isHighUTF16Surrogate(char ch) { argument
528 return ('\uD800' <= ch && ch <
537 isLowUTF16Surrogate(char ch) argument
564 toCodePoint(char ch) argument
[all...]

Completed in 64 milliseconds

1234567891011>>