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

/libcore/ojluni/src/main/java/java/security/
H A DUnresolvedPermissionCollection.java79 UnresolvedPermission up = (UnresolvedPermission) permission;
83 v = perms.get(up.getName());
86 perms.put(up.getName(), v);
90 v.add(up);
/libcore/
H A DNativeCode.mk57 # Set up the default state. Note: We use CLEAR_VARS here, even though
60 # set up.
/libcore/ojluni/src/main/java/java/util/
H A DGregorianCalendar.java264 * // set up rules for Daylight Saving Time
1066 * Adds or subtracts (up/down) a single unit of time on the given time
1074 * @param up indicates if the value of the specified calendar field is to be
1075 * rolled up or rolled down. Use <code>true</code> if rolling up, <code>false</code> otherwise.
1083 public void roll(int field, boolean up) { argument
1084 roll(field, up ? +1 : -1);
H A DCalendar.java877 // - 0 (default) for version up to JDK 1.1.5
1055 * This allows you to sync up the calendar field values with
1999 * Adds or subtracts (up/down) a single unit of time on the given time
2001 * date up by one day, you can achieve it by calling:
2013 * @param up indicates if the value of the specified time field is to be
2014 * rolled up or rolled down. Use true if rolling up, false otherwise.
2018 abstract public void roll(int field, boolean up); argument
2067 * AFTER it up to the next call to complete().

Completed in 141 milliseconds