Searched defs:nonEmpty (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java93 public boolean nonEmpty() { method in class:List
129 for (List<A> l = this; l.nonEmpty(); l = l.tail)
154 while (l.nonEmpty() && i < vec.length) {
170 for (List<A> l = tail; l.nonEmpty(); l = l.tail) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java144 public boolean nonEmpty() { method in class:List
190 while (rev.nonEmpty()) {
209 for (List<A> l = this; l.nonEmpty(); l = l.tail)
244 while (l.nonEmpty() && i < vec.length) {
271 for (List<A> l = tail; l.nonEmpty(); l = l.tail) {
H A DListBuffer.java99 public boolean nonEmpty() { method in class:ListBuffer
141 while (xs.nonEmpty()) {

Completed in 36 milliseconds