Searched defs:next (Results 126 - 150 of 702) sorted by relevance

1234567891011>>

/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/stream/buffer/
H A DFragmentedArray.java59 void setNext(FragmentedArray<T> next) { argument
60 _next = next;
61 if (next != null) {
62 next._previous = this;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaClientTube.java52 public WsaClientTube(WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
53 super(wsdlPort, binding, next);
67 return doInvoke(next,request);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractFilterTubeImpl.java45 protected final Tube next; field in class:AbstractFilterTubeImpl
47 protected AbstractFilterTubeImpl(Tube next) { argument
48 this.next = next;
53 if (that.next != null) {
54 this.next = cloner.copy(that.next);
56 this.next = null;
64 return doInvoke(next,request);
82 next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/soap/
H A DServerMUTube.java47 public ServerMUTube(ServerTubeAssemblerContext tubeContext, Tube next) { argument
48 super(tubeContext.getEndpoint().getBinding(), next);
70 * next pipe will be inovked.
78 return doInvoke(super.next, request);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DToken.java55 * A reference to the next regular (non-special) token from the input
62 public Token next; field in class:Token
69 * to the last of these special tokens, which in turn refers to the next
72 * The next fields of special tokens refer to other special tokens that
/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface.h39 struct _netaddr *next; member in struct:_netaddr
48 struct _netif *next; member in struct:_netif
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.cpp60 prev->next = e->next;
62 table[i] = e->next;
65 HashtableEntry* next = e->next; local
70 e = next;
73 e = e->next;
83 for (ListEntry* e = m_pHead; e != NULL; e = e->next) {
94 e->next = m_pHead;
103 for (ListEntry* e = m_pHead; e != NULL; prev = e, e = e->next) {
123 ListEntry* next = e->next; local
[all...]
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DValidateClass.java102 Validator next = null; field in class:Validator
106 next = n;
112 pw.writeObject(next);
119 next = (Validator)pr.readObject();
/openjdk7/jdk/test/java/io/StreamTokenizer/
H A DReadAhead.java46 private int next = 0; field in class:ReadAhead.LimitedInputStream
54 if (next >= limit)
56 return input.charAt(next++);
67 private int next = 0; field in class:ReadAhead.LimitedReader
75 if (next >= limit)
77 return input.charAt(next++);
/openjdk7/jdk/test/java/rmi/MarshalledObject/compare/
H A DCompare.java41 Node next; field in class:Compare.Node
103 cur = cur.next = new Node();
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c87 attribute->next = NULL;
91 context->tail->next = attribute;
127 jarAttribute* next = (jarAttribute*)head->next; local
131 head = next;
145 attributes = (jarAttribute*)attributes->next;
/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/jdk/src/share/classes/sun/text/
H A DCodePointIterator.java46 public abstract int next(); method in class:CodePointIterator
97 public int next() { method in class:CharArrayCodePointIterator
148 public int next() { method in class:CharSequenceCodePointIterator
199 public int next() { method in class:CharacterIteratorCodePointIterator
202 char cp2 = iter.next();
205 iter.next();
222 iter.next();
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java85 * @see UCharacterIterator#next()
87 public int next() { method in class:CharacterIteratorWrapper
89 iterator.next();
125 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
H A DReplaceableUCharacterIterator.java122 * Returns next UTF16 character and increments the iterator's currentIndex by 1.
126 * @return next UTF16 character in text or DONE if the new currentIndex is off the
129 public int next(){ method in class:ReplaceableUCharacterIterator
142 * @return next UTF16 character in text or DONE if the new currentIndex is off the
/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/test/javax/management/MBeanServer/
H A DMBeanServerNotificationTest.java85 MBeanServerDelegate.DELEGATE_NAME, next(), name);
87 private static long next = 0; field in class:MBeanServerNotificationTest.Registration
88 private static synchronized long next() {return next++;} method in class:MBeanServerNotificationTest.Registration
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DGlobs.java45 private static char next(String glob, int i) { method in class:Globs
71 char next = globPattern.charAt(i++);
72 if (isGlobMeta(next) || isRegexMeta(next)) {
75 regex.append(next);
91 if (next(globPattern, i) == '^') {
97 if (next(globPattern, i) == '!') {
102 if (next(globPattern, i) == '-') {
120 c == '&' && next(globPattern, i) == '&') {
131 if ((c = next(globPatter
[all...]
/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/xalan/internal/xsltc/
H A DNodeIterator.java36 * Callers should not call next() after it returns END.
38 public int next(); method in interface:NodeIterator
56 * Remembers the current node for the next call to gotoMark().
67 * i.e. subsequent call to next() should return END.
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DClonedNodeListIterator.java31 * of a CachedNodeListIterator. Its next() method retrieves the nodes from
55 public int next() { method in class:ClonedNodeListIterator
H A DDupFilterIterator.java35 * array is later sorted and duplicates are ignored in next().
61 * Last value returned by next().
102 while ((node = _source.next()) != END) {
120 public int next() { method in class:DupFilterIterator
122 final int next = _nodes.at(_current++);
123 if (next != _lastNext) {
124 return returnNode(_lastNext = next);
H A DFilterIterator.java94 public int next() { method in class:FilterIterator
96 while ((node = _source.next()) != END) {
H A DMatchingIterator.java35 * It is an iterator even though next() will never be called. It is used to
95 while ((node = _source.next()) != END && node != _match) {
107 public int next() { method in class:MatchingIterator
108 return _source.next();

Completed in 69 milliseconds

1234567891011>>