/openjdk7/hotspot/src/share/vm/services/ |
H A D | memPtr.cpp | 33 jint SequenceGenerator::next() { function in class:SequenceGenerator
|
/openjdk7/jdk/test/java/io/charStreams/ |
H A D | IntGenerator.java | 37 public int next(int max) { method in class:IntGenerator
|
H A D | CharGenerator.java | 44 public char next() { method in class:CharGenerator 47 c = (char) (r.next(max - min) + min);
|
H A D | StringGenerator.java | 60 public String next() { method in class:StringGenerator 64 int len = ig.next(80); 68 s.append(cg.next());
|
H A D | ABCOutputStream.java | 33 char next = ABCInputStream.firstChar(); field in class:ABCOutputStream 42 if (c != next) 44 + "Expected '" + next + "', " 46 next = ABCInputStream.nextChar(next);
|
H A D | ABCReader.java | 33 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 D | LineGenerator.java | 49 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 D | MultiDoc.java | 40 * 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 D | canvas.h | 62 struct FocusListElt * next; member in struct:FocusListElt
|
/openjdk7/jdk/src/share/instrument/ |
H A D | JarFacade.h | 29 struct _jarAttribute* next; member in struct:_jarAttribute
|
/openjdk7/langtools/test/tools/javac/generics/ |
H A D | T4695847.java | 34 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 D | EventQueueItem.java | 32 public EventQueueItem next; field in class:EventQueueItem
|
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | Iterator.java | 55 * (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 D | NamingEnumeration.java | 45 * 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 D | ContactInfoListIterator.java | 62 public ContactInfo next(); method in interface:ContactInfoListIterator
|
/openjdk7/jdk/test/java/io/Serializable/oldTests/ |
H A D | CircularList.java | 53 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 D | ErrorMessage.java | 40 ErrorMessage next; field in class:ErrorMessage
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | ConstIterator.java | 43 public Object next() { method in class:ConstIterator 44 return iter.next();
|
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/ |
H A D | FactoryEnumeration.java | 46 * 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 D | Test6935022.java | 57 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 D | Test.java | 33 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 D | ObjectList.h | 37 next = NULL; 41 AwtObjectListItem* next; member in class:AwtObjectListItem
|
/openjdk7/jdk/test/java/lang/ref/SoftReference/ |
H A D | Bash.java | 42 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 D | ComposedCharIter.java | 34 * {@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 D | ResourceBundleEnumeration.java | 55 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...] |