Searched defs:roll (Results 1 - 7 of 7) sorted by relevance

/external/icu4c/i18n/
H A Dhebrwcal.cpp199 * <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) function in class:HebrewCalendar
324 // of ADAR_1, we need to roll a
342 void HebrewCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:HebrewCalendar
[all...]
H A Dchnsecal.cpp367 void ChineseCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) { function in class:ChineseCalendar
406 // Now do the standard roll computation on m, with the
420 Calendar::roll(field, amount, status);
425 void ChineseCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:ChineseCalendar
426 roll((UCalendarDateFields)field, amount, status);
725 * and a day-of-month. Used by add() and roll().
H A Dgregocal.cpp28 * Fixed bug in roll()
34 * 12/09/99 aliu Fixed j81, calculation errors and roll bugs
817 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:GregorianCalendar
818 roll((UCalendarDateFields) field, amount, status);
822 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) function in class:GregorianCalendar
905 Calendar::roll(field, amount, status);
919 fprintf(stderr, "%s:%d: roll DOM %d -> %.0lf ms \n",
928 Calendar::roll(field, amount, status);
932 fprintf(stderr, "%s:%d: roll WOM %d ??????????????????? \n",
936 // GregorianCalendar::roll( WEEK_OF_MONT
[all...]
H A Dcalendar.cpp1152 // for implementing add, roll, and computeFields.
1165 * their own overrides of {@link #roll roll} and {@link #add add}.
1447 void Calendar::roll(EDateFields field, int32_t amount, UErrorCode& status) function in class:Calendar
1449 roll((UCalendarDateFields)field, amount, status);
1452 void Calendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) function in class:Calendar
1471 // These are the standard roll instructions. These work for all
1516 // E.g., <jan31>.roll(MONTH, 1) -> <feb28> or <feb29>.
1544 // This is tricky, because during the roll we may have to shift
1603 // Now roll betwee
[all...]
/external/qemu/android/
H A Dhw-sensors.c77 float roll; member in struct:__anon3315
128 * orientation:<azimuth>:<pitch>:<roll>
294 sensor->u.orientation.roll);
449 _hwSensors_setOrientation( HwSensors* h, float azimuth, float pitch, float roll )
454 s->u.orientation.roll = roll;
/external/icu4c/i18n/unicode/
H A Dcalendar.h539 * time field. For example, to roll the current date up by one day, call
540 * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
541 * will roll the year value in the range between getMinimum(Calendar::YEAR) and the
547 * hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the hour value in the range
550 * NOTE: Do not use this method -- use roll(EDateFields, int, UErrorCode&) instead.
558 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, UBool up, UErrorCode& status) instead.
560 inline void roll(EDateFields field, UBool up, UErrorCode& status);
564 * time field. For example, to roll the current date up by one day, call
565 * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
566 * will roll th
2152 Calendar::roll(UCalendarDateFields field, UBool up, UErrorCode& status) function in class:Calendar
2158 Calendar::roll(EDateFields field, UBool up, UErrorCode& status) function in class:Calendar
[all...]
/external/icu4c/tools/tzcode/
H A Dzic.c417 static char roll[TZ_MAX_LEAPS]; variable
1837 if (roll[i]) {
2594 roll[j] = roll[j - 1];
2598 roll[i] = rolling;

Completed in 79 milliseconds