Searched refs:delay (Results 126 - 148 of 148) sorted by relevance

123456

/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/
H A DMouseAdapterUnitTest.java114 robot.delay(100);
117 robot.delay(300);
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.c154 splash->time += splash->frames[splash->currentFrame].delay;
160 } while (splash->time + splash->frames[splash->currentFrame].delay -
H A Dsplashscreen_jpeg.c169 splash->frames[0].delay = 0;
H A Dsplashscreen_gif.c270 splash->frames[imageIndex].delay = frameDelay * 10; // 100ths of second to milliseconds
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanManagerTest.java274 final long delay = 10000L;
280 manager.schedule(delay,interval);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java181 public void stop (int delay) { argument
182 if (delay < 0) {
183 throw new IllegalArgumentException ("negative delay parameter");
188 long latest = System.currentTimeMillis() + delay * 1000;
190 delay();
751 void delay () { method in class:ServerImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java123 // The ServerStartupDelay is the delay added after the Server registers
127 String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY);
128 if( delay != null ) {
130 serverStartupDelay = Integer.parseInt( delay );
613 // This delay is required in case of Server is activated or
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedServerTester.java472 robot.delay(50);
486 robot.delay(50);
727 robot.delay(50);
739 // robot.delay(50);
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.hpp493 void set_delay_transform(bool delay) { argument
494 _delay_transform = delay;
H A Dlcm.cpp425 // See caller for how this is used to delay scheduling
756 Node_List delay; local
766 delay.push(m);
776 while (delay.size()) {
777 Node* d = delay.pop();
H A Doutput.cpp1276 // See if delay slots are supported
1279 assert(delay_slot == NULL, "no use of delay slot node");
1280 assert(n->size(_regalloc) == Pipeline::instr_unit_size(), "delay slot instruction wrong size");
1309 // could be moved to delay slot.
1383 // Try to replace long branch if delay slot is not used,
1389 assert(delay_slot == NULL, "not expecting delay slot node");
1519 // See if this instruction has a delay slot
1521 assert(delay_slot != NULL, "expecting delay slot node");
1532 // Support a SafePoint in the delay slot
1552 // Insert the delay slo
2241 uint delay = 0; local
[all...]
H A Dcompile.cpp2231 Node *delay = NULL; local
2238 delay = n;
2268 // If we have an instruction with a delay slot, and have seen a delay,
2271 assert(delay != NULL, "no unconditional delay instruction");
2272 if (WizardMode) delay->dump();
2274 if (node_bundling(delay)->starts_bundle())
2283 delay->format(_regalloc, tty);
2285 delay
[all...]
/openjdk7/jdk/test/sun/misc/JarIndex/metaInfFilenames/
H A DBasic.java407 void stop(int delay) { argument
408 httpServer.stop(delay);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest13.java90 delay();
H A DTest9.java97 delay();
H A DTest9a.java92 delay();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java53 * delay. If this were true, a bunch of immediate repaints would get
59 * Repaint delay when some of the bits are available.
608 private void repaint(long delay) { argument
610 container.repaint(delay, fBounds.x, fBounds.y, fBounds.width,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJMenu.java148 private int delay; field in class:JMenu
497 * Returns the suggested delay, in milliseconds, before submenus
500 * observing the <code>delay</code> property.
501 * In most cases, the delay is not observed for top level menus
502 * or while dragging. The default for <code>delay</code> is 0.
507 * @return the <code>delay</code> property
510 return delay;
514 * Sets the suggested delay before the menu's <code>PopupMenu</code>
516 * it's own policy for observing the delay property. In most cases,
517 * the delay i
[all...]
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java51 robot.delay(100);
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c571 timeout = splash->time + splash->frames[splash->currentFrame].delay
581 splash->frames[splash->currentFrame].delay) {
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c300 splash->frames[splash->currentFrame].delay - SplashTime();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp718 delay_interval = 10 // interrupt delay in milliseconds
1083 bool is_ext_suspend_completed(bool called_by_wait, int delay, uint32_t *bits);
1095 // passed as the count and delay parameters. Experiments with specific
1099 bool wait_for_ext_suspend_completion(int count, int delay, uint32_t *bits);
H A Dthread.cpp552 bool JavaThread::is_ext_suspend_completed(bool called_by_wait, int delay, uint32_t *bits) { argument
648 // the delay. It also provides a simple/direct point to check for any
653 // and increase delay with each retry
654 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
677 bool JavaThread::wait_for_ext_suspend_completion(int retries, int delay, argument
698 delay, bits);
723 // the delay. It also provides a simple/direct point to check for any
729 // can also call this) and increase delay with each retry
730 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
733 delay, bit
[all...]

Completed in 162 milliseconds

123456