Searched refs:next (Results 26 - 50 of 2130) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DServerPipeAssemblerContext.java55 public @NotNull Pipe createServerMUPipe(@NotNull Pipe next) { argument
56 return PipeAdapter.adapt(super.createServerMUTube(PipeAdapter.adapt(next)));
62 public Pipe createDumpPipe(String name, PrintStream out, Pipe next) { argument
63 return PipeAdapter.adapt(super.createDumpTube(name, out, PipeAdapter.adapt(next)));
70 public @NotNull Pipe createMonitoringPipe(@NotNull Pipe next) { argument
71 return PipeAdapter.adapt(super.createMonitoringTube(PipeAdapter.adapt(next)));
77 public @NotNull Pipe createSecurityPipe(@NotNull Pipe next) { argument
78 return PipeAdapter.adapt(super.createSecurityTube(PipeAdapter.adapt(next)));
84 public @NotNull Pipe createValidationPipe(@NotNull Pipe next) { argument
85 return PipeAdapter.adapt(super.createValidationTube(PipeAdapter.adapt(next)));
91 createHandlerPipe(@otNull Pipe next) argument
112 createWsaPipe(Pipe next) argument
[all...]
H A DNextAction.java41 Tube next; field in class:NextAction
58 this.next = v;
64 * Indicates that the next action should be to
65 * invoke the next tube's {@link Tube#processRequest(Packet)},
69 public void invoke(Tube next, Packet p) { argument
70 set(INVOKE, next, p, null);
74 * Indicates that the next action should be to
75 * invoke the next tube's {@link Tube#processRequest(Packet)},
79 public void invokeAndForget(Tube next, Packet p) { argument
80 set(INVOKE_AND_FORGET, next,
118 suspend(Tube next) argument
[all...]
/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/jdk/src/share/classes/sun/misc/
H A DCleaner.java75 next = null, field in class:Cleaner
80 cl.next = first;
90 if (cl.next == cl)
95 if (cl.next != null)
96 first = cl.next;
100 if (cl.next != null)
101 cl.next.prev = cl.prev;
103 cl.prev.next = cl.next;
106 cl.next
[all...]
H A DCompoundEnumeration.java43 private boolean next() { method in class:CompoundEnumeration
54 return next();
58 if (!next()) {
/openjdk7/hotspot/test/compiler/6843752/
H A DTest.java36 public Item next; field in class:Test.Item
46 item.next = item;
50 item.next = head;
52 head.prev.next = item;
59 if (item.next == item) {
62 item.prev.next = item.next;
63 item.next.prev = item.prev;
65 list = item.next;
68 item.next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSingleNodeCounter.java71 int next = _node;
73 boolean matchesCount = matchesCount(next);
76 while ((next = _document.getParent(next)) > END) {
77 if (matchesCount(next)) {
80 if (matchesFrom(next)) {
81 next = END;
87 if (next != END) {
88 int from = next;
101 _countSiblings.setStartNode(next);
[all...]
H A DAnyNodeCounter.java64 int next = _node;
67 while (next >= root && !matchesFrom(next)) {
68 if (matchesCount(next)) {
71 next--;
73 //%HZ%: parent(next)?
75 if (next == root) {
79 --next;
110 int next = _node;
114 while (next >
[all...]
/openjdk7/jdk/src/share/classes/javax/print/
H A DMultiDoc.java40 * current doc in the list and a pointer to the next node (multidoc) in the
43 * on to the next doc, the Print Job can call the multidoc's {@link #next()
44 * <CODE>next()</CODE>} method to get the next multidoc, which contains the
45 * next doc. So Print Job code for accessing a multidoc might look like this:
53 * current = current.next();
67 * data from the print data representation object. Get the next multidoc from
73 * save the doc in a list. Get the next multidoc from the current multidoc, and
76 * data from the print data representation object. Go to the next do
134 public MultiDoc next() throws IOException; method in interface:MultiDoc
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp45 MonitorChunk* next() const { return _next; } function in class:MonitorChunk
46 void set_next(MonitorChunk* next) { _next = next; } argument
49 bool is_linked() const { return next() != NULL; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/
H A DMessagingException.java45 * The next exception in the chain.
49 private Exception next; field in class:MessagingException
77 next = e;
81 * Get the next exception chained to this one. If the
82 * next exception is a MessagingException, the chain
85 * @return next Exception, null if none.
88 return next;
103 ((MessagingException)theEnd).next != null) {
104 theEnd = ((MessagingException)theEnd).next;
109 ((MessagingException)theEnd).next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DForeignAttributesImpl.java44 final ForeignAttributesImpl next; field in class:ForeignAttributesImpl
46 public ForeignAttributesImpl(ValidationContext context, Locator locator, ForeignAttributesImpl next) { argument
49 this.next = next;
/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...]
H A DObjectList.cpp47 item->next = m_head;
61 m_head = item->next;
63 lastItem->next = item->next;
70 item = item->next;
90 item = item->next;
110 AwtObjectListItem* next = item->next; local
113 item = next;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DRangeValueIterator.java67 * while (iterator.next(result)) {
124 * <p>Gets the next maximal result range with a common value and returns
133 public boolean next(Element element); method in interface:RangeValueIterator
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DConstIterator.java43 public Object next() { method in class:ConstIterator
44 return iter.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java42 Attr next = null; field in class:NamespaceContextIterator
71 while (next == null && context != null) {
78 next = (Attr) currentAttribute;
94 return next != null;
97 public Object next() { method in class:NamespaceContextIterator
107 if (next == null) {
110 last = next;
111 next = null;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DChunk.java34 volatile Chunk next; field in class:Chunk
49 return next = new Chunk(data.createNext(dataHead, buf));
/openjdk7/langtools/test/tools/javac/foreach/
H A DForeach.java37 int next = 1;
39 return next <= (1 << 12);
44 public Integer next() {
46 return new Integer(next);
48 next <<= 1;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLDocumentFilterImpl.java77 * that simply passes through events to the next component.
87 private XMLDocumentHandler next; field in class:XMLDocumentFilterImpl
92 this.next = handler;
96 return next;
113 next.characters(text, augs);
117 next.comment(text, augs);
122 next.doctypeDecl(rootElement, publicId, systemId, augs);
126 next.emptyElement(element, attributes, augs);
130 next.endCDATA(augs);
134 next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DValidatingUnmarshaller.java43 private final XmlVisitor next; field in class:ValidatingUnmarshaller
48 * {@link TextPredictor} of the next {@link XmlVisitor}.
57 public ValidatingUnmarshaller( Schema schema, XmlVisitor next ) {
59 this.next = next;
60 this.predictor = next.getPredictor();
70 next.startDocument(locator,nsContext);
76 next.endDocument();
87 next.startElement(tagName);
92 next
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java100 header.next = header.previous = header;
126 return header.next.element;
149 return remove(header.next);
168 addBefore(e, header.next);
230 for (Entry<E> e = header.next; e != header; e = e.next) {
284 predecessor.next = e;
297 Entry<E> e = header.next;
299 Entry<E> next = e.next;
654 private Entry<E> next; field in class:IdentityLinkedList.ListItr
677 public E next() { method in class:IdentityLinkedList.ListItr
749 Entry<E> next; field in class:IdentityLinkedList.Entry
752 Entry(E element, Entry<E> next, Entry<E> previous) argument
795 public E next() { method in class:IdentityLinkedList.DescendingIterator
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DWeakIdentityMap.java48 private int threshold = 6; // the next size value at which to resize
58 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
73 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
114 Entry<T> next = current.next;
117 this.table[index] = next;
120 prev.next = next;
123 entry.next = null; // Help GC
128 current = next;
168 private Entry<T> next; field in class:WeakIdentityMap.Entry
170 Entry(Object key, int hash, T value, ReferenceQueue<Object> queue, Entry<T> next) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnv.java46 /** The next enclosing environment.
48 public Env<A> next; field in class:Env
62 /** The next enclosing class definition.
66 /** The next enclosing method definition.
82 this.next = null;
102 that.next = this;
121 while (env1 != null && env1.tree.getTag() != tag) env1 = env1.next;
131 Env<A> next = Env.this;
133 return next.outer != null;
135 public Env<A> next() {
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/
H A DShaderList.c57 info->next = programList->head;
71 ShaderInfo *curr = info->next;
74 prev->next = NULL;
81 curr = curr->next;
112 prev->next = info->next;
113 info->next = programList->head;
119 info = info->next;
136 ShaderInfo *tmp = info->next;

Completed in 108 milliseconds

1234567891011>>