Searched defs:next (Results 101 - 125 of 702) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/
H A DHeapRegionSeq.java84 public HeapRegion next() { return at(index++); } method in class:HeapRegionSeq.HeapRegionIterator
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DFreeChunk.java55 public FreeChunk next() { method in class:FreeChunk
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectSynchronizer.java101 public Object next() { method in class:ObjectSynchronizer.ObjectMonitorIterator
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DContentModel.java55 * The next content model (in a ',', '|' or '&' expression).
57 public ContentModel next; field in class:ContentModel
79 public ContentModel(int type, Object content, ContentModel next) { argument
82 this.next = next;
97 for (ContentModel m = (ContentModel)content ; m != null ; m = m.next) {
106 for (ContentModel m = (ContentModel)content ; m != null ; m = m.next) {
132 for (ContentModel m=(ContentModel)content; m != null; m=m.next){
159 for (ContentModel m = (ContentModel)content ; m != null ; m = m.next) {
180 for (ContentModel m = (ContentModel)content ; m != null ; m = m.next) {
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectIterator.java71 * Moves the iterator to the next segment of the path forwards
75 public void next() { method in class:RectIterator
/openjdk7/jdk/src/share/classes/java/io/
H A DStringReader.java40 private int next = 0; field in class:StringReader
70 if (next >= length)
72 return str.charAt(next++);
97 if (next >= length)
99 int n = Math.min(length - next, len);
100 str.getChars(next, next + n, cbuf, off);
101 next += n;
125 if (next >= length)
128 long n = Math.min(length - next, n
[all...]
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReference.java65 * The state is encoded in the queue and next fields as follows:
68 * ReferenceQueue.NULL if it was not registered with a queue; next =
72 * next = Following instance in queue, or this if at end of list.
74 * Enqueued: queue = ReferenceQueue.ENQUEUED; next = Following instance
77 * Inactive: queue = ReferenceQueue.NULL; next = this.
79 * With this scheme the collector need only examine the next field in order
81 * the next field is null then the instance is active; if it is non-null,
94 Reference next; field in class:Reference
128 Reference rn = r.next;
130 r.next
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLException.java48 * <LI> a chain to a next Exception. This can be used to provide additional
272 * @return the next <code>SQLException</code> object in the chain;
277 return (next);
291 SQLException next=current.next;
292 if (next != null) {
293 current = next;
300 current=current.next;
328 public Throwable next() {
369 private volatile SQLException next; field in class:SQLException
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.hpp73 inline OptionList(const char* name, bool enable, OptionList* next);
77 inline OptionList* next() const { return _next; } function in class:JavaAssertions::OptionList
H A DresolutionErrors.hpp93 ResolutionErrorEntry* next() const { function in class:ResolutionErrorEntry
94 return (ResolutionErrorEntry*)HashtableEntry<constantPoolOop, mtClass>::next();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp61 ConcurrentG1RefineThread *next = NULL; local
63 ConcurrentG1RefineThread* t = new ConcurrentG1RefineThread(this, next, worker_id_offset, i);
67 next = t;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DToken.java56 * A reference to the next regular (non-special) token from the input
63 public Token next; field in class:Token
70 * to the last of these special tokens, which in turn refers to the next
73 * The next fields of special tokens refer to other special tokens that
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java52 QueueElement next = null; field in class:EventQueue.QueueElement
97 newElt.next = head;
121 tail.next = null;
123 elt.prev = elt.next = null;
H A DLdapRequest.java35 LdapRequest next; // Set/read in synchronized Connection methods field in class:LdapRequest
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DSingleCertificateResolver.java87 public Object next() { method in class:SingleCertificateResolver.InternalIterator
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DToken.java64 * A reference to the next regular (non-special) token from the input
71 public Token next; field in class:Token
78 * to the last of these special tokens, which in turn refers to the next
81 * The next fields of special tokens refer to other special tokens that
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadGroupIterator.java87 public ThreadGroupReference next() { method in class:ThreadGroupIterator
92 ThreadGroupReference tg = top().next();
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DCharArrayIterator.java99 public char next() { method in class:CharArrayIterator
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterpreter_x86_64.cpp87 Label isfloatordouble, isdouble, next; local
109 __ jmp (next);
117 __ jmp(next);
123 __ bind(next);
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DArgsParser.java34 boolean next() { return ++i < args.length; } method in class:ArgIterator
80 ai.next();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameManager.java70 * We preserve the creation order so that "next" and "previous"
140 private void switchFrame(final boolean next) { argument
161 if (next) {
178 * Activate the next child JInternalFrame, as determined by
/openjdk7/jdk/src/share/back/
H A DoutStream.h40 struct PacketData *next; member in struct:PacketData
/openjdk7/hotspot/src/share/vm/services/
H A DgcNotifier.hpp35 GCNotificationRequest *next; member in class:GCNotificationRequest
43 next = NULL;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DStringCutter.java48 next(regexp);
51 public String next(String regexp) throws ParseException { method in class:StringCutter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/
H A DMessagingException.java45 * The next exception in the chain.
49 private Exception next; field in class:MessagingException
77 next = e;
81 * Get the next exception chained to this one. If the
82 * next exception is a MessagingException, the chain
85 * @return next Exception, null if none.
88 return next;
103 ((MessagingException)theEnd).next != null) {
104 theEnd = ((MessagingException)theEnd).next;
109 ((MessagingException)theEnd).next
[all...]

Completed in 2770 milliseconds

1234567891011>>