Searched refs:next (Results 576 - 600 of 2130) sorted by relevance

<<21222324252627282930>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java184 BIProperty next = getDefault();
185 if(next!=null) return next.getPropertyName(forConstant);
206 BIProperty next = getDefault();
207 if(next!=null) return next.getBaseType();
249 BIProperty next = getDefault();
250 if(next!=null) return next.generateElementProperty();
274 BIProperty next
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLTypesUtil.java85 Method next = methods[i];
86 validateExceptions(next);
530 Class next = directInterfaces[i];
531 Method[] methods = next.getMethods();
544 String methodName = (String) iter.next();
581 Field next = fields[i];
582 Class fieldType = next.getType();
585 String msg = "Constant field '" + next.getName() +
586 "' in class '" + next.getDeclaringClass().getName() +
587 "' has invalid type' " + next
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.cpp344 HeapRegion* next = curr->next(); local
347 curr = next;
367 HeapRegion* next = curr->next(); local
377 _head = next;
380 prev->set_next(next);
382 if (next == NULL) {
403 curr = next;
442 curr = curr->next();
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_sessmgmt.c443 newNode->next = NULL;
451 /* go to the last entry; i.e. the first node which's 'next' is NULL.
454 while (currentNode->next != NULL) {
455 currentNode = currentNode->next;
457 currentNode->next = newNode;
479 * the last entry; i.e. the first node which's 'next' is NULL.
484 while ((currentNode->hSession != hSession) && (currentNode->next != NULL)) {
486 currentNode = currentNode->next;
493 notifyListHead = currentNode->next;
495 previousNode->next
[all...]
/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/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/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DDataCollectorBase.java106 ParserAction pa = (ParserAction)(iter.next()) ;
330 String name = (String)(propertyNames.next()) ;
333 String prefix = (String)(iter.next()) ;
352 String name = (String)(names.next()) ;
372 String name = (String)(iter.next()) ;
384 public Object next() { return enumeration.nextElement() ; }
460 String element = (String)(iter.next()) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicCDebugInfoDataBase.java123 BasicType t = (BasicType) iter.next();
132 ((BasicSym) iter.next()).resolve(this, listener);
135 ((BasicSym) iter.next()).resolve(this, listener);
161 types.add(iter.next());
166 Type t = (Type) iter.next();
207 BasicType t = (BasicType) iter.next();
341 Map.Entry entry = (Map.Entry) iter.next();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java117 * volatile-writes of table elements and entry "next" fields
160 * of two, at least two to avoid immediate resizing on next use
266 volatile HashEntry<K,V> next; field in class:ConcurrentHashMap.HashEntry
268 HashEntry(int hash, K key, V value, HashEntry<K,V> next) { argument
272 this.next = next;
276 * Sets next field with volatile write semantics. (See above
291 (k.getDeclaredField("next"));
451 e = e.next;
487 * reused because their next field
1376 public final K next() { return super.nextEntry().key; } method in class:ConcurrentHashMap.KeyIterator
1384 public final V next() { return super.nextEntry().value; } method in class:ConcurrentHashMap.ValueIterator
1420 public Map.Entry<K,V> next() { method in class:ConcurrentHashMap.EntryIterator
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp138 ProtectionDomainEntry(oop protection_domain, ProtectionDomainEntry* next) { argument
140 _next = next;
143 ProtectionDomainEntry* next() { return _next; } function in class:ProtectionDomainEntry
168 DictionaryEntry* next() const { function in class:DictionaryEntry
169 return (DictionaryEntry*)HashtableEntry<klassOop, mtClass>::next();
250 SymbolPropertyEntry* next() const { function in class:SymbolPropertyEntry
251 return (SymbolPropertyEntry*)HashtableEntry<Symbol*, mtSymbol>::next();
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp130 CodeBlob* CodeCache::next(CodeBlob* cb) { function in class:CodeCache
132 return (CodeBlob*)_heap->next(cb);
138 while (cb != NULL && !cb->is_alive()) cb = next(cb);
145 while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
153 cb = next(cb);
160 cb = next(cb);
162 cb = next(cb);
245 #define FOR_ALL_BLOBS(var) for (CodeBlob *var = first() ; var != NULL; var = next(var) )
246 #define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
247 #define FOR_ALL_ALIVE_NMETHODS(var) for (nmethod *var = alive_nmethod(first()); var != NULL; var = alive_nmethod(next(va
363 nmethod* next = cur->scavenge_root_link(); local
385 nmethod* next = cur->scavenge_root_link(); local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java539 ClassDefinition next;
541 next = (ClassDefinition) e.nextElement();
543 if (next.isInnerClass()) {
546 current.addDependency(next.getClassDeclaration());
547 next.addDependency(current.getClassDeclaration());
548 current = next;
1112 newMsg.next = errors;
1125 ErrorMessage next;
1127 while ((next = current.next) !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java224 * <li>A next-line character ('\u0085'),</li>
328 * char OPNEXT - next node (relative offset) *
339 static final char OP_BRANCH = '|'; // node match this alternative or the next one
812 int next, opcode, opdata;
818 next = node + (short)instruction[node + offsetNext];
829 if ((idxNew = matchNodes(next, maxNode, idx)) != -1)
834 while ((once++ == 0) && (idx = matchNodes(node + nodeSize, next, idx)) != -1);
839 while ((idx = matchNodes(node + nodeSize, next, idx)) != -1)
842 if ((idxNew = matchNodes(next, maxNode, idx)) != -1)
853 if ((idxNew = matchNodes(next, maxNod
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp123 for( uint next = 0; next < ideal_nodes.size(); ++next ) {
124 Node* n = ideal_nodes.at(next);
182 for (int next = 0; next < ptnodes_length; ++next) {
183 PointsToNode* ptn = ptnodes_worklist.at(next);
207 for (int next = 0; next < non_escaped_lengt
[all...]
/openjdk7/jdk/test/javax/security/auth/PrivateCredentialPermission/
H A DSubset.java59 * - is advanced to the next item in the list of creds.
116 Object o = iter1.next();
164 Object o = iter1.next();
351 Object o = iter1.next();
374 Object o = iter1.next();
386 Object o = iter1.next();
402 Object o = iter1.next();
429 Object o = iter1.next();
502 Object o = iter.next();
586 Object o = iter1.next();
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThreads.java170 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
178 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
184 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
199 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
214 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
/openjdk7/jdk/src/share/classes/javax/print/
H A DPrintServiceLookup.java183 PrintServiceLookup lus = (PrintServiceLookup)psIterator.next();
214 Object lus = psIterator.next();
347 los.add(iterator.next());
374 PrintServiceLookup lus = (PrintServiceLookup)psIterator.next();
432 PrintServiceLookup lus = (PrintServiceLookup)psIterator.next();
/openjdk7/jdk/src/share/classes/java/util/
H A DServiceLoader.java351 nextName = pending.next();
355 public S next() { method in class:ServiceLoader.LazyIterator
401 * {@link java.util.Iterator#next next} methods can therefore throw a
406 * exception or error is thrown as the next provider is located and
411 * iterator will make a best effort to locate and instantiate the next
442 public S next() {
444 return knownProviders.next().getValue();
445 return lookupIterator.next();
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp143 Win32AttachOperation* next() const { return _next; } function in class:Win32AttachOperation
144 void set_next(Win32AttachOperation* next) { _next = next; } argument
206 set_available(op->next());
243 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/hotspot/src/share/vm/utilities/
H A Dhashtable.hpp48 // Link to next element in the linked list for this bucket. EXCEPT
76 BasicHashtableEntry<F>* next() const { function in class:BasicHashtableEntry
80 void set_next(BasicHashtableEntry<F>* next) { argument
81 _next = next;
110 HashtableEntry* next() const { function in class:HashtableEntry
111 return (HashtableEntry*)BasicHashtableEntry<F>::next();
309 // causes a GC, the next would fail.
H A Dstack.inline.hpp155 E* next; local
158 next = _cache;
162 next = alloc(segment_bytes());
163 DEBUG_ONLY(zap_segment(next, true);)
166 this->_cur_seg = set_link(next, _cur_seg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DFastInfosetConnector.java76 event = fastInfosetStreamReader.next();
106 // Peek at the next event to see if there are
120 event=fastInfosetStreamReader.next();
123 fastInfosetStreamReader.next(); // move beyond the end tag.
175 fastInfosetStreamReader.next();
181 fastInfosetStreamReader.next();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassTree.java161 Collections.sort(it.next());
164 Collections.sort(it.next());
196 add(implementingclasses, iter.next().asClassDoc(), cd);
299 subInterfacesIter.next()).listIterator();
301 c = implementingClassesIter.next();
/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...]

Completed in 146 milliseconds

<<21222324252627282930>>