HomeSort by relevance Sort by last modified time
    Searched refs:roll (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CalendarTestFmwk.java 135 static public final boolean ROLL = true;
139 * Process test cases for <code>add</code> and <code>roll</code> methods.
145 * <li>3: field to roll or add to
146 * <li>4: amount to roll or add
158 * @param roll <code>true</code> or <code>ROLL</code> to test the <code>roll</code> method;
161 protected void doRollAdd(boolean roll, Calendar cal, int[][] tests)
163 String name = roll ? "rolling" : "adding";
177 if (roll) {
    [all...]
DangiTest.java 299 * nastiness with roll is the MONTH field around leap months.
324 * Test the behavior of KoreanLunarCalendar.roll(). The only real
325 * nastiness with roll is the MONTH field around leap months.
352 doRollAddDangi(ROLL, cal, tests);
355 void doRollAddDangi(boolean roll, Calendar cal, int[][] tests) {
356 String name = roll ? "rolling" : "adding";
366 if (roll) {
367 cal.roll(test[4], test[5]);
ChineseTest.java 438 * nastiness with roll is the MONTH field around leap months.
463 * Test the behavior of ChineseCalendar.roll(). The only real
464 * nastiness with roll is the MONTH field around leap months.
491 doRollAdd(ROLL, cal, tests);
494 void doRollAdd(boolean roll, ChineseCalendar cal, int[][] tests) {
495 String name = roll ? "rolling" : "adding";
505 if (roll) {
506 cal.roll(test[4], test[5]);
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Calendar.java 150 * <code>set()</code>, <code>add()</code>, and <code>roll()</code>.</p>
215 * <p><strong><code>roll(f, delta)</code></strong> adds
221 * <p><strong>Roll rule</strong>. Larger fields are unchanged after the
228 * originally set to August 31, 1999. Calling <code>roll(Calendar.MONTH,
233 * value, 30. Finally, the <strong>roll rule</strong> maintains the
238 * <code>roll(Calendar.WEEK_OF_MONTH, -1)</code> sets the calendar to
241 * Sunday May 30, 1999. This is because the roll rule imposes an
251 * <code>add()</code> and <code>roll()</code>, consider a user interface
260 * <code>add()</code> or <code>roll()</code>, depending on whether larger
264 * <p><b>Note:</b> You should always use {@link #roll roll} and {@link #add add} rathe
1664 public final void roll(int field, boolean up) method in class:Calendar
1725 public void roll(int field, int amount) { method in class:Calendar
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CalendarTestFmwk.java 132 static public final boolean ROLL = true;
136 * Process test cases for <code>add</code> and <code>roll</code> methods.
142 * <li>3: field to roll or add to
143 * <li>4: amount to roll or add
155 * @param roll <code>true</code> or <code>ROLL</code> to test the <code>roll</code> method;
158 protected void doRollAdd(boolean roll, Calendar cal, int[][] tests)
160 String name = roll ? "rolling" : "adding";
174 if (roll) {
    [all...]
DangiTest.java 296 * nastiness with roll is the MONTH field around leap months.
321 * Test the behavior of KoreanLunarCalendar.roll(). The only real
322 * nastiness with roll is the MONTH field around leap months.
349 doRollAddDangi(ROLL, cal, tests);
352 void doRollAddDangi(boolean roll, Calendar cal, int[][] tests) {
353 String name = roll ? "rolling" : "adding";
363 if (roll) {
364 cal.roll(test[4], test[5]);
ChineseTest.java 435 * nastiness with roll is the MONTH field around leap months.
460 * Test the behavior of ChineseCalendar.roll(). The only real
461 * nastiness with roll is the MONTH field around leap months.
488 doRollAdd(ROLL, cal, tests);
491 void doRollAdd(boolean roll, ChineseCalendar cal, int[][] tests) {
492 String name = roll ? "rolling" : "adding";
502 if (roll) {
503 cal.roll(test[4], test[5]);
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
InputSystem.java 45 public void roll(float x, float y) { method in class:InputSystem
  /external/boringssl/linux-x86/crypto/fipsmodule/
aes-586.S 119 roll $24,%ecx
137 roll $24,%edx
155 roll $24,%eax
173 roll $24,%ebx
1171 roll $8,%ecx
1177 roll $24,%eax
1179 roll $16,%ebx
1181 roll $8,%ebp
1214 roll $8,%edx
1220 roll $24,%eb
    [all...]
  /external/boringssl/mac-x86/crypto/fipsmodule/
aes-586.S 114 roll $24,%ecx
132 roll $24,%edx
150 roll $24,%eax
168 roll $24,%ebx
1150 roll $8,%ecx
1156 roll $24,%eax
1158 roll $16,%ebx
1160 roll $8,%ebp
1193 roll $8,%edx
1199 roll $24,%eb
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
HebrewCalendar.java 38 * make sure to use the {@link #roll roll} and {@link #add add} methods
414 * <b>Note:</b> You should always use {@link #roll roll} and add rather
481 * example, to roll the current date up by three days, you can call
482 * <code>roll(Calendar.DATE, 3)</code>. If the
485 * For example, calling <code>roll(Calendar.DATE, 10)</code>
494 * This method is able to roll
497 * additional fields in their overrides of <code>roll</code>.
499 * <b>Note:</b> You should always use roll and {@link #add add} rathe
510 public void roll(int field, int amount) method in class:HebrewCalendar
    [all...]
GregorianCalendar.java 536 * Roll a field by a signed amount.
538 public void roll(int field, int amount) { method in class:GregorianCalendar
587 super.roll(field, amount);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
HebrewCalendar.java 37 * make sure to use the {@link #roll roll} and {@link #add add} methods
436 * <b>Note:</b> You should always use {@link #roll roll} and add rather
504 * example, to roll the current date up by three days, you can call
505 * <code>roll(Calendar.DATE, 3)</code>. If the
508 * For example, calling <code>roll(Calendar.DATE, 10)</code>
517 * This method is able to roll
520 * additional fields in their overrides of <code>roll</code>.
522 * <b>Note:</b> You should always use roll and {@link #add add} rathe
534 public void roll(int field, int amount) method in class:HebrewCalendar
    [all...]
  /external/skia/tools/
compare_codereview.py 327 roll = CodeReviewHTMLParser.parse(roll_url)
328 all_bots = set(control) & set(roll) # Set intersection.
331 'Error: control %s and roll %s have no common trybots.'
332 % (list(control), list(roll)))
336 roll_name = '[roll %s]' % roll_url.split('/')[-1]
341 if (roll[bot].status == 'success'):
347 if control[bot].status != 'failure' and roll[bot].status != 'failure':
354 ( roll[bot].status, roll_name, roll[bot].url)]:
373 (roll[bot].status, roll_name, roll[bot].url)])
    [all...]
  /external/skqp/tools/
compare_codereview.py 327 roll = CodeReviewHTMLParser.parse(roll_url)
328 all_bots = set(control) & set(roll) # Set intersection.
331 'Error: control %s and roll %s have no common trybots.'
332 % (list(control), list(roll)))
336 roll_name = '[roll %s]' % roll_url.split('/')[-1]
341 if (roll[bot].status == 'success'):
347 if control[bot].status != 'failure' and roll[bot].status != 'failure':
354 ( roll[bot].status, roll_name, roll[bot].url)]:
373 (roll[bot].status, roll_name, roll[bot].url)])
    [all...]
  /external/boringssl/linux-x86_64/crypto/fipsmodule/
aes-x86_64.S 269 roll $24,%eax
271 roll $24,%ebx
306 roll $24,%ecx
308 roll $24,%edx
721 roll $8,%eax
723 roll $8,%ecx
725 roll $8,%ebx
728 roll $8,%edx
737 roll $24,%r8d
739 roll $24,%r11
    [all...]
ghash-x86_64.S 326 roll $8,%edx
331 roll $8,%edx
347 roll $8,%edx
367 roll $8,%edx
388 roll $8,%edx
408 roll $8,%edx
428 roll $8,%edx
448 roll $8,%edx
469 roll $8,%edx
489 roll $8,%ed
    [all...]
  /external/boringssl/mac-x86_64/crypto/fipsmodule/
aes-x86_64.S 269 roll $24,%eax
271 roll $24,%ebx
306 roll $24,%ecx
308 roll $24,%edx
721 roll $8,%eax
723 roll $8,%ecx
725 roll $8,%ebx
728 roll $8,%edx
737 roll $24,%r8d
739 roll $24,%r11
    [all...]
ghash-x86_64.S 325 roll $8,%edx
330 roll $8,%edx
346 roll $8,%edx
366 roll $8,%edx
387 roll $8,%edx
407 roll $8,%edx
427 roll $8,%edx
447 roll $8,%edx
468 roll $8,%edx
488 roll $8,%ed
    [all...]
  /device/generic/goldfish/camera/
EmulatedFakeRotatingCameraDevice.cpp 316 void EmulatedFakeRotatingCameraDevice::read_rotation_vector(double *yaw, double* pitch, double* roll) {
320 *roll = mSensorValues[SENSOR_VALUE_ROTATION_Y];
325 double yaw, pitch, roll; local
326 read_rotation_vector(&yaw, &pitch, &roll);
  /external/icu/icu4c/source/i18n/
chnsecal.cpp 404 void ChineseCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) { function in class:ChineseCalendar
443 // Now do the standard roll computation on m, with the
457 Calendar::roll(field, amount, status);
462 void ChineseCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:ChineseCalendar
463 roll((UCalendarDateFields)field, amount, status);
790 * and a day-of-month. Used by add() and roll().
  /frameworks/native/include/android/
sensor.h 303 float roll; member in struct:ASensorVector::__anon46209::__anon46211
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorEvent.java 209 * The roll in degrees. Right door down is positive. If unsupported by the car, this value
212 public final float roll; field in class:CarSensorEvent.CompassData
216 public CompassData(long timestamp, float bearing, float pitch, float roll) {
220 this.roll = roll;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CalendarHandler.java 60 cal_a.roll(Calendar.MONTH, 1);
63 cal_b.roll(Calendar.MONTH, 1);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarPanel.java 150 c.roll(Calendar.DATE, false);
154 c.roll(Calendar.DATE, true);

Completed in 715 milliseconds

1 23 4 5 6 7 8