HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 1 - 25 of 4313) 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/chromium_org/third_party/yasm/source/patched-yasm/po/
stamp-po 0 timestamp
  /external/elfutils/po/
stamp-po 0 timestamp
  /external/libexif/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
  /hardware/invensense/65xx/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);
29 inv_time_t * timestamp);
33 inv_time_t * timestamp);
35 inv_time_t * timestamp);
38 inv_time_t * timestamp);
    [all...]
results_holder.h 27 void inv_store_gaming_quaternion(const long *quat, inv_time_t timestamp);
28 void inv_store_accel_quaternion(const long *quat, inv_time_t timestamp);
47 void inv_get_quaternion_set(long *data, int *accuracy, inv_time_t *timestamp);
49 inv_error_t inv_get_geomagnetic_quaternion(long *data, inv_time_t *timestamp);
50 void inv_set_geomagnetic_compass_correction(const long *data, inv_time_t timestamp);
51 void inv_get_geomagnetic_compass_correction(long *data, inv_time_t *timestamp);
61 void inv_set_compass_correction(const long *data, inv_time_t timestamp);
62 void inv_get_compass_correction(long *data, inv_time_t *timestamp);
  /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...]
  /hardware/invensense/60xx/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)} instead.
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/chromium_org/ppapi/cpp/private/
video_frame_private.cc 15 PP_TimeTicks timestamp)
17 video_frame_.timestamp = timestamp;
32 set_timestamp(other.timestamp());
44 set_timestamp(other.timestamp());
  /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...]
  /external/chromium_org/media/base/
decoder_buffer_queue.cc 24 // TODO(scherkus): FFmpeg returns some packets with no timestamp after
26 if (buffer->timestamp() == kNoTimestamp()) {
27 DVLOG(1) << "Buffer has no timestamp";
32 earliest_valid_timestamp_ = buffer->timestamp();
35 if (buffer->timestamp() < earliest_valid_timestamp_) {
38 << buffer->timestamp().InMicroseconds()
44 earliest_valid_timestamp_ = buffer->timestamp();
74 base::TimeDelta start = in_order_queue_.front()->timestamp();
75 base::TimeDelta end = in_order_queue_.back()->timestamp();
  /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,
  /system/core/libutils/
SystemClock.cpp 66 * DEBUG_TIMESTAMP to 1 and call the timestamp routine from a single thread
78 static inline void checkTimeStamps(int64_t timestamp,
92 if (timestamp < prevTimestamp) {
95 timestamp, gettime_method_names[curMethod],
100 *prevTimestampPtr = timestamp;
105 #define checkTimeStamps(timestamp, prevTimestampPtr, prevMethodPtr, curMethod)
116 int64_t timestamp; local
130 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
131 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
133 return timestamp;
    [all...]

Completed in 1254 milliseconds

1 2 3 4 5 6 7 8 91011>>