Searched defs:ESCAPE (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUtility.java93 * The ESCAPE character is used during run-length encoding. It signals
96 static final char ESCAPE = '\uA5A5'; field in class:Utility
106 * A character represents itself, unless it is the ESCAPE character. Then
108 * ESCAPE ESCAPE ESCAPE literal
109 * ESCAPE n c n instances of character c
111 * more characters. Thus we have n > 0 and n != ESCAPE and n <= 0xFFFF.
112 * If we encounter a run where n == ESCAPE, we represent this as:
113 * c ESCAPE
[all...]
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethod.java68 private static final int ESCAPE = 1; // \u0000 - \uFFFF field in class:CodePointInputMethod
205 format = (c == 'u') ? ESCAPE : SPECIAL_ESCAPE;
233 format = ESCAPE;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDesktopPaneUI.java247 map.put(new Actions(Actions.ESCAPE));
313 private static String ESCAPE = "escape"; field in class:BasicDesktopPaneUI.Actions
353 else if (ESCAPE == key) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DEvent.java245 public static final int ESCAPE = 27; field in class:Event

Completed in 2339 milliseconds