/frameworks/base/core/java/android/os/ |
IVibratorService.aidl | 22 void vibrate(long milliseconds, IBinder token);
|
Vibrator.java | 39 * @param milliseconds How long to vibrate for. 41 public void vibrate(long milliseconds) 44 mService.vibrate(milliseconds, mToken);
|
/dalvik/libcore/luni/src/main/java/java/util/ |
Date.java | 46 private transient long milliseconds; field in class:Date 80 milliseconds = cal.getTimeInMillis(); 105 milliseconds = cal.getTimeInMillis(); 132 milliseconds = cal.getTimeInMillis(); 137 * value is the number of milliseconds since Jan. 1, 1970 GMT. 139 * @param milliseconds 140 * the number of milliseconds since Jan. 1, 1970 GMT. 142 public Date(long milliseconds) { 143 this.milliseconds = milliseconds; [all...] |
Calendar.java | 164 * {@code f} is changed immediately, the calendar's milliseconds is not 212 * immediate recomputation of the calendar's milliseconds and all fields. 317 * The time in milliseconds since January 1, 1970. 632 * raw offset from GMT in milliseconds. 638 * daylight savings offset in milliseconds. [all...] |
/external/v8/src/ |
counters.cc | 54 // Compute the delta between start and stop, in milliseconds. 55 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; local 56 counter_.Increment(milliseconds); 72 // Compute the delta between start and stop, in milliseconds. 73 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; local 74 StatsTable::AddHistogramSample(histogram_, milliseconds);
|
/frameworks/base/core/java/com/android/server/ |
ResettableTimeout.java | 52 public void go(long milliseconds) 55 mOffAt = SystemClock.uptimeMillis() + milliseconds;
|
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/ |
DatatypeFactory.java | 164 * specifying the <code>Duration</code> as milliseconds.</p> 174 * <p>All six values are set by computing their values from the specified milliseconds 193 * @param durationInMilliSeconds Duration in milliseconds to create. 340 * <p>Create a <code>Duration</code> of type <code>xdt:dayTimeDuration</code> using the specified milliseconds as defined in 348 * <p>All four values are set by computing their values from the specified milliseconds 367 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p> 369 * @param durationInMilliseconds Milliseconds of <code>Duration</code> to create. 397 int milliseconds = (int) (val % 60000L); // 60000 milliseconds per minute local 399 ++milliseconds; [all...] |
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
EventSender.java | 24 public void leapForward(int milliseconds);
|
WebViewEventSender.java | 75 public void leapForward(int milliseconds) {
|
CallbackProxy.java | 301 public void leapForward(int milliseconds) { 302 obtainMessage(EVENT_LEAP, milliseconds, 0).sendToTarget();
|
/external/icu4c/i18n/ |
utmscale.c | 16 #define milliseconds (microseconds * 1000) macro 17 #define seconds (milliseconds * 1000) 25 {milliseconds, INT64_C(62135596800000), INT64_C(-984472800485477), INT64_C(860201606885477), INT64_C(-9223372036854774999), INT64_C(9223372036854774999), INT64_C(62135596800001), INT64_C(62135596799999), INT64_C(5000), INT64_C(-9223372036854770808), INT64_C(9223372036854770807)}, 27 {milliseconds, INT64_C(62135596800000), INT64_C(-984472800485477), INT64_C(860201606885477), INT64_C(-9223372036854774999), INT64_C(9223372036854774999), INT64_C(62135596800001), INT64_C(62135596799999), INT64_C(5000), INT64_C(-9223372036854770808), INT64_C(9223372036854770807)},
|
/dalvik/libcore/sql/src/main/java/java/sql/ |
Timestamp.java | 97 * a time value in the format of milliseconds since the Epoch 281 * value containing the number of milliseconds since the Epoch (January 1 284 * @return the number of milliseconds that have passed since January 1 1970, 313 * supplied time, defined as the number of milliseconds since the Epoch 317 * number of milliseconds since the Epoch (January 1 1970, 327 * Deal with the nanoseconds value. The supplied time is in milliseconds - 328 * so we must extract the milliseconds value and multiply by 1000000 to 332 * take the "raw" milliseconds value and subtract it from 1000 to get to 336 int milliseconds = (int) (theTime % 1000); local 337 theTime = theTime - milliseconds; [all...] |
/frameworks/base/services/java/com/android/server/ |
VibratorService.java | 111 public void vibrate(long milliseconds, IBinder token) { 119 if (milliseconds <= 0 || (mCurrentVibration != null 120 && mCurrentVibration.hasLongerTimeout(milliseconds))) { 122 // longer than milliseconds. 125 Vibration vib = new Vibration(token, milliseconds); 375 native static void vibratorOn(long milliseconds);
|
/frameworks/base/core/java/android/widget/ |
ViewFlipper.java | 118 * @param milliseconds 119 * time in milliseconds 122 public void setFlipInterval(int milliseconds) { 123 mFlipInterval = milliseconds;
|
/external/quake/quake/src/QW/scitech/include/ |
mgldos.h | 66 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
|
mglwin.h | 137 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
|
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
MGLDOS.H | 66 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
|
MGLWIN.H | 137 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
|
/frameworks/base/core/java/android/net/ |
SntpClient.java | 64 // round trip time in milliseconds 71 * @param timeout network timeout in milliseconds. 153 * @return round trip time in milliseconds. 179 * it as a system time (milliseconds since January 1, 1970). 188 * Writes system time (milliseconds since January 1, 1970) as an NTP time stamp 193 long milliseconds = time - seconds * 1000L; local 202 long fraction = milliseconds * 0x100000000L / 1000L;
|
/frameworks/base/include/utils/ |
Timers.h | 74 static inline nsecs_t milliseconds(nsecs_t v) { return ms2ns(v); } function
|
/external/dbus/bus/ |
expirelist.c | 160 _dbus_verbose ("Item %p expires in %d milliseconds\n", 229 int milliseconds) 231 *tv_sec = *tv_sec + milliseconds / 1000; 232 *tv_usec = *tv_usec + milliseconds * 1000;
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
GpxParser.java | 181 * Converts the string description of the time into milliseconds since epoch. 183 * @return date in milliseconds. 199 int milliseconds = 0; local 203 milliseconds = (int)(1000 * Double.parseDouble(subSecondGroup)); 208 // now we convert into milliseconds since epoch. 218 return c.getTimeInMillis() + milliseconds;
|
/external/tremolo/Tremolo/ |
vorbisfile.c | 973 /* returns: total milliseconds of content if i==-1 974 milliseconds in that logical bitstream for i==0 to n [all...] |
/external/icu4c/i18n/unicode/ |
timezone.h | 90 * <li>A time zone offset; that, is the number of milliseconds to add or subtract 170 * @param rawOffset an offset from GMT in milliseconds, ignoring 205 * @param rawOffset An offset from GMT in milliseconds. 392 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 410 * @param millis The reference date's milliseconds in day, local standard time 412 * @return The offset in milliseconds to add to GMT to get local time. 432 * @param milliseconds the millis in day in <em>standard</em> local time. 439 uint8_t dayOfWeek, int32_t milliseconds, 450 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT 469 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to ad [all...] |
simpletz.h | 148 * number of milliseconds after midnight. 156 * number of milliseconds after midnight. 189 * number of milliseconds after midnight. 197 * number of milliseconds after midnight. 198 * @param savingsDST The number of milliseconds added to standard time 233 * number of milliseconds after midnight. 243 * number of milliseconds after midnight. 246 * @param savingsDST The number of milliseconds added to standard time 550 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 564 * @param millis The reference date's milliseconds in day, UTT (NOT local time) [all...] |