Searched refs:next (Results 76 - 100 of 2130) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/io/charStreams/
H A DCharGenerator.java44 public char next() { method in class:CharGenerator
47 c = (char) (r.next(max - min) + min);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageConsumerQueue.java31 ImageConsumerQueue next; field in class:ImageConsumerQueue
44 for (ImageConsumerQueue cq = cqbase; cq != null; cq = cq.next) {
47 cqbase = cq.next;
49 cqprev.next = cq.next;
60 for (ImageConsumerQueue cq = cqbase; cq != null; cq = cq.next) {
H A DImageWatched.java65 * synchronized block so Link.next modifications
79 * block so Link.next modifications are not safe.
94 private Link next; field in class:ImageWatched.WeakLink
96 public WeakLink(ImageObserver obs, Link next) { argument
98 this.next = next;
102 return (myref.get() == iw || next.isWatcher(iw));
109 return next.removeWatcher(iw);
115 return next;
118 // and update my next lin
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.cpp42 InsertionRecord *next; member in struct:InsertionRecord
66 head = head->next;
98 insertion->next = NULL;
99 tail->next = insertion;
103 insertion->next = head;
112 for (InsertionRecord *rec = head; rec != NULL; rec = rec->next) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DPrefixArray.java46 private PrefixEntry next; field in class:PrefixArray.PrefixEntry
55 private NamespaceEntry next; field in class:PrefixArray.NamespaceEntry
95 _namespacePool = _namespacePool.next;
96 _inScopeNamespaces[0].next = null;
103 _prefixPool = _prefixPool.next;
104 _prefixMap[index].next = null;
109 _namespacePool = _namespacePool.next;
110 _inScopeNamespaces[1].next = null;
118 _prefixPool = _prefixPool.next;
119 _prefixMap[index].next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DMTOMXmlOutput.java47 private final XmlOutput next; field in class:MTOMXmlOutput
55 public MTOMXmlOutput(XmlOutput next) { argument
56 this.next = next;
61 next.startDocument(serializer, fragment, nsUriIndex2prefixIndex, nsContext);
65 next.endDocument(fragment);
70 next.beginStartTag(name);
76 next.beginStartTag(prefix, localName);
82 next.attribute(name, value);
86 next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java106 * If this field is non-null, the next instruction to execute is
110 private Tube next; field in class:Fiber
241 next = tubeline;
249 next = tubeline;
260 * If a fiber was suspended without specifying the next {@link Tube},
262 * by calling the {@link Tube#processResponse(Packet)} method on the next/first
267 * If a fiber was suspended with specifying the next {@link Tube},
269 * by calling the next tube's {@link Tube#processRequest(Packet)} method with the
299 * on the next/first {@link Tube} in the {@link Fiber}'s processing stack with
342 * {@link Tube#processResponse(Packet)}, before the next tub
528 invoke(Tube next) argument
533 execute(Tube next) argument
556 doRun(Tube next) argument
574 _doRun(Tube next) argument
601 __doRun(Tube next) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java51 TagStack next; field in class:TagStack
60 TagStack(TagElement tag, TagStack next) { argument
63 this.next = next;
70 if (next != null) {
71 inclusions = next.inclusions;
72 exclusions = next.exclusions;
73 pre = next.pre;
98 * Return the element that must come next in the
107 * what comes next i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DDetailImpl.java82 SOAPElement next = null;
86 if (next == null) {
88 next = (SOAPElement) eachNode.next();
89 if (next instanceof DetailEntry) {
92 next = null;
95 return next != null;
98 public Object next() {
102 last = next;
103 next
[all...]
/openjdk7/jdk/test/java/io/Serializable/evolution/RenamePackage/install/
H A DSerialDriver.java44 SerialDriver next; field in class:SerialDriver
49 next = null;
52 public SerialDriver(String name, SerialDriver next) { argument
54 this.next = next;
127 String nextString = next != null ? next.toString() : "<null>";
128 return "name =" + name + " next = <" + nextString + ">";
/openjdk7/jdk/test/java/io/Serializable/evolution/RenamePackage/test/
H A DSerialDriver.java43 SerialDriver next; field in class:SerialDriver
47 next = null;
50 public SerialDriver(String name, SerialDriver next) { argument
52 this.next = next;
123 String nextString = next != null ? next.toString() : "<null>";
124 return "name =" + name + " next = <" + nextString + ">";
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryAttribute.java44 BinaryAttribute next; field in class:BinaryAttribute
49 BinaryAttribute(Identifier name, byte data[], BinaryAttribute next) { argument
52 this.next = next;
85 for (BinaryAttribute att = attributes; att != null; att = att.next)
90 for (BinaryAttribute att = attributes; att != null; att = att.next) {
110 public BinaryAttribute getNextAttribute() { return next; }
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java652 * is nevertheless advanced to next element in the <code>Set</code>.
841 Principal p = pI.next();
850 Object o = pI.next();
862 Object o = pI.next();
906 Principal p = pIterator.next();
914 hashCode ^= getCredHashCode(pubCIterator.next());
1016 public E next() {
1018 return i.next();
1028 i.next();
1032 return i.next();
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DLinkedList.java97 * (last.next == null && last.item != null)
145 l.next = newNode;
161 pred.next = newNode;
172 final Node<E> next = f.next;
174 f.next = null; // help GC
175 first = next;
176 if (next == null)
179 next.prev = null;
198 prev.next
871 private Node<E> next; field in class:LinkedList.ListItr
885 public E next() { method in class:LinkedList.ListItr
959 Node<E> next; field in class:LinkedList.Node
962 Node(Node<E> prev, E element, Node<E> next) argument
984 public E next() { method in class:LinkedList.DescendingIterator
[all...]
H A DRandom.java98 long next = current * 181783497276652981L;
99 if (seedUniquifier.compareAndSet(current, next))
100 return next;
110 * number generator which is maintained by method {@link #next}.
159 * Generates the next pseudorandom number. Subclasses should
162 * <p>The general contract of {@code next} is that it returns an
167 * likely to be {@code 0} or {@code 1}. The method {@code next} is
179 * @return the next pseudorandom value from this random number
183 protected int next(int bits) { method in class:Random
221 * Returns the next pseudorando
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocument.java61 Service next = (Service) iter.next();
62 String targetNamespace = next.getDefining().getTargetNamespaceURI();
63 String localName = next.getName();
74 Service next = (Service) iter.next();
75 //Iterator ports = next.ports();
76 for (Iterator piter = next.ports(); piter.hasNext();) {
78 Port pnext = (Port) piter.next();
94 Service next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DInterningXmlVisitor.java39 private final XmlVisitor next; field in class:InterningXmlVisitor
43 public InterningXmlVisitor(XmlVisitor next) { argument
44 this.next = next;
48 next.startDocument(locator,nsContext);
52 next.endDocument();
60 next.startElement(tagName);
66 next.endElement(tagName);
70 next.startPrefixMapping(intern(prefix),intern(nsUri));
74 next
[all...]
H A DSAXConnector.java53 private final XmlVisitor next; field in class:SAXConnector
72 public SAXConnector(XmlVisitor next, LocatorEx externalLocator ) { argument
73 this.next = next;
74 this.context = next.getContext();
75 this.predictor = next.getPredictor();
95 next.startDocument(loc,null);
99 next.endDocument();
103 next.startPrefixMapping(prefix,uri);
107 next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMultipleNodeCounter.java71 int next = _node;
72 ancestors.add(next); // include self
73 while ((next = _document.getParent(next)) > END &&
74 !matchesFrom(next)) {
75 ancestors.add(next);
92 while ((next = _precSiblings.next()) != END) {
93 if (matchesCount(next)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DPipeAdapter.java47 private final Pipe next; field in class:PipeAdapter
87 private PipeAdapter(Pipe next) { argument
88 this.next = next;
96 this.next = ((PipeCloner)cloner).copy(that.next);
104 return doReturnWith(next.process(p));
117 next.preDestroy();
125 return super.toString()+"["+next.toString()+"]";
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectAdapterIdBase.java46 String str1 = (String)(iter1.next()) ;
47 String str2 = (String)(iter2.next()) ;
61 String str = (String)(iter.next()) ;
74 String str = (String)(iter.next()) ;
94 String str = (String)(iter.next()) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DLongHashMap.java44 private Entry next; field in class:LongHashMap.Entry
46 Entry(int hash, long key, Object value, Entry next) { argument
50 this.next = next;
273 for (Entry e = tab[index]; e != null; e = e.next)
293 for (Entry e = tab[i] ; e != null ; e = e.next)
298 for (Entry e = tab[i] ; e != null ; e = e.next)
324 for (Entry e = tab[index] ; e != null ; e = e.next) {
371 prev = e, e = e.next) {
375 prev.next
453 newEntry(int hash, long key, Object value, Entry next) argument
[all...]
/openjdk7/hotspot/test/compiler/6724218/
H A DTest.java32 Test next = null; field in class:Test
43 list = t.next;
47 t.next = cache;
61 cache = t.next;
67 t.next = list;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DTeeXMLDocumentFilterImpl.java43 * The next component in the pipeline who receives the event.
47 private XMLDocumentHandler next; field in class:TeeXMLDocumentFilterImpl
76 return next;
80 next = handler;
91 next.characters(text, augs);
96 next.comment(text, augs);
102 next.doctypeDecl(rootElement, publicId, systemId, augs);
107 next.emptyElement(element, attributes, augs);
112 next.endCDATA(augs);
117 next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTeeXMLDocumentFilterImpl.java83 * The next component in the pipeline who receives the event.
87 private XMLDocumentHandler next; field in class:TeeXMLDocumentFilterImpl
118 return next;
122 next = handler;
132 next.characters(text, augs);
137 next.comment(text, augs);
143 next.doctypeDecl(rootElement, publicId, systemId, augs);
148 next.emptyElement(element, attributes, augs);
153 next.endCDATA(augs);
158 next
[all...]

Completed in 111 milliseconds

1234567891011>>