/external/chromium_org/ui/events/gestures/ |
fling_curve.h | 19 FlingCurve(const gfx::Vector2dF& velocity, base::TimeTicks start_timestamp); 23 base::TimeTicks start_timestamp() const { return start_timestamp_; } function in class:ui::FlingCurve
|
fling_curve.cc | 38 base::TimeTicks start_timestamp) 40 start_timestamp_(start_timestamp),
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/ |
rtp_generator.h | 26 uint32_t start_timestamp = 0, 30 timestamp_(start_timestamp), 64 uint32_t start_timestamp, 67 : RtpGenerator(samples_per_ms, start_seq_number, start_timestamp),
|
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/test/ |
stream_generator.h | 32 uint32_t start_timestamp, 35 uint32_t start_timestamp,
|
stream_generator.cc | 25 uint32_t start_timestamp, 29 timestamp_(start_timestamp), 33 uint32_t start_timestamp, 37 timestamp_ = start_timestamp;
|
/external/chromium_org/chrome/browser/extensions/api/log_private/ |
filter_handler.cc | 39 if (filter_.start_timestamp != kInvalidTime && 40 (filter_.start_timestamp > time || filter_.end_timestamp < time)) {
|
/cts/tests/tests/gesture/src/android/gesture/cts/ |
LineGestureStrokeHelper.java | 36 final static int START_TIMESTAMP = 0; 49 new GesturePoint(LINE_START_POINT, LINE_START_POINT, START_TIMESTAMP),
|
/external/chromium_org/chrome/common/extensions/api/ |
log_private.idl | 13 // Only logs created in [|start_timestamp|, |end_timestamp|] will 15 double start_timestamp;
|
/external/chromium_org/media/filters/ |
audio_clock.cc | 14 AudioClock::AudioClock(base::TimeDelta start_timestamp, int sample_rate) 15 : start_timestamp_(start_timestamp), 21 front_timestamp_(start_timestamp), 22 back_timestamp_(start_timestamp) {
|
source_buffer_stream.cc | 600 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); 1243 DecodeTimestamp start_timestamp = timestamp; local [all...] |
source_buffer_range.cc | 279 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;
|
audio_clock.h | 51 AudioClock(base::TimeDelta start_timestamp, int sample_rate); 66 // start_timestamp = 1000 ms sample_rate = 40 Hz 74 // |start_timestamp| since no amount of media frames tracked
|
audio_file_reader_unittest.cc | 53 base::TimeDelta start_timestamp; local 69 start_timestamp = ConvertFromTimeBase( 78 ASSERT_TRUE(reader_->SeekForTesting(start_timestamp));
|
source_buffer_stream.h | 168 // [|start_timestamp|, |end_timestamp|). 170 // Remove(|start_timestamp|, |removal_end_timestamp|, duration) is called. 172 int GetRemovalRange(DecodeTimestamp start_timestamp, 204 // |start_timestamp| and returns the iterator pointing to it. Returns 206 RangeList::iterator FindExistingRangeFor(DecodeTimestamp start_timestamp); 263 // Find a keyframe timestamp that is >= |start_timestamp| and can be used to 268 const DecodeTimestamp start_timestamp);
|
source_buffer_range.h | 119 // [|start_timestamp|, |end_timestamp|). 121 // [|start_timestamp|, |end_removal_timestamp|) is removed. 124 DecodeTimestamp start_timestamp, DecodeTimestamp end_timestamp,
|
audio_decoder_unittest.cc | 285 base::TimeDelta start_timestamp() const { return start_timestamp_; } function in class:media::AudioDecoderTest 350 Seek(start_timestamp());
|
chunk_demuxer.h | 69 // Append() belong to a media segment that starts at |start_timestamp|. 70 void OnNewMediaSegment(DecodeTimestamp start_timestamp);
|
/external/chromium_org/gpu/command_buffer/service/ |
gpu_tracer_unittest.cc | 127 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/ |
device_status_collector.cc | 315 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;
|
device_status_collector_browsertest.cc | 485 EXPECT_EQ(time_period0.end_timestamp(), time_period1.start_timestamp()); 488 EXPECT_EQ(time_period0.end_timestamp() - time_period0.start_timestamp(), 490 EXPECT_EQ(time_period1.end_timestamp() - time_period1.start_timestamp(),
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
timestamp_scaler_unittest.cc | 55 uint32_t start_timestamp = 0; local 57 start_timestamp = start_timestamp - 5 * kStep; 58 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep;
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/ |
rtp_rtcp_defines.h | 203 start_timestamp(0), 209 uint32_t start_timestamp; member in struct:webrtc::RtpState
|
/external/chromium_org/third_party/skia/tools/tests/ |
run.sh | 118 START_TIMESTAMP=$(date +%s) 123 SECONDS_RUN=$(expr $END_TIMESTAMP - $START_TIMESTAMP)
|
/external/skia/tools/tests/ |
run.sh | 118 START_TIMESTAMP=$(date +%s) 123 SECONDS_RUN=$(expr $END_TIMESTAMP - $START_TIMESTAMP)
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
rtcp_sender.h | 88 void SetStartTimestamp(uint32_t start_timestamp);
|