Searched defs:stamp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerDelegate.java50 private final long stamp; field in class:MBeanServerDelegate
71 stamp = getStamp();
91 mbeanServerId = localHost + "_" + stamp;
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicStampedReference.java40 * along with an integer "stamp", that can be updated atomically.
54 final int stamp; field in class:AtomicStampedReference.Pair
55 private Pair(T reference, int stamp) { argument
57 this.stamp = stamp;
59 static <T> Pair<T> of(T reference, int stamp) { argument
60 return new Pair<T>(reference, stamp);
71 * @param initialStamp the initial stamp
87 * Returns the current value of the stamp.
89 * @return the current value of the stamp
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.cpp316 // Outputs "<kind_done ... stamp='D.DD'/> </kind>".
325 // Outputs "<kind_done stamp='D.DD'/> </kind>".
331 print_raw("_done stamp='");
332 out()->stamp();
351 stamp();
359 void xmlStream::stamp() { function in class:xmlStream
360 assert_if_no_error(inside_attrs(), "stamp must be an attribute");
361 print_raw(" stamp='");
362 out()->stamp();
H A Dostream.hpp95 // Time stamp
97 void stamp();
98 void stamp(bool guard, const char* prefix, const char* suffix);
99 void stamp(bool guard) { function in class:outputStream
100 stamp(guard, "", ": ");
102 // Date stamp
H A Dostream.cpp197 void outputStream::stamp() { function in class:outputStream
199 _stamp.update(); // start at 0 on first call to stamp()
202 // outputStream::stamp() may get called by ostream_abort(), use snprintf
209 void outputStream::stamp(bool guard, function in class:outputStream
216 stamp();
867 // for a time stamp. So, here, we explicitly update the time stamp
885 // now we update the time stamp of the GC log to be synced up
943 // compile task prints time stamp relative to VM start
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java770 transient private int stamp[]; field in class:Calendar
845 // Special values of stamp[]
869 * The next available value for <code>stamp[]</code>, an internal array.
953 stamp = new int[FIELD_COUNT];
1221 stamp[field] = nextStamp++;
1320 stamp[i] = fields[i] = 0; // UNSET == 0
1351 stamp[field] = UNSET;
1368 return stamp[field] != UNSET;
1579 return stamp[field] >= MINIMUM_USER_STAMP;
1591 if (stamp[
[all...]

Completed in 76 milliseconds