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

1 2 3 4 5 6 7 8 91011

  /external/kernel-headers/original/linux/
bitops.h 38 * @shift: bits to roll
49 * @shift: bits to roll
  /external/icu4c/test/testdata/
calendar.txt 135 "roll",
149 "roll",
233 // chinese roll tests
237 "roll",
244 "roll",
251 "roll",
258 "roll",
265 "roll",
272 "roll",
279 "roll",
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MONITOR_ENTER_DEBUG.S 25 sub r0, r4, #2 @ roll dPC back to this monitor instruction
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 98 * Roll back changes.
102 throw new IllegalStateException("no file to roll back");
  /hardware/libhardware/include/hardware/
sensors.h 140 * roll: Rotation around Y axis (-90<=roll<=90), with positive values when
143 * Note: For historical reasons the roll angle is positive in the clockwise
149 * (+roll) .--> |
151 * | | roll: rotation around Y axis
154 * note that +Y == -roll
158 * Note: This definition is different from yaw, pitch and roll used in aviation
217 float roll; member in struct:__anon7585::__anon7586::__anon7588
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
GregorianCalendarTest.java 635 * @tests java.util.GregorianCalendar#roll(int, int)
640 method = "roll",
644 // Test for method void java.util.GregorianCalendar.roll(int, int)
647 gc.roll(Calendar.DAY_OF_MONTH, -1);
648 assertTrue("Failed to roll DAY_OF_MONTH down by 1", gc
652 gc.roll(Calendar.DAY_OF_MONTH, 25);
653 assertTrue("Failed to roll DAY_OF_MONTH up by 25", gc
657 gc.roll(Calendar.DAY_OF_MONTH, -10);
658 assertTrue("Failed to roll DAY_OF_MONTH down by 10", gc
664 * @tests java.util.GregorianCalendar#roll(int, boolean
    [all...]
  /external/icu4c/i18n/
hebrwcal.h 50 * make sure to use the {@link #roll roll} and {@link #add add} methods
252 * For more information, see the documentation for Calendar::roll().
255 * @param amount Indicates amount to roll.
261 virtual void roll(UCalendarDateFields field, int32_t amount, UErrorCode& status);
265 * For more information, see the documentation for Calendar::roll().
268 * @param amount Indicates amount to roll.
272 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
274 virtual void roll(EDateFields field, int32_t amount, UErrorCode& status);
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...]
  /external/icu4c/layout/
LookupTables.cpp 16 Someday, if we need more performance, we can un-roll them.
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 77 * <p>values[2]: Roll, rotation around Y axis (-90 to 90), with
80 * <p><b>Important note:</b> For historical reasons the roll angle is
85 * roll</b> used in aviation where the X axis is along the long side of
SensorListener.java 58 * <p>values[2]: Roll, rotation around Y axis (-90<=roll<=90), with positive values
61 * <p>Note that this definition of yaw, pitch and roll is different from the
  /external/icu4c/test/intltest/
calregts.cpp     [all...]
  /external/qemu/android/
hw-sensors.c 77 float roll; member in struct:__anon4126
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/quake/quake/src/WinQuake/
in_dos.cpp 587 extern_control->viewangles[ROLL] = cl.viewangles[ROLL];
592 Con_DPrintf("IN: y:%f p:%f r:%f f:%f s:%f u:%f\n", extern_control->viewangles[YAW], extern_control->viewangles[PITCH], extern_control->viewangles[ROLL], extern_control->forwardmove, extern_control->sidemove, extern_control->upmove);
596 Con_DPrintf("OUT: y:%f p:%f r:%f f:%f s:%f u:%f\n", extern_control->viewangles[YAW], extern_control->viewangles[PITCH], extern_control->viewangles[ROLL], extern_control->forwardmove, extern_control->sidemove, extern_control->upmove);
600 cl.viewangles[ROLL] = extern_control->viewangles[ROLL];
  /bionic/libm/amd64/
s_remquo.S 50 roll $4,%eax
s_remquof.S 50 roll $4,%eax
  /bionic/libm/i387/
s_remquo.S 48 roll $4,%eax
s_remquof.S 48 roll $4,%eax
  /bootable/recovery/tools/ota/
convert-to-bmp.py 20 # Python Imaging Library doesn't write RGBA BMP files, so we roll
  /external/qemu/
Makefile 59 # let's roll
  /external/qemu/distrib/sdl-1.2.12/
Makefile 57 # let's roll
  /external/webkit/LayoutTests/storage/
quota-tracking.html 60 // resulted in a failure that made sqlite roll back the entire transaction.
  /external/icu4c/i18n/unicode/
calendar.h 539 * 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 the year value in the range between getMinimum(Calendar::YEAR) and 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...]
  /dalvik/libcore/luni/src/main/java/java/util/
Calendar.java 158 * {@code set()}, {@code add()}, and {@code roll()}.
227 * <strong>{@code roll(f, delta)}</strong> adds {@code delta} to
233 * <strong>Roll rule</strong>. Larger fields are unchanged after the call. A
240 * set to August 31, 1999. Calling <code>roll(Calendar.MONTH,
245 * sets it to the closest possible value, 30. Finally, the <strong>roll rule</strong>
251 * {@code roll(Calendar.WEEK_OF_MONTH, -1)} sets the calendar to Tuesday
253 * sets the calendar to Sunday May 30, 1999. This is because the roll rule
263 * and {@code roll()}, consider a user interface component with
271 * {@code add()} or {@code roll()}, depending on whether larger
276 * <b>Note:</b> You should always use {@code roll} and {@code add} rather tha
890 roll(field, true); method
915 roll(field, false); method
1140 public void roll(int field, int value) { method in class:Calendar
1144 roll(field, increment); method
1159 abstract public void roll(int field, boolean increment); method in class:Calendar
    [all...]
  /external/quake/quake/src/QW/client/
view.c 804 r_refdef.viewangles[ROLL] += v_idlescale.value * sin(cl.time*v_iroll_cycle.value) * v_iroll_level.value;
808 cl.viewent.angles[ROLL] -= v_idlescale.value * sin(cl.time*v_iroll_cycle.value) * v_iroll_level.value;
818 Roll is induced by movement and damage
826 r_refdef.viewangles[ROLL] += side;
830 r_refdef.viewangles[ROLL] += v_dmg_time/v_kicktime.value*v_dmg_roll;
908 r_refdef.viewangles[ROLL] = 80; // dead view angle
994 // if (cl.simangles[ROLL])
995 // Sys_Error ("cl.simangles[ROLL]"); // DEBUG
996 cl.simangles[ROLL] = 0; // FIXME @@@

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011