Searched refs:timestamp (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/security/
H A DCodeSigner.java32 private Timestamp timestamp; field in class:CodeSigner
42 * @param timestamp
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { argument
53 this.timestamp = timestamp;
78 return timestamp == null ? that.timestamp == null : timestamp
79 .equals(that.timestamp);
100 return timestamp;
[all...]
H A DTimestamp.java32 private Date timestamp; field in class:Timestamp
41 * timestamp} and the given certificate path.
43 * @param timestamp
48 * if {@code timestamp} is {@code null} or if {@code
51 public Timestamp(Date timestamp, CertPath signerCertPath) { argument
52 if (timestamp == null) {
53 throw new NullPointerException("timestamp == null");
58 // Clone timestamp to prevent modifications
59 this.timestamp = new Date(timestamp
[all...]
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DTimestampTest.java59 Timestamp timestamp = new Timestamp(now, cpath);
60 assertEquals("not expected value", now, timestamp.getTimestamp());
61 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
/libcore/luni/src/main/java/java/util/
H A DUUID.java52 private transient long timestamp; field in class:UUID
102 // setup timestamp field
106 timestamp = timeLow | timeMid | timeHigh;
261 * The timestamp value of the version 1, variant 2 UUID as per <a
268 public long timestamp() { method in class:UUID
272 return timestamp;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DUUIDTest.java35 assertEquals(0x1d07decf81d4faeL, uuid.timestamp());
36 assertEquals(130742845922168750L, uuid.timestamp());
117 * @see UUID#timestamp()
121 assertEquals(0x0, uuid.timestamp());
124 assertEquals(0x333555577777777L, uuid.timestamp());
128 uuid.timestamp();
134 uuid.timestamp();
314 assertEquals(130742845922168750L, actual.timestamp());
324 assertEquals(0L, actual.timestamp());
/libcore/luni/src/main/java/java/sql/
H A DTimestamp.java74 * which defines the nanosecond value of the timestamp specified
109 * Returns {@code true} if this timestamp object is later than the supplied
110 * timestamp, otherwise returns {@code false}.
113 * the timestamp to compare with this timestamp object.
115 * supplied timestamp, {@code false} otherwise.
121 // If the time value is later, the timestamp is later
125 // If the time value is earlier, the timestamp is not later
131 * value determines whether this timestamp is later...
142 * supplied timestamp, otherwis
[all...]
/libcore/
H A DJavaLibrary.mk213 # rm -rf ../out/target/common/docs/libcore-timestamp && mm -j32 libcore-docs
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 538 milliseconds