Searched defs:next (Results 326 - 350 of 702) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageWriterImpl.java52 * The next package name in the alpha-order list.
54 protected PackageDoc next; field in class:PackageWriterImpl
77 * @param next Next package in the sorted array.
80 PackageDoc packageDoc, PackageDoc prev, PackageDoc next)
85 this.next = next;
289 * @return a content tree for the next link
293 if (next == null) {
297 next.name());
79 PackageWriterImpl(ConfigurationImpl configuration, PackageDoc packageDoc, PackageDoc prev, PackageDoc next) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DSharedNameTable.java109 n = n.next;
115 n.next = hashes[h];
132 n = n.next;
146 n.next = hashes[h];
162 /** The next name occupying the same hash bucket.
164 NameImpl next; field in class:SharedNameTable.NameImpl
H A DUnsharedNameTable.java46 HashEntry next; field in class:UnsharedNameTable.HashEntry
107 hashes[h] = firstTableEntry = element.next;
111 previousNonNullTableEntry.next = element.next;
121 element = element.next;
136 Assert.checkNull(previousNonNullTableEntry.next, "previousNonNullTableEntry.next must be null.");
137 previousNonNullTableEntry.next = newEntry;
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipUtils.java175 private static char next(String glob, int i) { method in class:ZipUtils
201 char next = globPattern.charAt(i++);
202 if (isGlobMeta(next) || isRegexMeta(next)) {
205 regex.append(next);
213 if (next(globPattern, i) == '^') {
219 if (next(globPattern, i) == '!') {
224 if (next(globPattern, i) == '-') {
242 c == '&' && next(globPattern, i) == '&') {
253 if ((c = next(globPatter
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinfback.c108 static code *next; local
116 next = fixed;
117 lenfix = next;
119 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
124 distfix = next;
126 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
147 next = strm->next_in; \
158 strm->next_in = next; \
176 have = in(in_desc, &next); \
178 next
273 unsigned char FAR *next; /* next input */ local
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DTrieIterator.java89 * while(fcdIter.next(result)) {
99 * while(fcdIter.next(result)){
136 * <p>The next set of codepoints with the same value type will be
143 public final boolean next(Element element) method in class:TrieIterator
178 * Called by next() to extracts a 32 bit value from a trie value
209 * Finding the next element.
211 * next().
212 * We always store the next element before it is requested.
216 * @return true if the next range is found, false if we have to proceed to
231 // synwee check that next bloc
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DUplevelReference.java80 * The next item on the references list of the client.
82 UplevelReference next; field in class:UplevelReference
99 // of enclosing scopes. The next paragraph of this
112 // will have a single up-level "this$N" reference to the next
146 r != null; r = r.next) {
176 next = references;
180 while (!(prev.next == null || isEarlierThan(prev.next))) {
181 prev = prev.next;
183 next
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DTest.java244 while (last.next != null) {
245 last = last.next;
247 last.next = dl;
252 private DependentLink next; field in class:Test.DependentLink
270 return next;
276 Object val = iter.next();
279 if (next == null) {
283 next.recurseAndRun(env, test);
/openjdk7/jdk/src/share/demo/jvmti/agent_util/
H A Dagent_util.c154 char *next; local
160 next = get_token(list, ",", token, sizeof(token));
161 while ( next != NULL ) {
165 next = get_token(next, ",", token, sizeof(token));
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DBreakIteratorProviderImpl.java121 public int next() { method in class:BreakIteratorProviderImpl.FooBreakIterator
125 public int next(int n) { method in class:BreakIteratorProviderImpl.FooBreakIterator
/openjdk7/jdk/src/share/classes/sun/misc/
H A DTimer.java113 * continued, the next tick will happen remaingTime
136 Timer next; field in class:Timer
206 * Continue the timer. The next tick will come at getRemainingTime()
261 * does not take effect until after the next tick.
271 * Returns the remaining time before the timer's next tick.
279 * Sets the remaining time before the timer's next tick.
339 thread then processes the next timer in the queue.
394 timerQueue = timerQueue.next;
432 timer.next = timerQueue;
439 cur = cur.next;
559 TimerTickThread next = null; field in class:TimerTickThread
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DHeaderParser.java205 public Object next () { method in class:HeaderParser.ParserIterator
226 String key = (String)k.next();
/openjdk7/langtools/test/tools/javac/boxing/
H A DBoxing1.java109 x.next = y;
110 x.next.i = 4;
111 x.next.i += 4;
112 if (--x.next.i != 7) throw new Error();
113 if (x.next.i-- != 7) throw new Error();
114 if (x.next.i != 6) throw new Error();
133 Froobie next = null; field in class:Boxing1.Froobie
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DClassFileReader.java130 public ClassFile next() { method in class:ClassFileReader.FileIterator
213 public ClassFile next() { method in class:ClassFileReader.DirectoryReader.DirectoryIterator
303 public ClassFile next() { method in class:ClassFileReader.JarFileReader.JarFileIterator
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionHandle.java73 * doubly-linked list. From the outside only the next and the
84 InstructionHandle next, prev; // Will be set from the outside field in class:InstructionHandle
90 public final InstructionHandle getNext() { return next; }
135 ih_list = ih.next;
172 next = ih_list;
180 next = prev = null;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java51 public Object next() {
235 public Object next() { method in class:XSObjectListImpl.XSObjectListIterator
/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/jaxp/validation/
H A DSoftReferenceGrammarPool.java164 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
192 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
220 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
242 for (Entry entry = fGrammars[index]; entry != null ; entry = entry.next) {
355 entry.prev.next = entry.next;
358 fGrammars[entry.bucket] = entry.next;
360 if (entry.next != null) {
361 entry.next.prev = entry.prev;
391 public Entry next; field in class:SoftReferenceGrammarPool.Entry
395 Entry(int hash, int bucket, XMLGrammarDescription desc, Grammar grammar, Entry next, ReferenceQueue queue) argument
[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...]
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/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java207 * Traverse to the next node after the current node.
212 * @return the next node in the iteration, or DTM.NULL.
214 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.AncestorTraverser
220 * Traverse to the next node after the current node that is matched
227 * @return the next node in the iteration, or DTM.NULL.
229 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.AncestorTraverser
279 ? context : next(context, context, expandedTypeID);
290 * Traverse to the next node after the current node.
295 * @return the next node in the iteration, or DTM.NULL.
297 public int next(in method in class:DTMDefaultBaseTraversers.AttributeTraverser
313 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.AttributeTraverser
463 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.ChildTraverser
478 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.ChildTraverser
704 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.DescendantTraverser
733 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.DescendantTraverser
808 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.AllFromNodeTraverser
929 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.FollowingTraverser
961 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.FollowingTraverser
997 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.FollowingSiblingTraverser
1012 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.FollowingSiblingTraverser
1039 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.NamespaceDeclsTraverser
1057 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.NamespaceDeclsTraverser
1090 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.NamespaceTraverser
1108 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.NamespaceTraverser
1186 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.ParentTraverser
1204 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.ParentTraverser
1248 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.PrecedingTraverser
1277 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.PrecedingTraverser
1312 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.PrecedingAndAncestorTraverser
1340 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.PrecedingAndAncestorTraverser
1373 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.PrecedingSiblingTraverser
1388 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.PrecedingSiblingTraverser
1446 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.SelfTraverser
1461 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.SelfTraverser
1507 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.AllFromRootTraverser
1533 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.AllFromRootTraverser
1582 public int next(int context, int current) method in class:DTMDefaultBaseTraversers.RootTraverser
1597 public int next(int context, int current, int expandedTypeID) method in class:DTMDefaultBaseTraversers.RootTraverser
[all...]
H A DExpandedNameTable.java201 for (HashEntry e = m_table[index]; e != null; e = e.next)
262 old = old.next;
268 e.next = m_table[newIndex];
374 * The field next points to the next entry which is hashed into
382 HashEntry next; field in class:ExpandedNameTable.HashEntry
384 protected HashEntry(ExtendedType key, int value, int hash, HashEntry next) argument
389 this.next = next;
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamReader.java41 * next() and hasNext(). The data can be accessed using methods such as getEventType(),
44 * <p> The <a href="#next()">next()</a> method causes the reader to read the next parse event.
45 * The next() method returns an integer which identifies the type of event just read.
94 * <td> next(), getName(), getLocalName(), hasName(), getPrefix(),
101 * <td> next(), nextTag()
107 * <td> next(), nextTag()
113 * <td> next(), getName(), getLocalName(), hasName(), getPrefix(),
119 * <td> next(), getTextXX
205 public int next() throws XMLStreamException; method in interface:XMLStreamReader
[all...]
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DStreamReaderDelegate.java85 public int next() method in class:StreamReaderDelegate
88 return reader.next();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyBasicImpl.java144 public boolean next() { method in class:DynAnyBasicImpl

Completed in 61 milliseconds

<<11121314151617181920>>