Searched defs:character (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6256805.java51 private Character character; field in class:Test6256805.CharacterBean
63 return this.character;
66 public void setChar( Character character ) {
67 this.character = character;
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java79 * Tells whether or not the given UCS-4 character must be represented as a
88 * Returns the high UTF-16 surrogate for the given supplementary UCS-4 character.
97 * Returns the low UTF-16 surrogate for the given supplementary UCS-4 character.
106 * Converts the given surrogate pair into a 32-bit UCS-4 character.
122 private int character; // UCS-4 field in class:Surrogate.Parser
127 * Returns the UCS-4 character previously parsed.
129 public int character() { method in class:Surrogate.Parser
131 return character;
135 * Tells whether or not the previously-parsed UCS-4 character was
163 * input length, for the previously-parsed character
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMinimalHTMLWriter.java549 * character-level attributes (attributes other than bold,
722 private boolean isValidCharacter(char character) { argument
723 return ((character >= 'a' && character <= 'z') ||
724 (character >= 'A' && character <= 'Z'));
H A DCSSParser.java95 /** Set to true if one character has been read ahead. */
97 /** The read ahead character. */
525 // stop character (white space, ()[]{}) 0 otherwise
587 // Make this simpler, reprocess the character.
724 private void append(char character) { argument
730 tokenBuffer[tokenBufferLength++] = character;
813 * Skips any white space, returning the character after the white space.
825 * Reads a character from the stream.
843 * Supports one character look ahead, this will throw if called twice
849 throw new RuntimeException("Can not handle look ahead of more than one character");
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java43 // UTF-16 surrogate-character ranges
72 * Tells whether or not the given UTF-16 value is a surrogate character,
79 * Tells whether or not the given UCS-4 character must be represented as a
87 * Returns the high UTF-16 surrogate for the given UCS-4 character.
94 * Returns the low UTF-16 surrogate for the given UCS-4 character.
101 * Converts the given surrogate pair into a 32-bit UCS-4 character.
115 private int character; // UCS-4 field in class:Surrogate.Parser
120 * Returns the UCS-4 character previously parsed.
122 public int character() { method in class:Surrogate.Parser
123 return character;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java88 /* An array of character-keyword pairs. This could be done
90 would require allocating an object for every character
93 { public char character; public String keyword; } field in class:RTFGenerator.CharacterKeywordPair
105 pair.character = ((String)textKeywordDictionary.get(pair.keyword)).charAt(0);
309 and pick a character set which will most compactly represent the
310 document? (currently the writer always uses the ansi character
898 if (textKeywords[i].character == ch) {
905 to switch to the Symbol font for this character. TODO. */
998 return 0; /* 0 indicates an unrepresentable character */
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp2865 // find the character for the OEM VK code using ::MapVirtualKey and
2909 // say that conversion routings return spacing accent character, not
2975 // 1. Map windows VK to ANSI character (cannot map to unicode
3003 // Auxiliary table used to map Unicode character to Java VK.
3147 UINT AwtComponent::WindowsKeyToJavaKey(UINT windowsKey, UINT modifiers, UINT character, BOOL isDeadKey) argument
3178 if (charToDeadVKTable[i].c == character) {
3457 // events, so try to provide a meaningful character for
3500 // convert the character for me.
3524 // the caller expects a Unicode character.
3556 UINT character local
3599 UINT character = WindowsKeyToJavaChar(wkey, modifiers, LOAD, isDeadKey); local
3639 WmIMEChar(UINT character, UINT repCnt, UINT flags, BOOL system) argument
3657 WmChar(UINT character, UINT repCnt, UINT flags, BOOL system) argument
3726 WmForwardChar(WCHAR character, LPARAM lParam, BOOL synthetic) argument
[all...]

Completed in 72 milliseconds