/external/bison/po/ |
stamp-po | 0 timestamp
|
/external/bison/runtime-po/ |
stamp-po | 0 timestamp
|
/external/elfutils/src/po/ |
stamp-po | 0 timestamp
|
/external/libexif/po/ |
stamp-po | 0 timestamp
|
/ndk/sources/host-tools/make-3.81/po/ |
stamp-po | 0 timestamp
|
/external/elfutils/src/ |
stamp-h1 | 0 timestamp for config.h
|
/external/libvncserver/ |
stamp-h1 | 0 timestamp for rfbconfig.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); 44 inv_error_t inv_get_6axis_quaternion(long *data, 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/chromium-trace/trace-viewer/tracing/tracing/base/units/ |
time_stamp.html | 17 function TimeStamp(timestamp) { 18 this.timestamp = timestamp; 21 TimeStamp.prototype = { 23 return TimeStamp.format(this.timestamp); 27 TimeStamp.format = function(timestamp) { 28 return tr.b.units.Time.currentDisplayUnit.format(timestamp); [all...] |
time_stamp_test.html | 16 var TimeStamp = tr.b.units.TimeStamp; 18 function checkFormat(timestamp, expectedString) { 19 assert.equal(TimeStamp.format(timestamp), expectedString); 20 assert.equal(new TimeStamp(timestamp).toString(), expectedString);
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/ |
datalogger_outputs.h | 22 inv_time_t *timestamp); 24 inv_time_t *timestamp); 26 inv_time_t *timestamp); 28 float *values, int8_t *accuracy, inv_time_t *timestamp); 30 inv_time_t *timestamp); 32 inv_time_t * timestamp); 34 inv_time_t * timestamp); 38 inv_time_t *timestamp); 40 inv_time_t *timestamp); 42 inv_time_t *timestamp); [all...] |
datalogger_outputs.c | 47 * @param[out] timestamp Time when sensor was sampled. 49 void inv_get_sensor_type_gyro_raw_short(short *values, inv_time_t *timestamp) 55 if (timestamp) 56 *timestamp = pg->timestamp; 62 * @param[out] timestamp Time when sensor was sampled. 65 inv_time_t *timestamp) 81 if (timestamp) 82 *timestamp = pg->timestamp; [all...] |
/external/valgrind/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...] |
/external/chromium-trace/trace-viewer/tracing/tracing/ui/units/ |
time_stamp_span_test.html | 17 var timeStamp = tr.ui.units.createTimeStampSpan(3.14); 18 assert.strictEqual(timeStamp.tagName, 'TR-UI-U-TIME-STAMP-SPAN'); 19 assert.strictEqual(timeStamp.timestamp, 3.14); 20 assert.strictEqual(timeStamp.ownerDocument, document); 24 var timeStamp = tr.ui.units.createTimeStampSpan(-273.15, config); 25 assert.strictEqual(timeStamp.tagName, 'TR-UI-U-TIME-STAMP-SPAN'); 26 assert.strictEqual(timeStamp.timestamp, -273.15); 27 assert.strictEqual(timeStamp.ownerDocument, THIS_DOC) [all...] |
time_stamp_span.html | 15 function createTimeStampSpan(timestamp, opt_config) { 16 if (timestamp === undefined) 21 span.timestamp = timestamp; 49 get timestamp() { 53 set timestamp(timestamp) { 54 if (timestamp instanceof tr.b.units.TimeStamp) 55 this.timestamp_ = timestamp.timestamp [all...] |
/hardware/invensense/6515/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...] |
/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/test/java/libcore/java/sql/ |
TimestampTest.java | 20 import java.sql.Timestamp; 27 // Timestamp uses the current default timezone in toString() to convert to 32 Timestamp t1 = new Timestamp(Long.MIN_VALUE); 35 Timestamp t2 = new Timestamp(Long.MIN_VALUE + 1); 38 Timestamp t3 = new Timestamp(Long.MIN_VALUE + 807); 41 Timestamp t4 = new Timestamp(Long.MIN_VALUE + 808) 149 Timestamp timestamp = new Timestamp(0); local [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 472 Timestamp timestamp = new Timestamp(date.getTime()); local [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 34 static class MockTimestamp extends Timestamp { 139 Timestamp theTimestamp = new Timestamp(TIME_TEST1); 140 // The Timestamp should have been created 143 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1); 176 Timestamp theTimestamp = new Timestamp(element[0], element[1], 178 assertNotNull("Timestamp not generated: ", theTimestamp) [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
TestSensorEvent.java | 31 public final long timestamp; field in class:TestSensorEvent 47 * Construct a TestSensorEvent from {@link SensorEvent} data and a received timestamp. 50 * @param receivedTimestamp the timestamp when 56 timestamp = event.timestamp; 65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) { 66 this(sensor, timestamp, timestamp, accuracy, values); 72 public TestSensorEvent(Sensor sensor, long timestamp, long receivedTimestamp, int accuracy, 75 this.timestamp = timestamp [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
TimestampTest.java | 34 * 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...] |