Home | History | Annotate | Download | only in format

Lines Matching defs:toMillis

223      * See {@link #toMillis(boolean)} for more information about when to
231 long timeInMillis = calculator.toMillis(ignoreDst);
719 * Here is an example where <tt>toMillis(true)</tt> adjusts the time,
727 * millis = time.toMillis(false); // millis is Nov 4, 2007, 11pm
728 * millis = time.toMillis(true); // millis is Nov 5, 2007, 12am
732 * To avoid this problem, use <tt>toMillis(true)</tt>
736 * <tt>toMillis(false)</tt>.
739 * You should also use <tt>toMillis(false)</tt> if you want
751 public long toMillis(boolean ignoreDst) {
753 return calculator.toMillis(ignoreDst);
952 long millis = time.toMillis(true);
962 * by {@link #toMillis(boolean)} or {@link #normalize(boolean)})
1075 public long toMillis(boolean ignoreDst) {
1202 toMillis(false /* use isDst */) / 1000
1243 // normalized. Note: For dates that do not exist: toMillis() can return -1, which
1245 long am = aObject.toMillis(false /* use isDst */);
1246 long bm = bObject.toMillis(false /* use isDst */);