Searched refs:next (Results 176 - 200 of 2130) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryMember.java213 for (BinaryAttribute att = atts ; att != null ; att = att.next) {
222 BinaryAttribute walker = null, next = null;
227 atts = atts.next;
230 for (walker = atts; walker != null; walker = next) {
231 next = walker.next;
232 if (next != null) {
233 if (next.name.equals(name)) {
234 walker.next = next
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java43 Line next; field in class:MessageFile.Line
58 return (next != null) && text.endsWith("\\");
68 assert prev == null && next == null;
70 l.next = next;
71 if (next == null)
74 next.prev = l;
75 next = l;
85 assert prev == null && next == null;
87 l.next
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DWeakHashMap.java163 * The next size value at which to resize (capacity * load factor).
395 Entry<K,V> next = p.next;
398 table[i] = next;
400 prev.next = next;
401 // Must not null out e.next;
408 p = next;
425 * entries that will be removed before next attempted access
438 * entries that will be removed before next attempte
780 Entry<K,V> next; field in class:WeakHashMap.Entry
785 Entry(Object key, V value, ReferenceQueue<Object> queue, int hash, Entry<K,V> next) argument
908 public V next() { method in class:WeakHashMap.ValueIterator
914 public K next() { method in class:WeakHashMap.KeyIterator
920 public Map.Entry<K,V> next() { method in class:WeakHashMap.EntryIterator
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLNameTranslatorImpl_save.sjava104 String next = (String) IDL_KEYWORDS[i];
107 String keywordAllCaps = next.toUpperCase();
262 IDLMethodInfo outer = (IDLMethodInfo) outerIter.next();
265 IDLMethodInfo inner = (IDLMethodInfo) innerIter.next();
280 IDLMethodInfo next = (IDLMethodcurrentInfo) iter.next();
281 next.mangledName =
282 mangleIdentifier(next.mangledName,
283 next.propertyType != null);
291 IDLMethodInfo outer = (IDLMethodInfo) outerIter.next();
[all...]
H A DIDLNameTranslatorImpl.java113 String next = (String) IDL_KEYWORDS[i];
116 String keywordAllCaps = next.toUpperCase();
277 IDLMethodInfo outer = (IDLMethodInfo) outerIter.next();
280 IDLMethodInfo inner = (IDLMethodInfo) innerIter.next();
295 IDLMethodInfo next = (IDLMethodInfo) iter.next();
296 next.mangledName =
297 mangleIdentifier(next.mangledName, next.isProperty);
305 IDLMethodInfo outer = (IDLMethodInfo) outerIter.next();
[all...]
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java213 Entry<V> next = p.next;
218 table[i] = next;
222 prev.next = next;
224 e.next = null; // Help GC
229 p = next;
246 * entries that will be removed before next attempted access
262 * entries that will be removed before next attempted access
296 e = e.next;
505 private Entry<V> next; field in class:WeakPool.Entry
510 Entry(final V key, final ReferenceQueue<V> queue, final int hash, final Entry<V> next) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DPolicyConstraintsExtension.java155 DerValue next = in.getDerValue();
157 if (next.isContextSpecific(TAG_REQUIRE) && !next.isConstructed()) {
161 next.resetTag(DerValue.tag_Integer);
162 this.require = next.getInteger();
164 } else if (next.isContextSpecific(TAG_INHIBIT) &&
165 !next.isConstructed()) {
169 next.resetTag(DerValue.tag_Integer);
170 this.inhibit = next.getInteger();
/openjdk7/jdk/test/java/util/PriorityQueue/
H A DForgetMeNot.java41 new Fun() { void f() { it.next(); }});
87 equal(it.next(), 1);
109 equal(it.next(), 0);
110 equal(it.next(), 4);
111 equal(it.next(), 1);
112 equal(it.next(), 6);
119 equal(it.next(), 7);
125 equal(it.next(), 3);
126 equal(it.next(), 2);
/openjdk7/hotspot/src/share/vm/classfile/
H A Dplaceholders.hpp133 SeenThread* next() const { return _stnext;} function in class:SeenThread
143 seen = seen->next();
208 PlaceholderEntry* next() const { function in class:PlaceholderEntry
209 return (PlaceholderEntry*)HashtableEntry<Symbol*, mtClass>::next();
281 SeenThread* next; local
282 while ((next = seen->next()) != NULL) {
283 seen = next;
298 seen = seen->next();
316 prev->set_next(seen->next());
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSAPanel.java72 SAListener listener = (SAListener) iter.next();
83 SAListener listener = (SAListener) iter.next();
90 SAListener listener = (SAListener) iter.next();
97 SAListener listener = (SAListener) iter.next();
104 SAListener listener = (SAListener) iter.next();
111 SAListener listener = (SAListener) iter.next();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSemaphore.java195 int next = current + releases;
196 if (next < current) // overflow
198 if (compareAndSetState(current, next))
206 int next = current - reductions;
207 if (next > current) // underflow
209 if (compareAndSetState(current, next))
300 * semaphore and the current thread is next to be assigned a permit; or
330 * semaphore and the current thread is next to be assigned a permit.
385 * semaphore and the current thread is next to be assigned a permit; or
448 * methods for this semaphore, the current thread is next t
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.hpp147 HeapWord* next = scroll_forward; local
148 while (next <= addr) {
149 scroll_forward = next;
150 next += oop(next)->size();
153 assert(addr <= next, "wrong order for arg and next");
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DAbstractTypeListNode.java53 ((Node)it.next()).document(writer);
61 TypeNode tn = (TypeNode)it.next();
69 TypeNode tn = (TypeNode)it.next();
92 TypeNode tn = (TypeNode)it.next();
103 TypeNode tn = (TypeNode)it.next();
115 TypeNode tn = (TypeNode)it.next();
/openjdk7/hotspot/src/share/vm/runtime/
H A DreflectionUtils.hpp41 // for (KlassStream st(k, false, false); !st.eos(); st.next()) {
65 virtual void next() = 0;
77 // for (MethodStream st(k, false, false); !st.eos(); st.next()) {
90 next();
93 void next() { _index--; } function in class:MethodStream
102 // for (FieldStream st(k, false, false); !st.eos(); st.next()) {
116 next();
119 void next() { _index -= 1; } function in class:FieldStream
194 // for (FilteredFieldStream st(k, false, false); !st.eos(); st.next()) {
210 void next() { function in class:FilteredFieldStream
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DMimeTypeRange.java91 cutter.next("/");
97 String sep = cutter.next("[;,]");
102 cutter.next("=");
107 cutter.next("\"");
109 cutter.next("\"");
149 if(types.size()==1) return types.iterator().next();
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java111 return (next != null);
114 public Instruction next() {
115 if (next == null)
118 current = next;
120 next = (pc < code.length ? new Instruction(code, pc) : null);
130 Instruction next = new Instruction(code, pc);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DQueue.java60 newElt.next = head;
99 tail.next = null;
141 cursor = cursor.next;
192 cursor = cursor.next;
201 QueueElement next = null; field in class:QueueElement
212 (next == null ? " null" : " next")+"]";
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DLinkedQueue.java78 * at head_.next. After each take, the old first node becomes the head.
112 last_.next = p;
125 LinkedNode first = head_.next;
180 LinkedNode first = head_.next;
189 return head_.next == null;
226 LinkedNode next = null; field in class:LinkedQueue.LinkedNode
228 LinkedNode(Object x, LinkedNode n) { value = x; next = n; }
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DParserForXMLSchema.java44 this.next();
48 this.next();
85 this.next();
90 this.next();
95 this.next();
105 this.next();
108 this.next(); // Skips ')'
124 this.next();
128 this.next();
132 this.next();
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DServiceRegistry.java120 Class category = (Class)categories.next();
228 Class c = (Class)iter.next();
301 SubRegistry reg = (SubRegistry)regs.next();
331 registerServiceProvider(providers.next());
393 SubRegistry reg = (SubRegistry)regs.next();
416 SubRegistry reg = (SubRegistry)regs.next();
534 Class c = (Class)iter.next();
662 SubRegistry reg = (SubRegistry)iter.next();
772 Object provider = iter.next();
798 private T next field in class:FilterIterator
823 public T next() { method in class:FilterIterator
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java73 * <h3>Pipe next</h3>
76 * and this pipe passed in as the <tt>next</tt> parameter will receive a {@link Message}
77 * from newly created stub. All the methods taking Tube <<next>> parameter are deprecated. JAX-WS Runtime takes care of
78 * creating the tubeline when the <tt>next</tt> parameter is not passed. This gives flexibility for the JAX-WS Runtime
113 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
117 public static Dispatch<SOAPMessage> createSAAJDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) { argument
119 return new com.sun.xml.internal.ws.client.dispatch.SOAPMessageDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
127 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
140 * createDispatch(port,owner,binding,DataSource.class,mode,next);
144 public static Dispatch<DataSource> createDataSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, argument
171 createSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) argument
208 createDispatch(QName portName, WSService owner, WSBinding binding, Class<T> clazz, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) argument
287 createJAXBDispatch( QName portName, WSService owner, WSBinding binding, JAXBContext jaxbContext, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) argument
328 createMessageDispatch( QName portName, WSService owner, WSBinding binding, Tube next, @Nullable WSEndpointReference epr) argument
370 createPortProxy( WSService service, WSBinding binding, SEIModel model, Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DSafePolicyReader.java61 PolicyRecord next; field in class:SafePolicyReader.PolicyRecord
72 insertedRec.next = this;
78 for (current = head ; null != current.next ; ) {
81 insertedRec.next = current;
84 oneBeforeCurrent.next = insertedRec;
85 insertedRec.next = current;
90 insertedRec.next = current.next;
91 current.next = insertedRec;
95 current = current.next;
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DX509Factory.java502 int next = is.read();
503 if (next == -1) {
508 if (next == '-') {
512 last = next;
523 int next = is.read();
524 if (next == -1) {
527 if (next == '\n') {
531 if (next == '\r') {
532 next = is.read();
533 if (next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DEntityReferenceImpl.java228 ChildNode next = firstChild.nextSibling;
229 while (next != null){
231 if (next.getNodeType() == Node.ENTITY_REFERENCE_NODE){
232 value = ((EntityReferenceImpl)next).getEntityRefValue();
234 else if (next.getNodeType() == Node.TEXT_NODE){
235 value = next.getNodeValue();
242 next = next.nextSibling;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DXIncludeParserConfiguration.java162 XMLDocumentHandler next = prev.getDocumentHandler();
165 if (next != null) {
166 fXIncludeHandler.setDocumentHandler(next);
167 next.setDocumentSource(fXIncludeHandler);
203 XMLDocumentHandler next = prev.getDocumentHandler();
206 if (next != null) {
207 fXIncludeHandler.setDocumentHandler(next);
208 next.setDocumentSource(fXIncludeHandler);

Completed in 110 milliseconds

1234567891011>>