Searched refs:testChar (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJaxmURI.java376 char testChar = '\0';
378 testChar = uriSpec.charAt(index);
379 if (testChar == '/' || testChar == '?' || testChar == '#') {
524 char testChar = '\0';
527 testChar = p_uriSpec.charAt(index);
528 if (testChar == ':' || testChar == '/' ||
529 testChar
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java558 char testChar = '\0';
560 testChar = uriSpec.charAt(index);
561 if (testChar == '/' || testChar == '?' || testChar == '#') {
674 char testChar = '\0';
676 testChar = uriSpec.charAt(index);
677 if (testChar == '/' || testChar == '?' || testChar
[all...]
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6816548.java36 testChar();
60 public static void testChar() { method in class:T6816548
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DURI.java418 char testChar = '\0';
422 testChar = uriSpec.charAt(index);
424 if (testChar == '/' || testChar == '?' || testChar == '#')
589 char testChar = '\0';
593 testChar = p_uriSpec.charAt(index);
595 if (testChar == ':' || testChar == '/' || testChar
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DURI.java439 char testChar = '\0';
443 testChar = uriSpec.charAt(index);
445 if (testChar == '/' || testChar == '?' || testChar == '#')
610 char testChar = '\0';
614 testChar = p_uriSpec.charAt(index);
616 if (testChar == ':' || testChar == '/' || testChar
[all...]
/openjdk7/hotspot/test/compiler/6946040/
H A DTestCharShortByteSwap.java29 * @run main/othervm -Xbatch -XX:CompileOnly=.testChar,.testShort TestCharShortByteSwap
54 private static void testChar(char a, char b) { method in class:TestCharShortByteSwap
82 testChar(c1, c2);
83 testChar(c3, c4);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformResponder.java140 char testChar = KeyEvent.CHAR_UNDEFINED;
154 testChar = chars.charAt(0);
157 int[] in = new int[] {testChar, isDeadChar ? 1 : 0, modifierFlags, keyCode};
162 testChar = KeyEvent.CHAR_UNDEFINED;
166 testChar = (char) out[2];
167 if(testChar == 0){
178 char javaChar = NSEvent.nsToJavaChar(testChar, modifierFlags);
/openjdk7/jdk/test/java/io/RandomAccessFile/
H A DReadWritePrimitives.java44 testChar();
83 private static void testChar() throws IOException { method in class:ReadWritePrimitives
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTEvent.m594 unichar testChar = 0, testDeadChar = 0;
607 testChar = [chars characterAtIndex:index];
617 if (testChar != 0) {
618 returnValue = NsCharToJavaChar(testChar, [event modifierFlags]);
715 unichar testChar = java_awt_event_KeyEvent_CHAR_UNDEFINED;
732 testChar = [chars characterAtIndex:0];
737 NsCharToJavaVirtualKeyCode(testChar, NO,
741 testChar = java_awt_event_KeyEvent_CHAR_UNDEFINED;
759 testChar, javaKeyCode, javaKeyLocation);
861 unichar testChar, testDeadCha
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DFindOneCharEncoderBugs.java89 private static void testChar(byte[] expected, CharBuffer cb, Charset cs, char c) { method in class:FindOneCharEncoderBugs
130 testChar(bytes, ocb, cs, c);
131 testChar(bytes, dcb, cs, c);
H A DTestISO2022CNDecoder.java83 int testChar;
84 if ((testChar = reader.read()) != -1) {
86 System.err.println("testChar is " +
87 Integer.toHexString((int)testChar));
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1778 int testChar = temp[cursor++];
1780 testChar = parsePastWhitespace(testChar);
1781 if (ch != testChar) {

Completed in 60 milliseconds