HomeSort by relevance Sort by last modified time
    Searched refs:milliseconds (Results 26 - 50 of 210) sorted by null

12 3 4 5 6 7 8 9

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.special/
max.pass.cpp 22 typedef std::chrono::milliseconds Duration;
min.pass.cpp 22 typedef std::chrono::milliseconds Duration;
  /external/chromium/base/
time_posix.cc 80 int64 milliseconds = (us_ - kWindowsEpochDeltaMicroseconds) / local
82 time_t seconds = milliseconds / kMillisecondsPerSecond;
97 exploded->millisecond = milliseconds % kMillisecondsPerSecond;
123 int64 milliseconds; local
145 milliseconds = std::numeric_limits<time_t>::min() *
148 milliseconds = (std::numeric_limits<time_t>::max() *
153 milliseconds = seconds * kMillisecondsPerSecond + exploded.millisecond;
157 return Time((milliseconds * kMicrosecondsPerMillisecond) +
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
EventSendingController.idl 32 void leapForward(in long milliseconds);
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 52 public void go(long milliseconds)
55 mOffAt = SystemClock.uptimeMillis() + milliseconds;
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 25 * Returns the ISO 8601-format String corresponding to the given duration (measured in milliseconds).
28 long milliseconds = duration % 1000; local
46 if (milliseconds != 0) {
48 result.append(milliseconds);
55 * Returns a string representation of the given number of milliseconds.
79 long milliseconds = duration % 1000; local
  /frameworks/base/core/java/android/os/
SystemVibrator.java 61 public void vibrate(long milliseconds) {
62 vibrate(Process.myUid(), mPackageName, milliseconds); local
74 public void vibrate(int owningUid, String owningPackage, long milliseconds) {
80 mService.vibrate(owningUid, owningPackage, milliseconds, mToken);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/
milliseconds.pass.cpp 12 // typedef duration<signed integral type of at least 45 bits, milli> milliseconds;
20 typedef std::chrono::milliseconds D;
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.comparisons/
op_equal.fail.cpp 32 typedef std::chrono::milliseconds Duration1;
op_less.fail.cpp 40 typedef std::chrono::milliseconds Duration1;
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.cons/
convert.pass.cpp 24 typedef std::chrono::milliseconds Duration2;
duration.pass.cpp 22 typedef std::chrono::milliseconds Duration;
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.nonmember/
op_+.pass.cpp 28 typedef std::chrono::milliseconds Duration1;
op_-duration.pass.cpp 24 typedef std::chrono::milliseconds Duration1;
op_-time_point.pass.cpp 24 typedef std::chrono::milliseconds Duration1;
  /external/webkit/Source/WebCore/html/
TimeInputType.cpp 69 double milliseconds = date.millisecondsSinceEpoch(); local
70 ASSERT(isfinite(milliseconds));
71 return milliseconds;
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvar/
notify_one.pass.cpp 52 std::this_thread::sleep_for(std::chrono::milliseconds(100));
60 std::this_thread::sleep_for(std::chrono::milliseconds(100));
77 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvarany/
notify_one.pass.cpp 56 std::this_thread::sleep_for(std::chrono::milliseconds(100));
64 std::this_thread::sleep_for(std::chrono::milliseconds(100));
81 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.shared_future/
get.pass.cpp 23 std::this_thread::sleep_for(std::chrono::milliseconds(500));
29 std::this_thread::sleep_for(std::chrono::milliseconds(500));
37 std::this_thread::sleep_for(std::chrono::milliseconds(500));
44 std::this_thread::sleep_for(std::chrono::milliseconds(500));
50 std::this_thread::sleep_for(std::chrono::milliseconds(500));
56 std::this_thread::sleep_for(std::chrono::milliseconds(500));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.unique_future/
get.pass.cpp 23 std::this_thread::sleep_for(std::chrono::milliseconds(500));
29 std::this_thread::sleep_for(std::chrono::milliseconds(500));
37 std::this_thread::sleep_for(std::chrono::milliseconds(500));
44 std::this_thread::sleep_for(std::chrono::milliseconds(500));
50 std::this_thread::sleep_for(std::chrono::milliseconds(500));
56 std::this_thread::sleep_for(std::chrono::milliseconds(500));
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeFactory.java 171 * specifying the <code>Duration</code> as milliseconds.</p>
181 * <p>All six values are set by computing their values from the specified milliseconds
200 * @param durationInMilliSeconds Duration in milliseconds to create.
347 * <p>Create a <code>Duration</code> of type <code>xdt:dayTimeDuration</code> using the specified milliseconds as defined in
355 * <p>All four values are set by computing their values from the specified milliseconds
374 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
376 * @param durationInMilliseconds Milliseconds of <code>Duration</code> to create.
404 int milliseconds = (int) (val % 60000L); // 60000 milliseconds per minute local
406 ++milliseconds;
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
EventSender.java 24 public void leapForward(int milliseconds);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.class/thread.thread.destr/
dtor.pass.cpp 55 std::this_thread::sleep_for(std::chrono::milliseconds(250));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.class/thread.thread.member/
detach.pass.cpp 50 std::this_thread::sleep_for(std::chrono::milliseconds(250));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 24 std::chrono::milliseconds ms(500);

Completed in 272 milliseconds

12 3 4 5 6 7 8 9