Searched defs:when (Results 1 - 4 of 4) sorted by relevance

/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DDdmVmInternal.java39 * @param when when to send the next HPIF chunk
40 * @return true on success. false if 'when' is bad or if there was
43 native public static boolean heapInfoNotify(int when); argument
51 native public static boolean heapSegmentNotify(int when, int what, argument
/libcore/ojluni/src/main/java/java/util/
H A DDate.java389 * the time when the Date class is initialized.
925 * @param when a date.
928 * earlier than the instant represented by <tt>when</tt>;
930 * @exception NullPointerException if <code>when</code> is null.
932 public boolean before(Date when) { argument
933 return getMillisOf(this) < getMillisOf(when);
939 * @param when a date.
942 * instant represented by <tt>when</tt>;
944 * @exception NullPointerException if <code>when</code> is null.
946 public boolean after(Date when) { argument
[all...]
H A DCalendar.java127 * (from 1 to 7). These numbers are taken from the locale resource data when a
241 * field <code>f</code>. Overflow occurs when a field value exceeds its
270 * rule 2, since it is expected to change when the month changes in a
355 // back out to fields is made when necessary. This is implemented by the
359 // ranges when they are regenerated.
743 // Recomputation of the time and fields happens when the object needs
765 * Pseudo-time-stamps which specify when each field was set. There
857 * values which are greater than 1 represents the (pseudo) time when the
1925 * compareTo(when) < 0
1927 * if and only if <code>when</cod
1936 before(Object when) argument
1957 after(Object when) argument
[all...]
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java93 * method is not particularly useful when it comes to historical or future times as it does not
346 * Ensure that when deserializing an instance that {@link #mDstSavings} is always 0 when
557 public int getOffset(long when) { argument
558 int offsetIndex = findOffsetIndexForTimeInMilliseconds(when);
569 long when = time.getTime();
570 int offsetIndex = findOffsetIndexForTimeInMilliseconds(when);
768 * occur for other reasons such as when a zone changes its raw offset.
845 * <p>This is used when a caller has made an assertion about standard time / DST that cannot
849 * were in. We must correct for any DST change that should have been applied when the
[all...]

Completed in 290 milliseconds