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

/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixUriUtils.java100 static URI toUri(UnixPath up) { argument
101 byte[] path = up.toAbsolutePath().asByteArray();
118 if (UnixFileAttributes.get(up, true).isDirectory())
/libcore/ojluni/src/main/java/java/util/
H A DJapaneseImperialCalendar.java75 * and reads <JRE_HOME>/lib/calendars.properties at the start-up.
511 public void roll(int field, boolean up) { argument
512 roll(field, up ? +1 : -1);
H A DGregorianCalendar.java267 * // set up rules for Daylight Saving Time
1101 * Adds or subtracts (up/down) a single unit of time on the given time
1109 * @param up indicates if the value of the specified calendar field is to be
1110 * rolled up or rolled down. Use <code>true</code> if rolling up, <code>false</code> otherwise.
1119 public void roll(int field, boolean up) { argument
1120 roll(field, up ? +1 : -1);
H A DCalendar.java964 // - 0 (default) for version up to JDK 1.1.5
1715 * This allows you to sync up the calendar field values with
2800 * Adds or subtracts (up/down) a single unit of time on the given time
2802 * date up by one day, you can achieve it by calling:
2814 * @param up indicates if the value of the specified time field is to be
2815 * rolled up or rolled down. Use true if rolling up, false otherwise.
2819 abstract public void roll(int field, boolean up); argument
2868 * AFTER it up to the next call to complete().

Completed in 45 milliseconds