/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/ |
H A D | NodeIterator.java | 33 public static final int END = DTM.NULL; field in interface:NodeIterator 36 * Callers should not call next() after it returns END. 66 * Set start to END should 'close' the iterator, 67 * i.e. subsequent call to next() should return END.
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ |
H A D | DTMAxisIterator.java | 32 public static final int END = DTM.NULL; field in interface:DTMAxisIterator 37 * @return The next node handle in the iteration, or END. 72 * Set start to END should 'close' the iterator, 73 * i.e. subsequent call to next() should return END. 82 * Get start to END should 'close' the iterator, 83 * i.e. subsequent call to next() should return END.
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | LocalVariableTableWriter.java | 57 END("end") { enum constant in enum:LocalVariableTableWriter.NoteKind 99 writeLocalVariables(pc, NoteKind.END); 106 writeLocalVariables(pc, NoteKind.END); 115 entries.listIterator(kind == NoteKind.END ? entries.size() : 0); 116 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) { 118 kind == NoteKind.END ? iter.previous() : iter.next();
|
H A D | LocalVariableTypeTableWriter.java | 58 END("end") { enum constant in enum:LocalVariableTypeTableWriter.NoteKind 100 writeLocalVariables(pc, NoteKind.END); 107 writeLocalVariables(pc, NoteKind.END); 116 entries.listIterator(kind == NoteKind.END ? entries.size() : 0); 117 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) { 119 kind == NoteKind.END ? iter.previous() : iter.next();
|
H A D | TryBlockWriter.java | 52 END("end try") { enum constant in enum:TryBlockWriter.NoteKind 95 writeTrys(instr, NoteKind.END); 106 entries.listIterator(kind == NoteKind.END ? entries.size() : 0); 107 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) { 109 kind == NoteKind.END ? iter.previous() : iter.next();
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/ |
H A D | DiagnosticFormatter.java | 111 END, enum constant in enum:DiagnosticFormatter.PositionKind
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | NodeCounter.java | 39 public static final int END = DTM.NULL; field in class:NodeCounter 41 protected int _node = END;
|
/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | CSSParser.java | 89 private static final int END = -1; field in class:CSSParser 194 case END: 255 case END: 312 case END: 327 case END: case BRACE_CLOSE: 414 case END: 461 case END: 502 return END;
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | vmError.cpp | 334 # define END } macro 795 END 799 # undef END macro
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/ |
H A D | HtmlTag.java | 34 A(BlockType.INLINE, EndTag.END), 36 BODY(BlockType.OTHER, EndTag.END), 40 CODE(BlockType.INLINE, EndTag.END), 45 EM(BlockType.INLINE, EndTag.END), 46 FONT(BlockType.INLINE, EndTag.END), 48 FRAMESET(BlockType.OTHER, EndTag.END), 55 HEAD(BlockType.OTHER, EndTag.END), 57 HTML(BlockType.OTHER, EndTag.END), 58 I(BlockType.INLINE, EndTag.END), 64 NOFRAMES(BlockType.OTHER, EndTag.END), 99 END, enum constant in enum:HtmlTag.EndTag [all...] |
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Event.java | 103 public static final int END = 1001; field in class:Event 554 { KeyEvent.VK_END, Event.END },
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicComboBoxUI.java | 227 map.put(new Actions(Actions.END)); 1478 private static final String END = "endPassThrough"; field in class:BasicComboBoxUI.Actions 1494 key == HOME || key == END) { 1648 else if (key == END) {
|
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/ |
H A D | ZipFileSystem.java | 117 new END().write(os, 0); 903 private END end; 956 // Searches for end of central directory (END) header. The contents of 957 // the END header will be read and placed in endbuf. Returns the file 958 // position of the END header, otherwise returns -1 if the END header 960 private END findEND() throws IOException 977 zerror("zip END header not found"); 979 // Now scan the block backwards for END header signature 986 // Found END heade 1669 static class END { class in class:ZipFileSystem [all...] |