Searched refs:milliseconds (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.hpp45 jlong milliseconds() const;
67 jlong milliseconds() const;
H A Dtimer.cpp70 jlong elapsedTimer::milliseconds() const { function in class:elapsedTimer
99 jlong TimeStamp::milliseconds() const { function in class:TimeStamp
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java214 * specifying the <code>Duration</code> as milliseconds.</p>
224 * <p>All six values are set by computing their values from the specified milliseconds
243 * @param durationInMilliSeconds Duration in milliseconds to create.
397 * <p>Create a <code>Duration</code> of type <code>xdt:dayTimeDuration</code> using the specified milliseconds as defined in
405 * <p>All four values are set by computing their values from the specified milliseconds
424 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
576 * <p>Create a <code>Duration</code> of type <code>xdt:yearMonthDuration</code> using the specified milliseconds as defined in
584 * <p>Both values are set by computing their values from the specified milliseconds
603 * <p>Any remaining milliseconds after determining the year and month are discarded.</p>
1022 * @param milliseconds numbe
1034 newXMLGregorianCalendarTime( final int hours, final int minutes, final int seconds, final int milliseconds, final int timezone) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.hpp119 { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
H A DmemoryManager.hpp177 jlong gc_time_ms() { return _accumulated_timer.milliseconds(); }
/openjdk7/jdk/src/share/classes/javax/swing/
H A DToolTipManager.java40 * visibile after <code>initialDelay</code> milliseconds. After
41 * <code>dismissDelay</code> milliseconds the tooltip will be hidden. If
46 * milliseconds, the tooltip will immediately be shown, otherwise the
47 * tooltip will be shown again after <code>initialDelay</code> milliseconds.
150 * @param milliseconds the number of milliseconds to delay
155 public void setInitialDelay(int milliseconds) { argument
156 enterTimer.setInitialDelay(milliseconds);
163 * in milliseconds
173 * @param milliseconds th
177 setDismissDelay(int milliseconds) argument
206 setReshowDelay(int milliseconds) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DAnimationController.java346 final long milliseconds,
348 assert startState != null && milliseconds > 0;
352 this.duration = milliseconds * 1000000;
345 AnimationState(final State startState, final long milliseconds, boolean isForwardAndReverse) argument
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java98 * The raw GMT offset in milliseconds between this zone and GMT.
106 * Difference in milliseconds from the original GMT offset in case
114 * A CRC32 value of all pairs of transition time (in milliseconds
124 * The amount of time in milliseconds saved during daylight saving
137 * time in milliseconds from Gregorian January 1 1970, 00:00:00
156 * milliseconds. Index values to this array are stored in the
206 * @param rawOffset GMT offset in milliseconds
207 * @param dstSavings daylight saving value in milliseconds or 0
236 * Returns the difference in milliseconds between local time and UTC
240 * @param date the milliseconds i
382 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DConnection.java1444 * @param milliseconds The time in milliseconds to wait for the database
1446 * to complete. If the JDBC driver does not support milliseconds, the
1467 void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException; argument
1471 * Retrieves the number of milliseconds the driver will
1476 * @return the current timeout limit in milliseconds; zero means there is
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java338 DatatypeConstants.FIELD_UNDEFINED, // milliseconds
661 // Calendar ZONE_OFFSET and DST_OFFSET fields are in milliseconds.
757 * @param milliseconds of <code>dateTime</code>. {@link DatatypeConstants#FIELD_UNDEFINED} indicates optional field is not set.
774 int milliseconds,
784 milliseconds,
898 * @param milliseconds number of milliseconds
913 int milliseconds,
923 milliseconds,
1104 * down to milliseconds valu
767 createDateTime( int year, int month, int day, int hours, int minutes, int seconds, int milliseconds, int timezone) argument
909 createTime( int hours, int minutes, int seconds, int milliseconds, int timezone) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DTimeZone.java160 // Constants used internally; unit is milliseconds
183 * @param milliseconds the milliseconds in day in <em>standard</em>
186 * @return the offset in milliseconds to add to GMT to get local time.
192 int dayOfWeek, int milliseconds);
204 * @param date the date represented in milliseconds since January 1, 1970 00:00:00 GMT
205 * @return the amount of time in milliseconds to add to UTC to get local time.
221 * @param date the milliseconds (since January 1, 1970,
262 * Returns the amount of time in milliseconds to add to UTC to get
271 * this method always returns -36000000 milliseconds (
191 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp422 static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); }
H A DcompileBroker.cpp375 st->print("%7d ", (int) st->time_stamp().milliseconds()); // print timestamp
1831 tty->print("%7d ", (int) tty->time_stamp().milliseconds()); // print timestamp
1835 tty->print_cr("size: %d time: %d inlined: %d bytes", code_size, (int)time.milliseconds(), task->num_inlined_bytecodes());
2056 _peak_compilation_time = time.milliseconds() > _peak_compilation_time ? time.milliseconds() : _peak_compilation_time;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp152 jlong doit_time = _timer_rsc_phase1.milliseconds() +
153 _timer_rsc_phase2.milliseconds();
154 jlong all_time = _timer_vm_op_prologue.milliseconds() + doit_time;
158 _timer_vm_op_prologue.milliseconds(), doit_time));
161 _timer_rsc_phase1.milliseconds(), _timer_rsc_phase2.milliseconds()));
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp621 jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp752 // Java standards require the number of milliseconds since 1/1/1970
3031 reserveTimer.milliseconds(), reserveTimer.ticks());
3316 // The default timer resolution seems to be 10 milliseconds.
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp3486 jlong ret = _wallclock.milliseconds();

Completed in 141 milliseconds