Searched refs:next (Results 476 - 500 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DProtectionDomainEntry.java56 public ProtectionDomainEntry next() { method in class:ProtectionDomainEntry
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackFrameStream.java38 for(StackFrameStream fst = new StackFrameStream(thread); !fst.isDone(); fst.next()) {
96 public void next() { method in class:StackFrameStream
H A DVirtualConstructor.java74 String typeName = (String) iter.next();
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java65 Node node = (Node)iter.next();
272 * The next (right) sibling node of this node, or
417 * Returns the next sibling of this node, or <code>null</code> if
418 * the node has no next sibling.
420 * @return the next sibling, as a <code>Node</code>, or
476 IIOMetadataNode next = null;
480 next = null;
484 next = refChildNode;
490 if (next != null) {
491 next
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttributes.java239 their = (Attribute)theirs.next();
273 hash += all.next().hashCode();
331 public Attribute next() throws NamingException { method in class:BasicAttributes.AttrEnumImpl
363 public String next() throws NamingException { method in class:BasicAttributes.IDEnumImpl
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DControlFactory.java151 factory = (ControlFactory)factories.next();
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp130 VMReg next() { function in class:VMRegImpl
134 VMReg next(int i) { function in class:VMRegImpl
210 void set2 ( VMReg v ) { _second=v->next(); _first=v; }
214 _second = ptr->next();
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContextEnumerator.java106 return next();
112 public Object next() throws NamingException { method in class:ContextEnumerator
135 Binding oldBinding = ((Binding)children.next());
195 return (Binding)currentChildEnum.next();
199 // Ready to go onto next child
200 if(debug) {System.out.println("getNextDescedant: next case");}
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftJitterCorrector.java135 long next = now + nanos;
202 next = System.nanoTime() + nanos;
205 long wait = next - System.nanoTime();
213 next += nanos;
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java171 List next = (List)itr.next();
172 if (((Integer)next.get(0)).intValue() == 2) {
174 String dnsName = ((String)next.get(1));
/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/hotspot/src/share/vm/runtime/
H A Dhandles.cpp91 k = k->next();
135 Chunk *c = _chunk->next();
142 c = c->next();
155 if( _chunk->next() ) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkContext.cpp155 SharkFreeQueueItem(llvm::Function* function, SharkFreeQueueItem *next) argument
156 : _function(function), _next(next) {}
166 SharkFreeQueueItem* next() const { function in class:SharkFreeQueueItem
181 _free_queue = item->next();
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.cpp63 file = file->next();
H A Dutf8.hpp46 static char* next(const char* str, jchar* value);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStartElementEvent.java196 attr = (Attribute)it.next();
205 attr = (Namespace)it.next();
237 Attribute attr = (Attribute)attrs.next();
252 Namespace namespace = (Namespace)namespaces.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDPattern.java64 DPattern next; field in class:DPattern
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DToken.java85 * A reference to the next regular (non-special) token from the input
92 public Token next; field in class:Token
99 * to the last of these special tokens, which in turn refers to the next
102 * The next fields of special tokens refer to other special tokens that
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientLogicalHandlerTube.java56 public ClientLogicalHandlerTube(WSBinding binding, SEIModel seiModel, WSDLPort port, Tube next) { argument
57 super(next, port);
69 public ClientLogicalHandlerTube(WSBinding binding, SEIModel seiModel, Tube next, HandlerTube cousinTube) { argument
70 super(next, cousinTube);
H A DClientSOAPHandlerTube.java59 public ClientSOAPHandlerTube(WSBinding binding, WSDLPort port, Tube next) { argument
60 super(next, port);
76 public ClientSOAPHandlerTube(WSBinding binding, Tube next, HandlerTube cousinTube) { argument
77 super(next, cousinTube);
H A DServerLogicalHandlerTube.java60 public ServerLogicalHandlerTube(WSBinding binding, SEIModel seiModel, WSDLPort port, Tube next) { argument
61 super(next, port);
74 public ServerLogicalHandlerTube(WSBinding binding, SEIModel seiModel, Tube next, HandlerTube cousinTube) { argument
75 super(next, cousinTube);
H A DServerSOAPHandlerTube.java59 public ServerSOAPHandlerTube(WSBinding binding, WSDLPort port, Tube next) { argument
60 super(next, port);
77 public ServerSOAPHandlerTube(WSBinding binding, Tube next, HandlerTube cousinTube) { argument
78 super(next, cousinTube);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java254 * other by their {@link Edge#next} field.
259 * The next basic block in the basic block stack. This stack is used in the
265 Label next; field in class:Label
519 e.next = successors;
534 // if this block is a JSR block, then 'successors.next' leads
537 if ((status & Label.JSR) == 0 || e != successors.next) {
540 e = e.next;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMimeHeaders.java199 next:
201 MimeHeader hdr = (MimeHeader) iterator.next();
211 continue next;
225 public Object next() { method in class:MimeHeaders.MatchingIterator
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dlist.h29 and one to the next node in the list. The head of the list is
80 struct _list_item *next; member in struct:_list_item
83 struct _list_item *curr; /* in list head, pts to curr for 1st, next */

Completed in 286 milliseconds

<<11121314151617181920>>