HomeSort by relevance Sort by last modified time
    Searched defs:sleep (Results 26 - 50 of 316) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/chan/
nonblock.go 64 func sleep() { func
125 sleep()
146 sleep()
168 sleep()
188 sleep()
210 sleep()
230 sleep()
252 sleep()
272 sleep()
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
conc.js 206 * Causes current thread to sleep for specified
211 function sleep(interval) { function
212 java.lang.Thread.sleep(interval);
214 sleep.docString = "wrapper for java.lang.Thread.sleep method";
220 * @param interval in milliseconds to sleep
232 sleep(interval);
254 * @param interval in milliseconds to sleep
267 sleep(interval);
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
conc.js 206 * Causes current thread to sleep for specified
211 function sleep(interval) { function
212 java.lang.Thread.sleep(interval);
214 sleep.docString = "wrapper for java.lang.Thread.sleep method";
220 * @param interval in milliseconds to sleep
232 sleep(interval);
254 * @param interval in milliseconds to sleep
267 sleep(interval);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/microblaze/
allinsn.s 36 .global sleep
37 sleep: label
38 sleep
  /external/droiddriver/src/io/appium/droiddriver/actions/
ClickAction.java 60 SystemClock.sleep((long) (ViewConfiguration.getLongPressTimeout() * 1.5));
76 // android.test.TouchUtils#clickView sleep 1000
77 SystemClock.sleep(CLICK_DURATION_MILLIS);
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
Power_Suite.py 55 def sleep(self, _object, _attributes={}, **_arguments): member in class:Power_Suite_Events
56 """sleep: Put the computer to sleep
  /external/python/cpython3/Lib/test/
test_sched.py 24 def sleep(self, t): member in class:Timer
46 scheduler = sched.scheduler(time.time, time.sleep)
55 scheduler = sched.scheduler(time.time, time.sleep)
66 scheduler = sched.scheduler(timer.time, timer.sleep)
95 scheduler = sched.scheduler(time.time, time.sleep)
104 scheduler = sched.scheduler(time.time, time.sleep)
121 scheduler = sched.scheduler(timer.time, timer.sleep)
152 scheduler = sched.scheduler(time.time, time.sleep)
163 scheduler = sched.scheduler(time.time, time.sleep)
180 scheduler = sched.scheduler(time.time, time.sleep)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSystemClock.java 27 public static void sleep(long millis) { method in class:ShadowSystemClock
  /frameworks/base/core/tests/coretests/src/android/util/
KeyUtils.java 82 Thread.sleep((long)(ViewConfiguration.getLongPressTimeout() * 1.5f));
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
FakeClock.java 26 * {@link #sleep(long)} is called.
101 /** Sleep does not block it just updates the current time. */
103 public void sleep(long ms) { method in class:FakeClock
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
unistd.h 44 #pragma push_macro("sleep")
45 #undef sleep macro
46 unsigned int __cdecl sleep (unsigned int);
47 #pragma pop_macro("sleep")
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Power_Suite.py 55 def sleep(self, _object, _attributes={}, **_arguments): member in class:Power_Suite_Events
56 """sleep: Put the computer to sleep
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Power_Suite.py 55 def sleep(self, _object, _attributes={}, **_arguments): member in class:Power_Suite_Events
56 """sleep: Put the computer to sleep
  /art/test/079-phantom/src/
Main.java 23 public static void sleep(int ms) { method in class:Main
25 Thread.sleep(ms);
27 System.out.println("sleep interrupted");
44 sleep(250);
60 sleep(200);
65 sleep(200);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
TestUtils.java 64 int sleep = 125; local
70 Thread.sleep(sleep);
71 sleep *= 5;
72 sleep = Math.min(2000, sleep);
  /cts/tests/tests/os/src/android/os/cts/
VibratorTest.java 53 sleep(500);
91 sleep(1500);
99 sleep(100);
103 sleep(100);
108 sleep(100);
117 sleep(1500);
121 sleep(2000);
132 private static void sleep(long millis) { method in class:VibratorTest
134 Thread.sleep(millis);
  /cts/tests/tests/provider/src/android/provider/cts/
CallLogTest.java 83 sleep(50);
93 private void sleep(long ms) { method in class:CallLogTest
95 Thread.sleep(ms);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cvslock.py 33 - if there are, release the meta-lock, sleep, try again
139 self.sleep(st)
166 def sleep(self, st): member in class:Lock
167 sleep(st, self.repository, self.delay)
173 def sleep(st, repository, delay): function
184 time.sleep(delay)
214 self.sleep(uid)
242 sleep(instance.msg, r, delay)
  /external/curl/tests/libtest/
lib1515.c 39 #define sleep(s) Sleep(s * 1000) macro
145 sleep(DNS_TIMEOUT + 1);
  /external/e2fsprogs/include/nonunix/
unistd.h 17 #define sleep _sleep macro
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetUtils.java 51 sleep(); method
74 sleep(); method
88 sleep(); method
94 private static void sleep() { method in class:WeakKeySetUtils
96 Thread.sleep(1000);
  /external/libmicrohttpd/src/include/
platform.h 153 #define sleep(seconds) (SleepEx((seconds)*1000, 1)/1000) macro
  /external/mockito/src/main/java/org/mockito/internal/verification/
VerificationOverTimeImpl.java 100 sleep(pollingPeriodMillis);
115 private void sleep(long sleep) { method in class:VerificationOverTimeImpl
117 Thread.sleep(sleep);
119 throw new RuntimeException("Thread sleep has been interrupted", ie);
  /external/mockito/src/test/java/org/mockitousage/bugs/
ConcurrentModificationExceptionOnMultiThreadedVerificationTest.java 73 Thread.sleep((long) INTERVAL_MILLIS);
  /external/python/cpython2/Demo/pdist/
cvslock.py 33 - if there are, release the meta-lock, sleep, try again
139 self.sleep(st)
166 def sleep(self, st): member in class:Lock
167 sleep(st, self.repository, self.delay)
173 def sleep(st, repository, delay): function
184 time.sleep(delay)
214 self.sleep(uid)
242 sleep(instance.msg, r, delay)

Completed in 510 milliseconds

12 3 4 5 6 7 8 91011>>