HomeSort by relevance Sort by last modified time
    Searched full:_timestamp (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/webrtc/webrtc/api/objc/
RTCStatsReport.mm 21 @synthesize timestamp = _timestamp;
30 _timestamp,
38 _timestamp = nativeReport.timestamp();
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
fake_frame_generator.py 17 _timestamp: The current timestamp.
34 self._timestamp = 0
45 self._timestamp = next(self._timestamps)
52 return self._timestamp
video_file_frame_generator.py 23 _timestamp: The timestamp of the current frame.
38 self._timestamp = 0
62 self._timestamp = self._capture.get(cv2.cv.CV_CAP_PROP_POS_MSEC)
85 return self._timestamp
  /external/chromium-trace/catapult/perf_insights/perf_insights/results/
gtest_progress_reporter.py 15 self._timestamp = timestamp
18 assert self._timestamp is not None, 'Did not call WillRun.'
19 return (time.time() - self._timestamp) * 1000
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
gtest_progress_reporter.py 26 self._timestamp = None
30 assert self._timestamp is not None, 'Did not call WillRunPage.'
31 return (time.time() - self._timestamp) * 1000
52 self._timestamp = time.time()
  /external/jetty/src/java/org/eclipse/jetty/io/
AbstractConnection.java 31 private final long _timeStamp;
37 _timeStamp = System.currentTimeMillis();
43 _timeStamp = timestamp;
48 return _timeStamp;
  /external/icu/icu4c/source/common/
servls.cpp 156 int32_t _timestamp; member in class:ServiceEnumeration
163 , _timestamp(service->getTimestamp())
172 , _timestamp(other._timestamp)
215 if (_timestamp == _service->getTimestamp()) {
239 _timestamp = _service->getTimestamp();
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 89 Decode(AllOf(Field(&EncodedImage::_timeStamp, ts),
167 Decode(AllOf(Field(&EncodedImage::_timeStamp, 0),
173 Decode(AllOf(Field(&EncodedImage::_timeStamp, 3000),
179 Decode(AllOf(Field(&EncodedImage::_timeStamp, 6000),
185 Decode(AllOf(Field(&EncodedImage::_timeStamp, 9000),
frame_buffer.cc 96 _timeStamp = packet.timestamp;
195 _timeStamp = 0;
encoded_frame.h 66 uint32_t TimeStamp() const { return _timeStamp; }
generic_decoder.cc 145 frame.EncodedImage()._timeStamp);
media_optimization_unittest.cc 40 encoded_image._timeStamp = next_timestamp_;
  /external/jetty/src/java/org/eclipse/jetty/util/thread/
Timeout.java 109 if (task._timestamp>_expiry)
133 if (task==_head || task._timestamp>expiry)
171 if (task._timestamp!=0)
174 task._timestamp=0;
179 task._timestamp = _now+delay;
184 if (last._timestamp <= task._timestamp)
218 long to_next = _duration+_head._next._timestamp-_now;
259 long _timestamp=0; field in class:Timeout.Task
271 return _timestamp;
    [all...]
  /external/webrtc/webrtc/test/
configurable_frame_size_encoder.cc 51 encodedImage._timeStamp = inputImage.timestamp();
fake_decoder.cc 38 frame_.set_timestamp(input._timeStamp);
fake_encoder.cc 102 encoded._timeStamp = input_image.timestamp();
  /external/webrtc/talk/app/webrtc/objc/
RTCStatsReport.mm 55 _timestamp = statsReport.timestamp();
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
videoprocessor.cc 231 encoded_image._timeStamp - prev_time_stamp_ - 1;
233 prev_time_stamp_ = encoded_image._timeStamp;
248 int frame_number = encoded_image._timeStamp;
254 stat.frame_number = encoded_image._timeStamp;
packet_manipulator.cc 77 nbr_packets_dropped, encoded_image->_timeStamp,
  /external/webrtc/webrtc/modules/video_coding/codecs/i420/
i420.cc 85 _encodedImage._timeStamp = inputImage.timestamp();
214 _decodedImage.set_timestamp(inputImage._timeStamp);
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/test/
vp8_impl_unittest.cc 62 encoded_frame_->_timeStamp = encoded_frame._timeStamp;
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ConnectHandler.java 527 private volatile long _timestamp; field in class:ConnectHandler.ProxyToServerConnection
636 return _timestamp;
641 _timestamp = timestamp;
744 private final long _timestamp; field in class:ConnectHandler.ClientToProxyConnection
753 _timestamp = timestamp;
832 return _timestamp;
  /external/webrtc/webrtc/video/
send_statistics_proxy.cc 299 encoded_image._timeStamp != last_sent_frame_timestamp_) {
308 last_sent_frame_timestamp_ = encoded_image._timeStamp;
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
audio_conference_mixer_impl.h 176 uint32_t _timeStamp;
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_decoder.cc 147 new internal::FrameDecodeParams(callback_, input_image._timeStamp));

Completed in 375 milliseconds

1 2 3