Home
last modified time | relevance | path

Searched refs:timestamp1 (Results 1 – 4 of 4) sorted by relevance

/external/libweave/src/states/
Dstate_change_queue_unittest.cc41 auto timestamp1 = base::Time::Now(); in TEST_F() local
43 auto timestamp2 = timestamp1 + base::TimeDelta::FromSeconds(1); in TEST_F()
46 ASSERT_TRUE(queue_->NotifyPropertiesUpdated(timestamp1, in TEST_F()
53 EXPECT_EQ(timestamp1, changes[0].timestamp); in TEST_F()
/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddtmf_buffer_unittest.cc235 uint32_t timestamp1 = 0xFFFFFFFF - duration; in TEST() local
236 DtmfEvent event1(timestamp1, event_no, volume, duration, end_bit); in TEST()
244 EXPECT_TRUE(buffer.GetEvent(timestamp1, &out_event)); in TEST()
257 EXPECT_TRUE(buffer.GetEvent(timestamp1, &out_event)); in TEST()
/external/webrtc/webrtc/modules/video_coding/
Djitter_buffer.h54 bool operator()(uint32_t timestamp1, uint32_t timestamp2) const { in operator()
55 return IsNewerTimestamp(timestamp2, timestamp1); in operator()
/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h763 inline uint32_t LatestTimestamp(uint32_t timestamp1, uint32_t timestamp2) { in LatestTimestamp() argument
764 return IsNewerTimestamp(timestamp1, timestamp2) ? timestamp1 : timestamp2; in LatestTimestamp()