HomeSort by relevance Sort by last modified time
    Searched defs:roll (Results 1 - 25 of 27) sorted by null

1 2

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 692 * @tests java.util.Calendar#roll(int, int)
698 // roll up
699 calendar.roll(Calendar.DATE, 5);
702 // roll down
703 calendar.roll(Calendar.DATE, -5);
706 // roll 0
707 calendar.roll(Calendar.DATE, 0);
710 // roll overweight
712 calendar.roll(Calendar.MONTH, 1);
786 public void roll(int field, boolean increment) method in class:CalendarTest.MockCalendar
    [all...]
GregorianCalendarTest.java 514 * @tests java.util.GregorianCalendar#roll(int, int)
517 // Test for method void java.util.GregorianCalendar.roll(int, int)
520 gc.roll(Calendar.DAY_OF_MONTH, -1);
521 assertTrue("Failed to roll DAY_OF_MONTH down by 1", gc
525 gc.roll(Calendar.DAY_OF_MONTH, 25);
526 assertTrue("Failed to roll DAY_OF_MONTH up by 25", gc
530 gc.roll(Calendar.DAY_OF_MONTH, -10);
531 assertTrue("Failed to roll DAY_OF_MONTH down by 10", gc
537 * @tests java.util.GregorianCalendar#roll(int, boolean)
540 // Test for method void java.util.GregorianCalendar.roll(int, boolean
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 692 * java.util.Calendar#roll(int, int)
698 // roll up
699 calendar.roll(Calendar.DATE, 5);
702 // roll down
703 calendar.roll(Calendar.DATE, -5);
706 // roll 0
707 calendar.roll(Calendar.DATE, 0);
710 // roll overweight
712 calendar.roll(Calendar.MONTH, 1);
786 public void roll(int field, boolean increment) method in class:CalendarTest.MockCalendar
    [all...]
  /development/ndk/platforms/android-9/include/android/
sensor.h 102 float roll; member in struct:ASensorVector::__anon1290::__anon1292
  /frameworks/base/native/include/android/
sensor.h 102 float roll; member in struct:ASensorVector::__anon15457::__anon15459
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/
sensor.h 102 float roll; member in struct:ASensorVector::__anon24242::__anon24244
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/
sensor.h 102 float roll; member in struct:ASensorVector::__anon25217::__anon25219
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/
sensor.h 102 float roll; member in struct:ASensorVector::__anon25269::__anon25271
  /external/icu4c/i18n/
hebrwcal.cpp 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) function in class:HebrewCalendar
324 // of ADAR_1, we need to roll an extra month to make up for it
342 void HebrewCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:HebrewCalendar
    [all...]
chnsecal.cpp 367 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().
gregocal.cpp 28 * Fixed bug in roll()
34 * 12/09/99 aliu Fixed j81, calculation errors and roll bugs
812 * Roll a field by a signed amount.
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
    [all...]
calendar.cpp 1467 void Calendar::roll(EDateFields field, int32_t amount, UErrorCode& status) function in class:Calendar
1472 void Calendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) function in class:Calendar
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 136 * roll: Rotation around Y axis (-90<=roll<=90), with positive values when
139 * Note: For historical reasons the roll angle is positive in the clockwise
145 * (+roll) .--> |
147 * | | roll: rotation around Y axis
150 * note that +Y == -roll
154 * Note: This definition is different from yaw, pitch and roll used in aviation
205 * with the definition of roll given earlier.
317 float roll; member in struct:__anon16237::__anon16238::__anon16240
  /external/icu4c/i18n/unicode/
calendar.h 545 * time field. For example, to roll the current date up by one day, call
546 * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
547 * will roll the year value in the range between getMinimum(Calendar::YEAR) and the
553 * hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the hour value in the range
556 * NOTE: Do not use this method -- use roll(EDateFields, int, UErrorCode&) instead.
564 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, UBool up, UErrorCode& status) instead.
566 inline void roll(EDateFields field, UBool up, UErrorCode& status);
570 * time field. For example, to roll the current date up by one day, call
571 * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
572 * will roll the year value in the range between getMinimum(Calendar::YEAR) and th
2215 Calendar::roll(UCalendarDateFields field, UBool up, UErrorCode& status) function in class:Calendar
2221 Calendar::roll(EDateFields field, UBool up, UErrorCode& status) function in class:Calendar
    [all...]
  /external/qemu/android/
hw-sensors.c 93 float roll; member in struct:__anon9436
150 * orientation:<azimuth>:<pitch>:<roll>
316 sensor->u.orientation.roll);
525 qemu_put_float(f, s->u.orientation.roll);
576 s->u.orientation.roll = qemu_get_float(f);
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 1289 public void roll(int field, int value) { method in class:GregorianCalendar
1407 public void roll(int field, boolean increment) { method in class:GregorianCalendar
1408 roll(field, increment ? 1 : -1); method
    [all...]
Calendar.java 159 * {@code set()}, {@code add()}, and {@code roll()}.
228 * <strong>{@code roll(f, delta)}</strong> adds {@code delta} to
234 * <strong>Roll rule</strong>. Larger fields are unchanged after the call. A
241 * set to August 31, 1999. Calling <code>roll(Calendar.MONTH,
246 * sets it to the closest possible value, 30. Finally, the <strong>roll rule</strong>
252 * {@code roll(Calendar.WEEK_OF_MONTH, -1)} sets the calendar to Tuesday
254 * sets the calendar to Sunday May 30, 1999. This is because the roll rule
264 * and {@code roll()}, consider a user interface component with
272 * {@code add()} or {@code roll()}, depending on whether larger
277 * <b>Note:</b> You should always use {@code roll} and {@code add} rather tha
922 roll(field, true); method
947 roll(field, false); method
1180 public void roll(int field, int value) { method in class:Calendar
1184 roll(field, increment); method
1199 public abstract void roll(int field, boolean increment); method in class:Calendar
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 417 static char roll[TZ_MAX_LEAPS]; variable
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 538 milliseconds

1 2