Searched defs:Timer (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestPresent.java40 private static class Timer { class in class:TestPresent
85 Timer timer = new Timer();
/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java35 * <p>Corresponding to each <tt>Timer</tt> object is a single background
37 * Timer tasks should complete quickly. If a timer task takes excessive time
43 * <p>After the last live reference to a <tt>Timer</tt> object goes away
59 * <tt>Timer</tt> object without the need for external synchronization.
69 * versatile replacement for the {@code Timer}/{@code TimerTask}
74 * {@code Timer}.
89 public class Timer { class
105 * gracefully when there are no live references to the Timer object and no
107 * Timer as such a finalizer would be susceptible to a subclass's
131 public Timer() { method in class:Timer
145 public Timer(boolean isDaemon) { method in class:Timer
158 public Timer(String name) { method in class:Timer
173 public Timer(String name, boolean isDaemon) { method in class:Timer
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DTimer.java29 A Timer object is used by algorithms that require timed events.
41 public void tick(Timer timer) {
45 (new Timer(this, 5000)).cont();
65 while calling any of the Timer operations below otherwise
66 the Timer class will deadlock.
73 require locking. A Timer object and the Timer queue
88 public class Timer { class
129 * Timer queue-related variables
136 Timer nex
159 public Timer(Timeable owner, long interval) { method in class:Timer
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimer.java49 * <code>Timer</code> as the trigger for drawing its frames.
52 * involves creating a <code>Timer</code> object,
59 * (as specified by the first argument to the <code>Timer</code> constructor).
60 * The second argument to the <code>Timer</code> constructor
70 * new Timer(delay, taskPerformer).start();</pre>
90 * Although all <code>Timer</code>s perform their waiting
92 * (created by the first <code>Timer</code> object that executes),
93 * the action event handlers for <code>Timer</code>s
95 * This means that the action handlers for <code>Timer</code>s
101 * In v 1.3, another <code>Timer</cod
149 public class Timer implements Serializable class in inherits:Serializable
203 public Timer(int delay, ActionListener listener) { method in class:Timer
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DTestEnvironment.java109 Timer timer;
114 timer = Timer.getImpl();
272 private abstract static class Timer { class in class:TestEnvironment
273 public static Timer getImpl() {
287 private static class Millis extends Timer {
307 private static class Nanos extends Timer {
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimer.java66 * <LI>The timer service relies on the system date of the host where the <CODE>Timer</CODE> class is loaded.
71 * specified in {@link java.util.Timer}. In order to use <i>fixed-rate execution</i>, use the
81 public class Timer extends NotificationBroadcasterSupport class in inherits:NotificationBroadcasterSupport,TimerMBean,MBeanRegistration
142 * Timer state.
148 * Timer sequence number.
168 private java.util.Timer timer;
179 public Timer() { method in class:Timer
225 TIMER_LOGGER.logp(Level.FINER, Timer.class.getName(),
262 "Notification sent by Timer MBean")
277 TIMER_LOGGER.logp(Level.FINER, Timer
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp939 enum Timer { enum in class:LinearScanTimers

Completed in 56 milliseconds