HomeSort by relevance Sort by last modified time
    Searched full:roll (Results 101 - 125 of 739) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CalendarTests.java 60 cal_a.roll(Calendar.MONTH, 1);
63 cal_b.roll(Calendar.MONTH, 1);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DangiTest.java 289 * nastiness with roll is the MONTH field around leap months.
313 * Test the behavior of KoreanLunarCalendar.roll(). The only real
314 * nastiness with roll is the MONTH field around leap months.
340 doRollAddDangi(ROLL, cal, tests);
343 void doRollAddDangi(boolean roll, Calendar cal, int[][] tests) {
344 String name = roll ? "rolling" : "adding";
354 if (roll) {
355 cal.roll(test[4], test[5]);
CalendarRegression.java 697 Object ROLL = new Object();
718 ROLL, new Integer(1), d[4], d[5],
719 ROLL, new Integer(1), d[6], d[7],
730 else testCal.roll(Calendar.WEEK_OF_YEAR, amount);
731 log((ADDROLL[i]==ADD?"add(WOY,":"roll(WOY,") +
742 else testCal.roll(Calendar.WEEK_OF_YEAR, -amount);
743 log((ADDROLL[i]==ADD?"add(WOY,":"roll(WOY,") +
    [all...]
CompatibilityTest.java 295 cal.roll(Calendar.SECOND, true);
300 // Roll back to January
301 cal.roll(Calendar.MONTH, (int)(1 + Calendar.DECEMBER - cal.get(Calendar.MONTH)));
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
CalendarTests.java 59 cal_a.roll(Calendar.MONTH, 1);
62 cal_b.roll(Calendar.MONTH, 1);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
FrameBufferCubemapTest.java 99 float yaw, pitch, roll; field in class:FrameBufferCubemapTest
116 cubeInstance.transform.setFromEulerAngles(yaw, pitch, roll);
  /external/llvm/test/CodeGen/X86/
rotate4.ll 9 ; CHECK: roll
67 ; CHECK: roll
  /external/opencv3/samples/python2/
deconvolution.py 110 res = np.roll(res, -kh//2, 0)
111 res = np.roll(res, -kw//2, 1)
  /external/v8/include/
v8-platform.h 103 // TODO(ulan): Make this function abstract after V8 roll in Chromium.
110 // TODO(ulan): Make this function abstract after V8 roll in Chromium.
  /external/v8/tools/release/
check_clusterfuzz.py 129 """Returns the commit position number of the latest v8 roll in chromium."""
141 # Get latest commit that matches the v8 roll pattern. Ignore cherry-picks.
  /external/vulkan-validation-layers/libs/glm/gtx/
euler_angles.hpp 120 T const & roll);
128 T const & roll);
  /system/core/libpackagelistparser/
packagelistparser.c 79 * prevent a truncation based roll-over
149 * prevent a truncation based roll-over
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btQuaternion.h 100 * @param roll Angle around Z unless BT_EULER_DEFAULT_ZYX defined then X */
101 btQuaternion(const btScalar& yaw, const btScalar& pitch, const btScalar& roll)
104 setEuler(yaw, pitch, roll);
106 setEulerZYX(yaw, pitch, roll);
123 * @param roll Angle around Z */
124 void setEuler(const btScalar& yaw, const btScalar& pitch, const btScalar& roll)
128 btScalar halfRoll = btScalar(roll) * btScalar(0.5);
143 * @param roll Angle around X */
144 void setEulerZYX(const btScalar& yaw, const btScalar& pitch, const btScalar& roll)
148 btScalar halfRoll = btScalar(roll) * btScalar(0.5);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
HebrewCalendar.java 36 * make sure to use the {@link #roll roll} and {@link #add add} methods
412 * <b>Note:</b> You should always use {@link #roll roll} and add rather
479 * example, to roll the current date up by three days, you can call
480 * <code>roll(Calendar.DATE, 3)</code>. If the
483 * For example, calling <code>roll(Calendar.DATE, 10)</code>
492 * This method is able to roll
495 * additional fields in their overrides of <code>roll</code>.
497 * <b>Note:</b> You should always use roll and {@link #add add} rathe
508 public void roll(int field, int amount) method in class:HebrewCalendar
    [all...]
Calendar.java 183 * <code>set()</code>, <code>add()</code>, and <code>roll()</code>.</p>
248 * <p><strong><code>roll(f, delta)</code></strong> adds
254 * <p><strong>Roll rule</strong>. Larger fields are unchanged after the
261 * originally set to August 31, 1999. Calling <code>roll(Calendar.MONTH,
266 * value, 30. Finally, the <strong>roll rule</strong> maintains the
271 * <code>roll(Calendar.WEEK_OF_MONTH, -1)</code> sets the calendar to
274 * Sunday May 30, 1999. This is because the roll rule imposes an
284 * <code>add()</code> and <code>roll()</code>, consider a user interface
293 * <code>add()</code> or <code>roll()</code>, depending on whether larger
297 * <p><b>Note:</b> You should always use {@link #roll roll} and {@link #add add} rathe
2660 public final void roll(int field, boolean up) method in class:Calendar
2662 roll(field, up ? +1 : -1); method
2732 public void roll(int field, int amount) { method in class:Calendar
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
HebrewCalendar.java 35 * make sure to use the {@link #roll roll} and {@link #add add} methods
434 * <b>Note:</b> You should always use {@link #roll roll} and add rather
502 * example, to roll the current date up by three days, you can call
503 * <code>roll(Calendar.DATE, 3)</code>. If the
506 * For example, calling <code>roll(Calendar.DATE, 10)</code>
515 * This method is able to roll
518 * additional fields in their overrides of <code>roll</code>.
520 * <b>Note:</b> You should always use roll and {@link #add add} rathe
532 public void roll(int field, int amount) method in class:HebrewCalendar
    [all...]
Calendar.java 182 * <code>set()</code>, <code>add()</code>, and <code>roll()</code>.</p>
247 * <p><strong><code>roll(f, delta)</code></strong> adds
253 * <p><strong>Roll rule</strong>. Larger fields are unchanged after the
260 * originally set to August 31, 1999. Calling <code>roll(Calendar.MONTH,
265 * value, 30. Finally, the <strong>roll rule</strong> maintains the
270 * <code>roll(Calendar.WEEK_OF_MONTH, -1)</code> sets the calendar to
273 * Sunday May 30, 1999. This is because the roll rule imposes an
283 * <code>add()</code> and <code>roll()</code>, consider a user interface
292 * <code>add()</code> or <code>roll()</code>, depending on whether larger
296 * <p><b>Note:</b> You should always use {@link #roll roll} and {@link #add add} rathe
2758 public final void roll(int field, boolean up) method in class:Calendar
2760 roll(field, up ? +1 : -1); method
2831 public void roll(int field, int amount) { method in class:Calendar
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccaltst.c     [all...]
  /external/boringssl/linux-x86_64/crypto/aes/
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...]
  /external/boringssl/mac-x86_64/crypto/aes/
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...]
  /frameworks/base/docs/html/guide/topics/sensors/
sensors_position.jd 178 <td>Roll (angle around the y-axis).</td>
289 <strong>Roll (degrees of rotation about the y axis).</strong> This is the
293 toward the ground, the roll angle becomes positive. Tilting in the opposite
295 causes the roll angle to become negative. The range of values is -90 degrees
301 <strong>Note:</strong>The sensor's roll definition has changed to reflect the
307 one used in aviation (for yaw, pitch, and roll). In the aviation system, the
315 sensor is diminished. Specifically, this sensor is reliable only when the roll
  /external/boringssl/linux-x86/crypto/aes/
aes-586.S 120 roll $24,%ecx
138 roll $24,%edx
156 roll $24,%eax
174 roll $24,%ebx
1172 roll $8,%ecx
1178 roll $24,%eax
1180 roll $16,%ebx
1182 roll $8,%ebp
1215 roll $8,%edx
1221 roll $24,%eb
    [all...]
  /external/boringssl/mac-x86/crypto/aes/
aes-586.S 115 roll $24,%ecx
133 roll $24,%edx
151 roll $24,%eax
169 roll $24,%ebx
1151 roll $8,%ecx
1157 roll $24,%eax
1159 roll $16,%ebx
1161 roll $8,%ebp
1194 roll $8,%edx
1200 roll $24,%eb
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CalendarRegression.java 701 Object ROLL = new Object();
722 ROLL, new Integer(1), d[4], d[5],
723 ROLL, new Integer(1), d[6], d[7],
734 else testCal.roll(Calendar.WEEK_OF_YEAR, amount);
735 log((ADDROLL[i]==ADD?"add(WOY,":"roll(WOY,") +
746 else testCal.roll(Calendar.WEEK_OF_YEAR, -amount);
747 log((ADDROLL[i]==ADD?"add(WOY,":"roll(WOY,") +
    [all...]
CompatibilityTest.java 299 cal.roll(Calendar.SECOND, true);
304 // Roll back to January
305 cal.roll(Calendar.MONTH, (int)(1 + Calendar.DECEMBER - cal.get(Calendar.MONTH)));
    [all...]

Completed in 6502 milliseconds

1 2 3 45 6 7 8 91011>>