/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
EventSender.java | 24 public void leapForward(int milliseconds);
|
/libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ |
ThreadsTest.java | 126 /** whether {@link #amount} is milliseconds to wait in an 148 * @param parkMillis the number of milliseconds to be parked 183 * @return the duration in milliseconds 206 * @param expectedMillis the expected duration, in milliseconds
|
/packages/apps/Calendar/src/com/android/calendar/ |
Navigator.java | 24 * @return the selected time in UTC milliseconds.
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
ElementTimeContainer.java | 33 * milliseconds.
|
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/ |
WebConcurrency.java | 40 // Delay between queries (in milliseconds).
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_timer.h | 37 /* This is the OS scheduler timeslice, in milliseconds */ 43 /* Get the number of milliseconds since the SDL library initialization. 48 /* Wait a specified number of milliseconds before returning */ 54 /* Set a callback to run after the specified number of milliseconds has
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_timer.h | 37 /* This is the OS scheduler timeslice, in milliseconds */ 43 /* Get the number of milliseconds since the SDL library initialization. 48 /* Wait a specified number of milliseconds before returning */ 54 /* Set a callback to run after the specified number of milliseconds has
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
timeb.h | 35 unsigned short int millitm; /* Additional milliseconds. */
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_timer.h | 42 /* This is the OS scheduler timeslice, in milliseconds */ 48 /* Get the number of milliseconds since the SDL library initialization. 53 /* Wait a specified number of milliseconds before returning */ 59 /* Set a callback to run after the specified number of milliseconds has
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_timer.h | 37 /* This is the OS scheduler timeslice, in milliseconds */ 43 /* Get the number of milliseconds since the SDL library initialization. 48 /* Wait a specified number of milliseconds before returning */ 54 /* Set a callback to run after the specified number of milliseconds has
|
/frameworks/base/core/java/android/widget/ |
Scroller.java | 118 * Returns how long the scroll event will take, in milliseconds. 120 * @return The duration of the scroll in milliseconds. 248 * The scroll will use the default value of 250 milliseconds for the 275 * @param duration Duration of the scroll in milliseconds. 319 // milliseconds 377 * @param extend Additional time to scroll in milliseconds. 391 * @return The elapsed time in milliseconds.
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
DatatypeFactory.java | 167 * specifying the <code>Duration</code> as milliseconds.</p> 177 * <p>All six values are set by computing their values from the specified milliseconds 196 * @param durationInMilliSeconds Duration in milliseconds to create. 343 * <p>Create a <code>Duration</code> of type <code>xdt:dayTimeDuration</code> using the specified milliseconds as defined in 351 * <p>All four values are set by computing their values from the specified milliseconds 370 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p> 372 * @param durationInMilliseconds Milliseconds of <code>Duration</code> to create. 400 int milliseconds = (int) (val % 60000L); // 60000 milliseconds per minute local 402 ++milliseconds; [all...] |
/libcore/luni/src/main/java/java/sql/ |
Time.java | 58 * milliseconds. 61 * a {@code Time} specified in milliseconds since the 164 * Sets the time for this {@code Time} object to the supplied milliseconds 168 * A time value expressed as milliseconds since the <i>Epoch</i>. 169 * Negative values are milliseconds before the Epoch. The Epoch
|
/libcore/luni/src/test/java/tests/api/java/util/concurrent/ |
ArrayBlockingQueueTest.java | 14 import static java.util.concurrent.TimeUnit.MILLISECONDS; 351 assertFalse(q.offer(new Object(), SHORT_DELAY_MS/2, MILLISECONDS)); 353 q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS); 430 assertEquals(i, q.poll(0, MILLISECONDS)); 432 assertNull(q.poll(0, MILLISECONDS)); 441 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS)); 443 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); 455 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS));; 458 q.poll(SMALL_DELAY_MS, MILLISECONDS); 477 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); [all...] |
DelayQueueTest.java | 13 import static java.util.concurrent.TimeUnit.MILLISECONDS; 368 assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, MILLISECONDS)); 369 assertTrue(q.offer(new PDelay(0), LONG_DELAY_MS, MILLISECONDS)); 444 assertEquals(new PDelay(i), ((PDelay)q.poll(0, MILLISECONDS))); 446 assertNull(q.poll(0, MILLISECONDS)); 455 assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, MILLISECONDS))); 457 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); 469 assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, MILLISECONDS))); 472 q.poll(SMALL_DELAY_MS, MILLISECONDS); 492 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); [all...] |
LinkedBlockingQueueTest.java | 14 import static java.util.concurrent.TimeUnit.MILLISECONDS; 340 assertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS)); 342 q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS); 418 assertEquals(i, q.poll(0, MILLISECONDS)); 420 assertNull(q.poll(0, MILLISECONDS)); 429 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS)); 431 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); 443 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS)); 446 q.poll(SMALL_DELAY_MS, MILLISECONDS); 465 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); [all...] |
PriorityBlockingQueueTest.java | 14 import static java.util.concurrent.TimeUnit.MILLISECONDS; 330 assertTrue(q.offer(new Integer(0), SHORT_DELAY_MS, MILLISECONDS)); 331 assertTrue(q.offer(new Integer(0), LONG_DELAY_MS, MILLISECONDS)); 406 assertEquals(i, q.poll(0, MILLISECONDS)); 408 assertNull(q.poll(0, MILLISECONDS)); 417 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS)); 419 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); 431 assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS)); 434 q.poll(SMALL_DELAY_MS, MILLISECONDS); 453 assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS)); [all...] |
/libcore/luni/src/main/java/java/util/ |
SimpleTimeZone.java | 205 * the daylight savings time difference in milliseconds. 239 * the daylight savings time difference in milliseconds. 279 * mode specifier, the daylight savings time difference in milliseconds. 298 * the time of day in milliseconds on which daylight savings 312 * the time of day in milliseconds on which daylight savings 317 * the daylight savings time difference in milliseconds. 595 * Sets the daylight savings offset in milliseconds for this {@code SimpleTimeZone}. 597 * @param milliseconds 598 * the daylight savings offset in milliseconds. 600 public void setDSTSavings(int milliseconds) { [all...] |
/frameworks/base/media/libdrm/mobile1/src/jni/ |
drm1_jni.c | 29 #define MS_PER_SECOND 1000 /* Milliseconds per second */ 30 #define MS_PER_MINUTE 60 * MS_PER_SECOND /* Milliseconds per minute */ 31 #define MS_PER_HOUR 60 * MS_PER_MINUTE /* Milliseconds per hour */ 32 #define MS_PER_DAY 24 * MS_PER_HOUR /* Milliseconds per day */ 343 * Compute the milliseconds by the specified <code>date</code> 351 * @return the related milliseconds 381 * Compute the milliseconds by the specified <code>date</code> 394 * @return the related milliseconds 399 int64_t milliseconds; local 408 /* milliseconds = ((((year * 365 + month * 30 + day) * 2 [all...] |
/external/apache-http/src/org/apache/http/params/ |
HttpConnectionParams.java | 56 * Returns the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 61 * @return timeout in milliseconds 71 * Sets the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 76 * @param timeout Timeout in milliseconds 166 * @return timeout in milliseconds. 180 * @param timeout Timeout in milliseconds.
|
/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/bluetooth/bluez/doc/ |
control-api.txt | 52 the position within the track in milliseconds. 68 TrackDuration uint32 (in milliseconds)
|
/external/chromium/third_party/icu/public/i18n/unicode/ |
rbtz.h | 125 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 143 * @param millis The reference date's milliseconds in day, local standard time 145 * @return The offset in milliseconds to add to GMT to get local time. 164 * @param millis The reference date's milliseconds in day, local standard time 167 * @return The offset in milliseconds to add to GMT to get local time. 182 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT 200 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add 209 * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
|
/external/chromium/third_party/icu/source/i18n/ |
gregoimp.h | 111 * The minimum supported epoch milliseconds. This value is equivalent 123 * The maximum supported epoch milliseconds. This value is equivalent 196 * Convert a 1970-epoch milliseconds to proleptic Gregorian year, 198 * @param time 1970-epoch milliseconds 227 * Converts Julian day to time as milliseconds. 229 * @return time as milliseconds. 235 * Converts time as milliseconds to Julian day. 236 * @param millis the given milliseconds.
|
/external/icu4c/i18n/ |
gregoimp.h | 111 * The minimum supported epoch milliseconds. This value is equivalent 123 * The maximum supported epoch milliseconds. This value is equivalent 196 * Convert a 1970-epoch milliseconds to proleptic Gregorian year, 198 * @param time 1970-epoch milliseconds 227 * Converts Julian day to time as milliseconds. 229 * @return time as milliseconds. 235 * Converts time as milliseconds to Julian day. 236 * @param millis the given milliseconds.
|