Searched defs:next (Results 526 - 550 of 702) sorted by relevance

<<212223242526272829

/openjdk7/hotspot/src/share/vm/oops/
H A Dklass.cpp425 klassOop next = sub->klass_part()->next_sibling_oop(); local
426 if (next != NULL && !is_alive->do_object_b(next)) {
432 tty->print_cr("[Unlinking class (sibling) %s]", next->klass_part()->external_name());
435 next = next->klass_part()->next_sibling_oop();
436 } while (next != NULL && !is_alive->do_object_b(next));
437 sub->klass_part()->set_next_sibling(next);
439 sub = next;
[all...]
H A DmethodDataOop.cpp582 while ((c = stream.next()) >= 0) {
731 ProfileData* next = data_at(next_index); local
732 return next;
742 stream->next();
780 while ((c = stream.next()) >= 0) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dcoalesce.cpp66 uint next = _uf_map[cur]; local
67 while( next != cur ) { // Scan chain of equivalences
68 assert( next < cur, "always union smaller" );
69 cur = next; // until find a fixed-point
70 next = _uf_map[cur];
74 while( lrg != next ) {
76 _uf_map.map(lrg, next);
97 uint next = _uf_map[lrg];
98 while( next != lrg ) { // Scan chain of equivalences
99 assert( next < lr
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java76 public Instruction next() { method in class:Instruction
94 /** A fake instruction at this pc whose next() will be at nextpc. */
133 // Speed hack: Instruction.next reuses self if possible.
656 i = i.next();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParser.java1106 if ((oldToken = token).next != null) token = token.next;
1107 else token = token.next = token_source.getNextToken();
1117 c = c.next;
1131 if (jj_scanpos.next == null) {
1132 jj_lastpos = jj_scanpos = jj_scanpos.next = token_source.getNextToken();
1134 jj_lastpos = jj_scanpos = jj_scanpos.next;
1137 jj_scanpos = jj_scanpos.next;
1141 while (tok != null && tok != jj_scanpos) { i++; tok = tok.next; }
1148 if (token.next !
1282 JJCalls next; field in class:Parser.JJCalls
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java787 * one moment and unpopulated the next.
990 public Object next() throws NamingException { method in class:NameClassPairEnumeration
1015 return next();
1038 public Object next() throws NamingException { method in class:BindingEnumeration
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java535 mods[i] = new ModificationItem(mod_op, (Attribute)attrEnum.next());
586 existingAttr.add(modVals.next());
606 existingAttr.remove(modVals.next());
786 return next();
792 public Object next() throws NamingException { method in class:HierMemDirCtx.FlatNames
816 public Object next() throws NamingException { method in class:HierMemDirCtx.FlatBindings
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java827 * Index of element to be returned by subsequent call to next.
835 public Event next() { method in class:EventSetImpl.Itr
846 return next();
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp150 SolarisAttachOperation* next() { return _next; } function in class:SolarisAttachOperation
151 void set_next(SolarisAttachOperation* next) { _next = next; } argument
184 char* next() { function in class:ArgumentIterator
240 char* ver = args.next();
250 char* name = args.next();
258 char* arg = args.next();
468 set_head(op->next());
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.hpp40 ValueMapEntry(intx hash, Value value, int nesting, ValueMapEntry* next) argument
44 , _next(next)
51 ValueMapEntry* next() { return _next; } function in class:ValueMapEntry
53 void set_next(ValueMapEntry* next) { _next = next; } argument
72 // next element in the list and decrementing _entry_count.
/openjdk7/jdk/make/tools/reorder/tools/
H A Dmcount.c78 struct SymChain *next; member in struct:SymChain
84 struct ObjFileList *next; member in struct:ObjFileList
170 objFileList->next = elfInfo->objFileList;
350 objFileList = objFileList->next) {
426 for (chain = elfInfo->symChainHead; chain != NULL; chain = chain->next) {
432 chain->next = elfInfo->symChainHead;
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Ports.cpp81 PortControl *next; // to organize PortControl list member in struct:PortControl
155 for (PortControl *ctrl = mixer->portControls; ctrl != NULL; ctrl = ctrl->next) {
166 break; // goto next control
278 mixer->portControls = control2delete->next;
444 control->next = mixer->portControls;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp495 QueueNode* next() const { return _next; } function in class:JvmtiDeferredEventQueue::QueueNode
497 void set_next(QueueNode* next) { _next = next; } argument
H A DjvmtiThreadState.hpp65 JvmtiEnvThreadState* next(JvmtiEnvThreadState* ets);
149 JvmtiThreadState *next() { function in class:JvmtiThreadState
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsignature.hpp363 void next() { function in class:SignatureStream
H A Dsweeper.cpp297 // to the next nmethod. Other blobs can be deleted by other
299 nmethod* next = CodeCache::next_nmethod(_current); local
307 _current = next;
566 nm = CodeCache::alive_nmethod(CodeCache::next(nm));
H A Dvm_operations.hpp154 VM_Operation *next() const { return _next; } function in class:VM_Operation
156 void set_next(VM_Operation *next) { _next = next; } argument
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp76 CmdLine next() { function in class:DCmdIter
105 bool next(TRAPS);
260 bool has_arg = iter.next(CHECK);
326 // Pointer to the next factory in the singly-linked list of registered
350 DCmdFactory* next() { return _next; } function in class:DCmdFactory
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java172 //now create the boundary for next encode() call
473 public int next() throws XMLStreamException { method in class:MtomCodec.MtomXMLStreamReaderEx
474 int event = reader.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java735 public int next() throws XMLStreamException { method in class:DOMStreamReader
764 throw new IllegalStateException("DOMStreamReader: Calling next() at END_DOCUMENT");
790 // fall through next
822 int eventType = next();
829 eventType = next();
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c599 char *next; local
609 next = get_token(options, ",=", token, sizeof(token));
612 while ( next != NULL ) {
632 next = get_token(next, ",=", number, (int)sizeof(number));
634 if ( next==NULL ) {
658 next = get_token(next, ",=", gdata->include+used, maxlen);
660 if ( next==NULL ) {
682 next
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.h180 unsigned int next; /* hash chain: index into jzfile->entries */ member in struct:jzcell
224 struct jzfile *next; /* next zip file in search list */ member in struct:jzfile
228 jint metacurrent; /* the next empty slot in metanames array */
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemmgr.c85 * header with a link to the next pool of the same class.
97 small_pool_ptr next; /* next in list of pools */ member in struct:small_pool_struct::__anon722
108 large_pool_ptr next; /* next in list of pools */ member in struct:large_pool_struct::__anon723
166 jvirt_sarray_ptr next; /* link to next virtual sarray control block */ member in struct:jvirt_sarray_control
182 jvirt_barray_ptr next; /* link to next virtual barray control block */ member in struct:jvirt_barray_control
204 lhdr_ptr = lhdr_ptr->hdr.next) {
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLayoutEngine.cpp462 float next, xAdvance; local
464 glyphStorage.getGlyphPosition(p + 1, next, ignore, success);
466 xAdvance = next - prev;
473 prev = next;
504 float next, xAdvance; local
506 glyphStorage.getGlyphPosition(p + 1, next, ignore, success);
508 xAdvance = next - prev;
515 prev = next;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c833 cmsDICTentry *entry, *next; local
847 next = entry ->Next;
850 entry = next;

Completed in 1357 milliseconds

<<212223242526272829