Searched refs:hrs (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/
H A DG1CollectedHeap.java89 return hrs().length();
92 private HeapRegionSeq hrs() { method in class:G1CollectedHeap
116 return hrs().heapRegionIterator();
/openjdk7/jdk/src/share/classes/java/util/
H A DDate.java202 * <code>hrs</code>, and <code>min</code> arguments, in the local
208 * @param hrs the hours between 0-23.
213 * hrs, min)</code> or <code>GregorianCalendar(year + 1900,
214 * month, date, hrs, min)</code>.
217 public Date(int year, int month, int date, int hrs, int min) { argument
218 this(year, month, date, hrs, min, 0);
225 * <code>hrs</code>, <code>min</code>, and <code>sec</code> arguments,
231 * @param hrs the hours between 0-23.
237 * hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,
238 * month, date, hrs, mi
241 Date(int year, int month, int date, int hrs, int min, int sec) argument
315 UTC(int year, int month, int date, int hrs, int min, int sec) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java96 int hrs = offset/(60*60*1000);
99 char posneg = hrs < 0? '-': '+';
100 buff.append(posneg).append(formatDigits(hrs)).append(':').append(formatDigits(min));
107 * @param q hrs or minutes.
108 * @return two-digit String representation of hrs or minutes.

Completed in 44 milliseconds