/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
TestSensorEvent.java | 29 public final long timestamp; field in class:TestSensorEvent 38 timestamp = event.timestamp; 45 protected TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) { 47 this.timestamp = timestamp;
|
/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);
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/ |
validating_util_test.cc | 25 #define TIMESTAMP 1388001600 37 // The timestamp for the wrapped data. 38 const time_t kTimestamp = TIMESTAMP; 54 const char kWrappedData[] = "timestamp=" ITOA(TIMESTAMP) "\n" 58 // "Randomly" corrupted file. The "p" in "timestamp" is capitalized. 59 const char kCorruptedWrappedData[] = "timestamP=" ITOA(TIMESTAMP) "\n" 63 // The timestamp in the middle of data. 65 "timestamp=" ITOA(TIMESTAMP) "\n [all...] |
/external/chromium_org/media/base/ |
audio_timestamp_helper.h | 16 // in repeated sample count to timestamp conversions. 21 // timestamp of the audio sequence. As audio samples are received, their frame 23 // this class so GetTimestamp() can be used to determine the timestamp for the 25 // values for samples added to the current timestamp. GetFramesToTarget() 27 // accumulated frames to reach a target timestamp. 32 // Sets the base timestamp to |base_timestamp| and the sets count to 0. 42 // Get the current timestamp. This value is computed from the base_timestamp() 47 // timestamp reported by GetTimestamp(). This method ensures that 48 // (GetTimestamp() + GetFrameDuration(n)) will equal the timestamp that 52 // Returns the number of frames needed to reach the target timestamp [all...] |
audio_splicer_unittest.cc | 74 EXPECT_EQ(input_1->timestamp(), output_1->timestamp()); 88 EXPECT_EQ(input_2->timestamp(), output_2->timestamp()); 94 EXPECT_EQ(input_3->timestamp(), output_3->timestamp()); 107 // Add some bytes to the timestamp helper so that the 120 EXPECT_EQ(input_2->timestamp(), output_2->timestamp()); 138 EXPECT_EQ(input_1->timestamp(), output_1->timestamp()) [all...] |
text_cue.cc | 9 TextCue::TextCue(const base::TimeDelta& timestamp, 14 : timestamp_(timestamp),
|
stream_parser_buffer.cc | 32 return timestamp(); 36 void StreamParserBuffer::SetDecodeTimestamp(const base::TimeDelta& timestamp) { 37 decode_timestamp_ = timestamp; 47 // TODO(scherkus): Should DataBuffer constructor accept a timestamp and
|
/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/chromium_org/content/test/data/media/webui/ |
player_info_test.html | 50 // Make sure that the first timestamp that gets sent 51 // is recorded as the base timestamp. 54 var timestamp = 5000; 55 pi.addProperty(timestamp, 'key', 'value'); 57 assertEquals(timestamp, pi.firstTimestamp_); 70 // on the first timestamp added. 98 timestamp = 50, 102 pi.addProperty(timestamp, key, value); 112 timestamp = 50, 118 pi.addProperty(timestamp, key, value) [all...] |
/external/chromium_org/net/cert/ |
signed_certificate_timestamp.cc | 22 if (lhs->timestamp != rhs->timestamp) 23 return lhs->timestamp < rhs->timestamp; 36 CHECK(pickle->WriteInt64(timestamp.ToInternalValue())); 49 int64 timestamp; local 58 iter->ReadInt64(×tamp) && 69 sct->timestamp = base::Time::FromInternalValue(timestamp);
|
/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;
|
/external/chromium_org/chrome/browser/policy/proto/cloud/ |
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;
|
/external/chromium_org/components/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;
|
/external/chromium_org/net/quic/crypto/ |
source_address_token.h | 29 int64 timestamp() const { function in class:net::SourceAddressToken 37 void set_timestamp(int64 timestamp) { 38 timestamp_ = timestamp;
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
validating_util.cc | 15 // ValidatingUtil wraps data with checksum and timestamp. Format: 17 // timestamp=<timestamp> 21 // The timestamp is the time_t that was returned from time() function. The 22 // timestamp does not need to be portable because it is written and read only by 50 const char kTimestampPrefix[] = "timestamp="; 89 std::string ValidatingUtil::Wrap(const std::string& data, time_t timestamp) { 90 char timestamp_string[2 + 3 * sizeof timestamp]; 91 snprintf(timestamp_string, sizeof timestamp_string, "%ld", timestamp); 119 time_t timestamp = atol(timestamp_string.c_str()) local [all...] |
validating_util.h | 15 // An object to wrap data with a checksum and a timestamp. These fields are used 28 // Wraps data with a checksum and a timestamp. Sample usage: 40 // Returns |data| with attached checksum and given |timestamp|. 41 static std::string Wrap(const std::string& data, time_t timestamp); 43 // Strips out the timestamp from |data|. Returns |true| if the timestamp is
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
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/chromium_org/content/browser/resources/media/ |
player_info.js | 34 * @param timestamp The time in milliseconds since the Epoch. 38 addProperty: function(timestamp, key, value) { 39 // The first timestamp that we get will be recorded. 42 this.firstTimestamp_ = timestamp; 56 time: timestamp - this.firstTimestamp_, 69 * @param timestamp The time in milliseconds since the Epoch. 73 addPropertyNoRecord: function(timestamp, key, value) { 74 this.addProperty(timestamp, key, value);
|
/libcore/luni/src/main/java/java/security/ |
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...] |
/build/core/ |
phony_package.mk | 6 LOCAL_MODULE_SUFFIX := -timestamp
|
/device/asus/deb/original-kernel-headers/media/ |
msmb_generic_buf_mgr.h | 8 struct timeval timestamp; member in struct:msm_buf_mngr_info
|
/device/asus/flo/original-kernel-headers/media/ |
msmb_generic_buf_mgr.h | 8 struct timeval timestamp; member in struct:msm_buf_mngr_info
|
/external/chromium/chrome/browser/ui/webui/ |
value_helper.cc | 23 dictionary->SetDouble("timestamp", tab.timestamp.ToDoubleT()); 43 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT());
|