HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 1 - 25 of 2252) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/po/
stamp-po 0 timestamp
  /external/bison/runtime-po/
stamp-po 0 timestamp
  /external/elfutils/po/
stamp-po 0 timestamp
  /ndk/sources/host-tools/make-3.81/po/
stamp-po 0 timestamp
  /ndk/sources/host-tools/sed-4.2.1/po/
stamp-po 0 timestamp
  /external/grub/
stamp-h1 0 timestamp for config.h
  /external/valgrind/main/none/tests/
timestamp.vgtest 1 prog: timestamp
  /libcore/luni/src/main/java/java/security/
Timestamp.java 25 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
28 public final class Timestamp implements Serializable {
32 private Date timestamp; field in class:Timestamp
40 * Constructs a new instance of {@code Timestamp} with the specified {@code
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)
    [all...]
CodeSigner.java 32 private Timestamp timestamp; field in class:CodeSigner
42 * @param timestamp
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
53 this.timestamp = timestamp;
78 return timestamp == null ? that.timestamp == null : timestamp
    [all...]
  /hardware/invensense/libsensors_iio/software/core/mllite/
hal_outputs.h 17 inv_time_t * timestamp);
19 inv_time_t * timestamp);
21 inv_time_t * timestamp);
23 inv_time_t * timestamp);
25 inv_time_t * timestamp);
27 inv_time_t * timestamp);
31 inv_time_t * timestamp);
33 inv_time_t * timestamp);
  /external/nist-sip/java/javax/sip/header/
TimeStampHeader.java 6 String NAME = "Timestamp";
14 void setTime(long timeStamp) throws InvalidArgumentException;
20 void setTimeStamp(float timeStamp) throws InvalidArgumentException;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 25 import java.security.Timestamp;
34 * Tests for <code>Timestamp</code> class fields and methods
47 new Timestamp(null, cpath);
53 new Timestamp(now, null);
59 Timestamp timestamp = new Timestamp(now, cpath); local
60 assertEquals("not expected value", now, timestamp.getTimestamp());
61 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
68 Timestamp one = new Timestamp(now, cpath)
    [all...]
  /libcore/luni/src/main/java/java/sql/
Timestamp.java 27 * A Java representation of the SQL {@code TIMESTAMP} type. It provides the
28 * capability of representing the SQL {@code TIMESTAMP} nanosecond value, in
31 * The {@code Timestamp} class consists of a regular date/time value, where only
35 * The addition of the nanosecond value field to the {@code Timestamp} object
37 * it extends. Users should be aware that {@code Timestamp} objects are not
45 public class Timestamp extends Date {
49 // The nanoseconds time value of the Timestamp
56 * Returns a {@code Timestamp} corresponding to the time specified by the
60 * @deprecated Use the constructor {@link #Timestamp(long)}.
74 * which defines the nanosecond value of the timestamp specifie
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 20 import java.sql.Timestamp;
29 * JUnit Testcase for the java.sql.Timestamp class
35 static class MockTimestamp extends Timestamp{
140 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
141 // The Timestamp should have been created
144 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
177 Timestamp theTimestamp = new Timestamp(element[0], element[1],
179 assertNotNull("Timestamp not generated: ", theTimestamp)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 33 * Tests for <code>Timestamp</code> class fields and methods
47 new Timestamp(null, cpath);
53 new Timestamp(now, null);
64 Timestamp one = new Timestamp(now, cpath);
65 Timestamp two = new Timestamp(now, cpath);
73 Timestamp two1 = new Timestamp(new Date(9999), cpath);
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath)
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldTimestampTest.java 20 import java.sql.Timestamp;
29 Timestamp t1 = new Timestamp(Long.MIN_VALUE);
32 Timestamp t2 = new Timestamp(Long.MIN_VALUE + 1);
35 Timestamp t3 = new Timestamp(Long.MIN_VALUE + 807);
38 Timestamp t4 = new Timestamp(Long.MIN_VALUE + 808);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 27 long timestamp; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) {
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) {
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) {
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) {
53 this.timestamp=timestamp;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 20 timestamp = QDateTime::currentDateTime();
25 QDateTime getTimestamp() const { return timestamp; }
30 QDateTime timestamp; member in class:WpaMsg
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
MessageLog.java 53 private long timeStamp;
74 && otherLog.timeStamp == timeStamp;
86 String timeStamp,
98 long ts = Long.parseLong(timeStamp);
101 this.timeStamp = ts;
104 "Bad number format " + timeStamp);
119 long timeStamp,
130 if (timeStamp < 0)
132 this.timeStamp = timeStamp
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
TimeStamp.java 36 * TimeStamp SIP Header.
46 public class TimeStamp extends SIPHeader implements TimeStampHeader {
54 * timeStamp field
56 protected long timeStamp = -1;
70 public TimeStamp() {
71 super(TIMESTAMP);
76 if (timeStamp == -1 && timeStampFloat == -1)
78 else if (timeStamp != -1)
79 return Long.toString(timeStamp);
130 public void setTimeStamp(float timeStamp) throws InvalidArgumentException
    [all...]
  /frameworks/base/core/java/android/gesture/
GesturePoint.java 30 public final long timestamp; field in class:GesturePoint
35 timestamp = t;
42 // Read timestamp
43 final long timeStamp = in.readLong();
44 return new GesturePoint(x, y, timeStamp);
49 return new GesturePoint(x, y, timestamp);
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
SimpleDate.java 29 private long timestamp; field in class:SimpleDate
35 public SimpleDate(long timestamp) {
36 setTimestamp(timestamp);
41 public void setTimestamp(long timestamp) {
43 // TODO find a more efficient way to convert a timestamp to a date?
44 sCalendarInstance.setTimeInMillis(timestamp);
48 this.timestamp = timestamp;
49 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
110 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
RevokedOffer.java 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
37 private Date timestamp; field in class:RevokedOffer
46 * @param timestamp the timestamp at which the revocation was issued
49 String reason, Date timestamp) {
57 this.timestamp = timestamp;
93 * @return the timestamp at which the revocation was issued
96 return this.timestamp;
  /external/chromium/chrome/browser/policy/proto/
device_management_local.proto 17 // Timestamp noting when the |unmanaged| flag was set. The meaning is
19 // this timestamp also notes when the response was cached.
20 optional uint64 timestamp = 2;

Completed in 685 milliseconds

1 2 3 4 5 6 7 8 91011>>