Searched defs:next (Results 1 - 25 of 702) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/services/
H A DmemPtr.cpp33 jint SequenceGenerator::next() { function in class:SequenceGenerator
/openjdk7/jdk/test/java/io/charStreams/
H A DIntGenerator.java37 public int next(int max) { method in class:IntGenerator
H A DCharGenerator.java44 public char next() { method in class:CharGenerator
47 c = (char) (r.next(max - min) + min);
H A DStringGenerator.java60 public String next() { method in class:StringGenerator
64 int len = ig.next(80);
68 s.append(cg.next());
H A DABCOutputStream.java33 char next = ABCInputStream.firstChar(); field in class:ABCOutputStream
42 if (c != next)
44 + "Expected '" + next + "', "
46 next = ABCInputStream.nextChar(next);
H A DABCReader.java33 char next = 'a'; field in class:ABCReader
42 char c = next;
43 if (next == 'z')
44 next = '0';
45 else if (next == '9')
46 next = 'a';
48 next++;
H A DLineGenerator.java49 public String next() { method in class:LineGenerator
53 String l = sg.next();
60 t = ig.next(2);
/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/jdk/src/solaris/native/sun/awt/
H A Dcanvas.h62 struct FocusListElt * next; member in struct:FocusListElt
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.h29 struct _jarAttribute* next; member in struct:_jarAttribute
/openjdk7/langtools/test/tools/javac/generics/
H A DT4695847.java34 T4695847<T> next; field in class:T4695847
39 return 1+size(bt.next);
42 return (bt==null) ? 0 : 1+size(bt.next);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEventQueueItem.java32 public EventQueueItem next; field in class:EventQueueItem
/openjdk7/jdk/src/share/classes/java/util/
H A DIterator.java55 * (In other words, returns {@code true} if {@link #next} would
63 * Returns the next element in the iteration.
65 * @return the next element in the iteration
68 E next(); method in interface:Iterator
73 * only once per call to {@link #next}. The behavior of an iterator
81 * @throws IllegalStateException if the {@code next} method has not
83 * been called after the last call to the {@code next}
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNamingEnumeration.java45 * next(), invoking hasMore() would result in PartialResultException being thrown.
50 * When the n'th result has been returned by invoking next() on the
61 * next() or nextElement() when there are no elements left in the enumeration.
83 * Retrieves the next element in the enumeration.
85 * retrieving the next element to be caught and handled
88 * Note that <tt>next()</tt> can also throw the runtime exception
92 * that there was a problem in obtaining the next element,
100 * to retrieve the next element. See NamingException
102 * @exception java.util.NoSuchElementException If attempting to get the next element when none is available.
105 public T next() throw method in interface:NamingEnumeration
[all...]
/openjdk7/jdk/src/share/classes/com/sun/pept/ept/
H A DContactInfoListIterator.java62 public ContactInfo next(); method in interface:ContactInfoListIterator
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCircularList.java53 if (cv != cv.next) {
55 "Circular List Test failed, next != self");
71 public CircularListTest next = null; field in class:CircularListTest
76 list.next = list;
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DErrorMessage.java40 ErrorMessage next; field in class:ErrorMessage
/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/jdk/src/share/classes/com/sun/naming/internal/
H A DFactoryEnumeration.java46 * hasMore()/next() requests. An alternative would have been to use
67 public Object next() throws NamingException { method in class:FactoryEnumeration
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6935022.java57 boolean next = true;
59 while(rows <= endingRow && next) {
62 System.out.println("Rows="+rows+", end="+endingRow+", next="+next);
63 next = next(rows);
66 if (next)
70 private boolean next(int rows) { method in class:Test6935022
/openjdk7/hotspot/test/compiler/6973329/
H A DTest.java33 A next; field in class:A
45 A prev_next = a.next;
46 a.next = new_next;
/openjdk7/jdk/src/windows/native/sun/windows/
H A DObjectList.h37 next = NULL;
41 AwtObjectListItem* next; member in class:AwtObjectListItem
/openjdk7/jdk/test/java/lang/ref/SoftReference/
H A DBash.java42 public TestReference next; field in class:Bash.TestReference
46 next = head;
64 for (TestReference r = TestReference.head; r != null; r = r.next) {
/openjdk7/jdk/src/share/classes/sun/text/
H A DComposedCharIter.java34 * {@link #next} returns this value when there are no more composed characters
60 * Returns the next precomposed Unicode character.
61 * Repeated calls to <tt>next</tt> return all of the precomposed characters defined
64 * to <tt>next</tt> will return {@link #DONE}.
66 public int next() { method in class:ComposedCharIter
76 * recently returned by {@link #next}. The resulting decomposition is
/openjdk7/jdk/src/share/classes/sun/util/
H A DResourceBundleEnumeration.java55 String next = null; field in class:ResourceBundleEnumeration
58 if (next == null) {
60 next = iterator.next();
62 while (next == null && enumeration.hasMoreElements()) {
63 next = enumeration.nextElement();
64 if (set.contains(next)) {
65 next = null;
70 return next != null;
75 String result = next;
[all...]

Completed in 118 milliseconds

1234567891011>>