Searched refs:lowest (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/util/Locale/
H A Dbug4122700.java39 Locale lowest = null;
43 if (lowest == null || systemLocales[j].toString().compareTo(lowest.toString()) < 0)
44 lowest = systemLocales[j];
46 locales[i] = lowest;
H A Dbug4123285.java35 Locale lowest = null;
39 if (lowest == null || systemLocales[j].toString().compareTo(lowest.toString()) < 0)
40 lowest = systemLocales[j];
42 locales[i] = lowest;
/openjdk7/jdk/test/javax/management/remote/mandatory/util/
H A DCacheMapTest.java88 int lowest = size - cacheSize;
89 // lowest value that can still be in cache if LRU is respected
94 if (xx < lowest || xx >= size) {
96 "expected none earlier than " + lowest);
/openjdk7/jdk/test/java/util/Arrays/
H A DCorrect.java73 Object lowest = new Integer(Integer.MAX_VALUE);
76 if (((Comparable)a1[y]).compareTo((Comparable)lowest) < 0) {
77 lowest = a1[y];
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerTool.java688 int lowest;
692 lowest = i;
695 if (serverIds[j] < serverIds[lowest]) lowest = j;
698 if (lowest != i) {
700 serverIds[i] = serverIds[lowest];
701 serverIds[lowest] = temp;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java163 * The math:lowest function returns the nodes in the node set whose value is the minimum value
171 * in the node set has a non-numeric value, math:lowest will return an empty node set.
179 public static NodeList lowest (NodeList nl) method in class:ExsltMath
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2034 // base address of a library is the lowest address of its loaded
5010 address lowest = (address) dlinfo.dli_sname; local
5011 if (!lowest) lowest = (address) dlinfo.dli_fbase;
5012 if (begin < lowest) begin = lowest;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1764 // base address of a library is the lowest address of its loaded
4797 address lowest = (address) dlinfo.dli_sname; local
4798 if (!lowest) lowest = (address) dlinfo.dli_fbase;
4799 if (begin < lowest) begin = lowest;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6136 address lowest = (address) dlinfo.dli_sname; local
6137 if (!lowest) lowest = (address) dlinfo.dli_fbase;
6138 if (begin < lowest) begin = lowest;

Completed in 163 milliseconds