Searched defs:start_timestamp (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/ui/events/gestures/
H A Dfling_curve.h19 FlingCurve(const gfx::Vector2dF& velocity, base::TimeTicks start_timestamp);
23 base::TimeTicks start_timestamp() const { return start_timestamp_; } function in class:ui::FlingCurve
H A Dfling_curve.cc38 base::TimeTicks start_timestamp)
40 start_timestamp_(start_timestamp),
37 FlingCurve(const gfx::Vector2dF& velocity, base::TimeTicks start_timestamp) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dtimestamp_scaler_unittest.cc55 uint32_t start_timestamp = 0; local
57 start_timestamp = start_timestamp - 5 * kStep;
58 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep;
H A Dneteq_unittest.cc217 void WrapTest(uint16_t start_seq_no, uint32_t start_timestamp,
1275 uint32_t start_timestamp,
1280 uint32_t timestamp = start_timestamp;
1274 WrapTest(uint16_t start_seq_no, uint32_t start_timestamp, const std::set<uint16_t>& drop_seq_numbers, bool expect_seq_no_wrap, bool expect_timestamp_wrap) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Drtp_generator.h26 uint32_t start_timestamp = 0,
30 timestamp_(start_timestamp),
64 uint32_t start_timestamp,
67 : RtpGenerator(samples_per_ms, start_seq_number, start_timestamp),
62 TimestampJumpRtpGenerator(int samples_per_ms, uint16_t start_seq_number, uint32_t start_timestamp, uint32_t jump_from_timestamp, uint32_t jump_to_timestamp) argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/test/
H A Dstream_generator.cc25 uint32_t start_timestamp,
29 timestamp_(start_timestamp),
33 uint32_t start_timestamp,
37 timestamp_ = start_timestamp;
24 StreamGenerator(uint16_t start_seq_num, uint32_t start_timestamp, int64_t current_time) argument
32 Init(uint16_t start_seq_num, uint32_t start_timestamp, int64_t current_time) argument
/external/chromium_org/media/filters/
H A Daudio_clock.cc14 AudioClock::AudioClock(base::TimeDelta start_timestamp, int sample_rate) argument
15 : start_timestamp_(start_timestamp),
21 front_timestamp_(start_timestamp),
22 back_timestamp_(start_timestamp) {
H A Daudio_file_reader_unittest.cc53 base::TimeDelta start_timestamp; local
69 start_timestamp = ConvertFromTimeBase(
78 ASSERT_TRUE(reader_->SeekForTesting(start_timestamp));
H A Dsource_buffer_stream.cc600 DecodeTimestamp start_timestamp, DecodeTimestamp end_timestamp,
602 DCHECK(start_timestamp >= DecodeTimestamp()) << start_timestamp.InSecondsF();
603 DCHECK(start_timestamp < end_timestamp)
604 << "start " << start_timestamp.InSecondsF()
615 if (range->GetEndTimestamp() < start_timestamp)
619 start_timestamp, end_timestamp, bytes_to_free, removal_end_timestamp);
1041 SourceBufferStream::FindExistingRangeFor(DecodeTimestamp start_timestamp) {
1043 if ((*itr)->BelongsToRange(start_timestamp))
1051 DecodeTimestamp start_timestamp
1243 DecodeTimestamp start_timestamp = timestamp; local
1267 FindNewSelectedRangeSeekTimestamp( const DecodeTimestamp start_timestamp) argument
[all...]
H A Daudio_decoder_unittest.cc285 base::TimeDelta start_timestamp() const { return start_timestamp_; } function in class:media::AudioDecoderTest
350 Seek(start_timestamp());
H A Dsource_buffer_range.cc279 DecodeTimestamp start_timestamp, DecodeTimestamp end_timestamp,
284 KeyframeMap::iterator gop_itr = GetFirstKeyframeAt(start_timestamp, false);
294 // [keyframe]...[start_timestamp]...[end_timestamp]...[keyframe]
463 DecodeTimestamp start_timestamp = local
465 return !keyframe_map_.empty() && start_timestamp <= timestamp &&
482 DecodeTimestamp start_timestamp = media_segment_start_time_; local
483 if (start_timestamp == kNoDecodeTimestamp())
484 start_timestamp = buffers_.front()->GetDecodeTimestamp();
485 return start_timestamp;
278 GetRemovalGOP( DecodeTimestamp start_timestamp, DecodeTimestamp end_timestamp, int total_bytes_to_free, DecodeTimestamp* removal_end_timestamp) argument
H A Dchunk_demuxer.cc891 void ChunkDemuxerStream::OnNewMediaSegment(DecodeTimestamp start_timestamp) { argument
893 << start_timestamp.InSecondsF() << ")";
895 stream_->OnNewMediaSegment(start_timestamp);
H A Dsource_buffer_stream_unittest.cc114 void NewSegmentAppend(base::TimeDelta start_timestamp, argument
116 AppendBuffers(buffers_to_append, true, start_timestamp, false, true);
608 base::TimeDelta start_timestamp = segment_start_timestamp; local
609 if (start_timestamp == kNoTimestamp())
610 start_timestamp = buffers[0]->timestamp();
612 ASSERT_TRUE(start_timestamp <= buffers[0]->timestamp());
615 DecodeTimestamp::FromPresentationTime(start_timestamp));
/external/chromium_org/gpu/command_buffer/service/
H A Dgpu_tracer_unittest.cc127 const GLint64 start_timestamp = 7 * base::Time::kNanosecondsPerMicrosecond; local
130 (start_timestamp / base::Time::kNanosecondsPerMicrosecond) +
143 gl_fake_queries_.SetCurrentGLTime(start_timestamp);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_status_collector.cc315 int64 start_timestamp; local
317 if (base::StringToInt64(it.key(), &start_timestamp) &&
321 int64 end_timestamp = start_timestamp + kMillisecondsPerDay;
325 period->set_start_timestamp(start_timestamp);
328 if (start_timestamp >= last_reported_day_) {
329 last_reported_day_ = start_timestamp;
/external/chromium_org/media/base/android/
H A Dmedia_source_player_unittest.cc356 base::TimeDelta start_timestamp = current_time; local
367 EXPECT_LT(start_timestamp.InMillisecondsF(),
497 // to decode will have a timestamp equal to |start_timestamp|.
503 const base::TimeDelta& start_timestamp,
511 // |start_timestamp| must be smaller than |target_timestamp|.
512 EXPECT_LE(start_timestamp, target_timestamp);
515 int current_timestamp = start_timestamp.InMilliseconds();
502 PrerollDecoderToTime(bool is_audio, const base::TimeDelta& start_timestamp, const base::TimeDelta& target_timestamp, bool is_clock_manager) argument
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
H A Drtp_rtcp_defines.h203 start_timestamp(0),
209 uint32_t start_timestamp; member in struct:webrtc::RtpState
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Djitter_buffer.cc891 uint32_t start_timestamp = incomplete_frames_.Front()->TimeStamp(); local
893 start_timestamp = decodable_frames_.Back()->TimeStamp();
895 return incomplete_frames_.Back()->TimeStamp() - start_timestamp;
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h570 TimeInMillis start_timestamp() const { return start_timestamp_; } function in class:testing::internal::UnitTestImpl
H A Dgtest.cc3659 FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp()));
3997 internal::TimeInMillis UnitTest::start_timestamp() const { function in class:testing::UnitTest
3998 return impl()->start_timestamp();
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender.cc309 void RTCPSender::SetStartTimestamp(uint32_t start_timestamp) { argument
311 start_timestamp_ = start_timestamp;
/external/gtest/src/
H A Dgtest-internal-inl.h570 TimeInMillis start_timestamp() const { return start_timestamp_; } function in class:testing::internal::UnitTestImpl
H A Dgtest.cc3376 FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp()));
3714 internal::TimeInMillis UnitTest::start_timestamp() const { function in class:testing::UnitTest
3715 return impl()->start_timestamp();
/external/blktrace/
H A Dblkparse.c299 static unsigned long long start_timestamp; variable
591 start_timestamp = bit->time;
1877 if (start_timestamp
1878 && start_timestamp != genesis_time) {
1879 long delta = genesis_time - start_timestamp;
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc971 TimeInMillis start_timestamp() const { return start_timestamp_; } function in class:testing::internal::UnitTestImpl
4860 FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp()));
5198 internal::TimeInMillis UnitTest::start_timestamp() const { function in class:testing::UnitTest
5199 return impl()->start_timestamp();

Completed in 3584 milliseconds

12