/openjdk7/jdk/test/java/beans/Introspector/4520754/ |
H A D | Test4520754.java | 69 private static void test(Boolean mark, Class... types) { argument 71 BeanInfo info = getBeanInfo(mark, type); 75 if (mark != info.getBeanDescriptor().getValue("test")) { 82 private static BeanInfo getBeanInfo(Boolean mark, Class type) { argument 83 System.out.println("test=" + mark + " for " + type); 93 if (mark != info.getBeanDescriptor().getValue("test")) {
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/ |
H A D | MarkAndResetHandler.java | 30 * implement mark/reset. 34 void mark(RestorableInputStream inputStream); method in interface:MarkAndResetHandler
|
H A D | CDRInputStream_1_2.java | 38 // used to remember headerPadding flag when mark() and restore() are used. 46 // the mark and reset methods have been overridden to remember the 49 public void mark(int readlimit) { method in class:CDRInputStream_1_2 50 super.mark(readlimit);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | EditableAtEndDocument.java | 30 can only be performed at the end, from "mark" to the end of the 37 private int mark; field in class:EditableAtEndDocument 49 int markStart = mark; 64 mark = getLength(); 68 return getText(mark, getLength() - mark);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | MarkBits.java | 34 (object-external) set of mark bits, used for GC-like scans through 52 /** Returns true if a mark was newly placed for the given Oop, or 56 public boolean mark(Oop obj) { method in class:MarkBits 77 /** Forces clearing of a given mark bit. */
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | FilterInputStream.java | 190 * allow that many bytes to be read before the mark position gets 193 * This method simply performs <code>in.mark(readlimit)</code>. 196 * the mark position becomes invalid. 200 public synchronized void mark(int readlimit) { method in class:FilterInputStream 201 in.mark(readlimit); 206 * <code>mark</code> method was last called on this input stream. 221 * mark has been invalidated. 223 * @see java.io.FilterInputStream#mark(int) 230 * Tests if this input stream supports the <code>mark</code> 236 * <code>mark</cod [all...] |
H A D | FilterReader.java | 96 * Tells whether this stream supports the mark() operation. 107 public void mark(int readAheadLimit) throws IOException { method in class:FilterReader 108 in.mark(readAheadLimit);
|
H A D | InputStream.java | 279 * allow that many bytes to be read before the mark position gets 282 * <p> The general contract of <code>mark</code> is that, if the method 284 * remembers all the bytes read after the call to <code>mark</code> and 292 * <p> The <code>mark</code> method of <code>InputStream</code> does 296 * the mark position becomes invalid. 299 public synchronized void mark(int readlimit) {} method in class:InputStream 303 * <code>mark</code> method was last called on this input stream. 312 * <ul><li> If the method <code>mark</code> has not been called since 314 * since <code>mark</code> was last called is larger than the argument 315 * to <code>mark</cod [all...] |
H A D | ByteArrayInputStream.java | 69 * position within the buffer by the <code>mark()</code> method. 73 * If no mark has been set, then the value of mark is the offset 78 protected int mark = 0; field in class:ByteArrayInputStream 116 * The buffer array is not copied. The buffer's mark is 127 this.mark = offset; 236 * Tests if this <code>InputStream</code> supports mark/reset. The 252 * If no mark has been set, then the value of the mark is the 261 public void mark(in method in class:ByteArrayInputStream [all...] |
H A D | LineNumberInputStream.java | 248 * The <code>mark</code> method of 250 * number in a private variable, and then calls the <code>mark</code> 254 * the mark position becomes invalid. 258 public void mark(int readlimit) { method in class:LineNumberInputStream 261 in.mark(readlimit); 266 * <code>mark</code> method was last called on this input stream. 270 * the line number at the time the <code>mark</code> method was 285 * @see java.io.LineNumberInputStream#mark(int)
|
H A D | Reader.java | 208 * Tells whether this stream supports the mark() operation. The default 212 * @return true if and only if this stream supports the mark operation. 221 * character-input streams support the mark() operation. 224 * read while still preserving the mark. After 228 * @exception IOException If the stream does not support mark(), 231 public void mark(int readAheadLimit) throws IOException { method in class:Reader 232 throw new IOException("mark() not supported"); 237 * reposition it at the mark. If the stream has not been marked, then 241 * reset() without supporting mark(). 244 * or if the mark ha [all...] |
H A D | StringReader.java | 41 private int mark = 0; field in class:StringReader 150 * Tells whether this stream supports the mark() operation, which it does. 161 * read while still preserving the mark. Because 169 public void mark(int readAheadLimit) throws IOException { method in class:StringReader 175 mark = next; 180 * Resets the stream to the most recent mark, or to the beginning of the 188 next = mark; 195 * ready(), mark(), or reset() invocations will throw an IOException.
|
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | markSweep.inline.hpp | 37 // and overwrite the mark. We'll restore it at the end of markSweep. 38 markOop mark = obj->mark(); local 41 if (mark->must_be_preserved(obj)) { 42 preserve_mark(obj, mark); 58 if (!obj->mark()->is_marked()) { 71 if (!obj->mark()->is_marked()) { 88 oop new_obj = oop(obj->mark()->decode_pointer()); 90 obj->mark() == markOopDesc::prototype() || // not gc marked? 91 (UseBiasedLocking && obj->mark() [all...] |
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/ |
H A D | PositionDataInputStream.java | 53 public void mark(int readLimit) { method in class:PositionDataInputStream 54 throw new UnsupportedOperationException("mark");
|
H A D | PositionInputStream.java | 73 public void mark(int readLimit) { method in class:PositionInputStream 74 throw new UnsupportedOperationException("mark");
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/ |
H A D | StreamHeader11.java | 47 public StreamHeader11(XMLStreamReader reader, XMLStreamBuffer mark) { argument 48 super(reader, mark);
|
H A D | StreamHeader12.java | 49 public StreamHeader12(XMLStreamReader reader, XMLStreamBuffer mark) { argument 50 super(reader, mark);
|
/openjdk7/jdk/src/share/classes/sun/net/httpserver/ |
H A D | FixedLengthInputStream.java | 76 public void mark (int l) { method in class:FixedLengthInputStream 80 throw new IOException ("mark/reset not supported");
|
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | secitem.c | 74 void *mark = NULL; local 77 mark = PORT_ArenaMark(arena); 108 if (mark) { 109 PORT_ArenaUnmark(arena, mark); 115 if (mark) { 116 PORT_ArenaRelease(arena, mark);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/ |
H A D | StreamSOAP11Codec.java | 58 protected final StreamHeader createHeader(XMLStreamReader reader, XMLStreamBuffer mark) { argument 59 return new StreamHeader11(reader, mark);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/ |
H A D | FastInfosetStreamSOAP11Codec.java | 59 protected final StreamHeader createHeader(XMLStreamReader reader, XMLStreamBuffer mark) { argument 60 return new StreamHeader11(reader, mark);
|
H A D | FastInfosetStreamSOAP12Codec.java | 59 protected final StreamHeader createHeader(XMLStreamReader reader, XMLStreamBuffer mark) { argument 60 return new StreamHeader12(reader, mark);
|
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/ |
H A D | EditableAtEndDocument.java | 46 * can only be performed at the end, from "mark" to the end of the 52 private int mark; field in class:EditableAtEndDocument 66 int markStart = mark; 81 mark = getLength(); 85 return getText(mark, getLength() - mark);
|
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | CanonShaping.cpp | 76 le_int32 mark; local 78 for (mark = i; mark < charCount; mark += 1) { 79 if (combiningClasses[mark] == 0) { 84 sortMarks(indices, combiningClasses, i, mark);
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | ByteBufferInputStream.java | 160 public synchronized void mark(int readlimit) {} method in class:ByteBufferInputStream 164 * <code>mark</code> method was last called on this input stream. 167 throw new IOException("mark/reset not supported"); 171 * Tests if this input stream supports the <code>mark</code> and
|