Home | History | Annotate | Download | only in i18n

Lines Matching defs:roll

199 * <b>Note:</b> You should always use {@link #roll roll} and add rather
278 * example, to roll the current date up by three days, you can call
279 * <code>roll(Calendar.DATE, 3)</code>. If the
282 * For example, calling <code>roll(Calendar.DATE, 10)</code>
291 * This method is able to roll
294 * additional fields in their overrides of <code>roll</code>.
296 * <b>Note:</b> You should always use roll and {@link #add add} rather
308 void HebrewCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status)
324 // of ADAR_1, we need to roll an extra month to make up for it.
338 Calendar::roll(field, amount, status);
342 void HebrewCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) {
343 roll((UCalendarDateFields)field, amount, status);