Searched defs:timeStamp (Results 1 - 25 of 31) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DTimeStampParser.java46 * @param timeStamp the header to parse
48 public TimeStampParser(String timeStamp) { argument
49 super(timeStamp);
69 TimeStamp timeStamp = new TimeStamp();
73 timeStamp.setHeaderName(SIPHeaderNames.TIMESTAMP);
86 timeStamp.setTimeStamp(ts);
89 timeStamp.setTime(ts);
111 timeStamp.setDelay(ts);
114 timeStamp.setDelay(ts);
130 return timeStamp;
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java21 * @param timeStamp -- The time at which this message was seen by the stack or sent out by
34 String destination, long timeStamp, boolean isSender,
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/webkit/Source/WebCore/history/
H A DCachedPage.h49 double timeStamp() const { return m_timeStamp; } function in class:WebCore::CachedPage
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java53 private long timeStamp; field in class:MessageLog
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
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
[all...]
/external/nist-sip/java/javax/sip/header/
H A DTimeStampHeader.java14 void setTime(long timeStamp) throws InvalidArgumentException; argument
20 void setTimeStamp(float timeStamp) throws InvalidArgumentException; argument
H A DHeaderFactory.java162 TimeStampHeader createTimeStampHeader(float timeStamp) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year); variable
79 $timeStamps[$anEntry] = date("D, j M Y -- H:i (O)", $timeStamp);
81 if ($timeStamp > $latestTimeStamp[$parts[0]]) {
82 $latestTimeStamp[$parts[0]] = $timeStamp;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DTimeStamp.java54 * timeStamp field
56 protected long timeStamp = -1; field in class: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 { argument
131 if (timeStamp < 0)
134 + "setTimeStamp(), the timeStamp parameter is <0");
135 this.timeStamp = -1;
136 this.timeStampFloat = timeStamp;
180 setTime(long timeStamp) argument
[all...]
H A DHeaderFactoryImpl.java979 * Creates a new TimeStampHeader based on the newly supplied timeStamp value.
981 * @param timeStamp - the new float value of the timeStamp.
982 * @throws InvalidArgumentException if supplied timeStamp is less
986 public TimeStampHeader createTimeStampHeader(float timeStamp) argument
988 if (timeStamp < 0)
989 throw new IllegalArgumentException("illegal timeStamp");
991 t.setTimeStamp(timeStamp);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DVideoLayerManager.h57 int timeStamp; // Used to decide which VideoLayerInfo is the oldest one. member in struct:WebCore::VideoLayerInfo
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DCinematic.java241 public KeyFrame addCinematicEvent(float timeStamp, CinematicEvent cinematicEvent) { argument
242 KeyFrame keyFrame = timeLine.getKeyFrameAtTime(timeStamp);
245 timeLine.addKeyFrameAtTime(timeStamp, keyFrame);
305 public void activateCamera(final float timeStamp, final String cameraName) { argument
306 addCinematicEvent(timeStamp, new AbstractCinematicEvent() {
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelTree.java35 public String timeStamp; field in class:LevelTree.Level
47 timeStamp = time;
104 String timeStamp = null;
130 timeStamp = context.getString(value);
137 currentLevel = new Level(levelResource, null, titleString, timeStamp, inThePast, restartable, showWaitMessage);
/external/webkit/Source/WebCore/loader/cache/
H A DCachedImage.cpp357 double timeStamp = FrameView::currentPaintTimeStamp(); local
358 if (!timeStamp) // If didDraw is called outside of a Frame paint.
359 timeStamp = currentTime();
361 CachedResource::didAccessDecodedData(timeStamp);
H A DCachedResource.cpp378 void CachedResource::didAccessDecodedData(double timeStamp) argument
380 m_lastDecodedAccessTime = timeStamp;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovieVisualContext.cpp54 static void imageAvailableCallback(QTVisualContextRef visualContext, const CVTimeStamp *timeStamp, void *refCon);
112 bool QTMovieVisualContextPriv::isImageAvailableForTime(const QTCVTimeStamp* timeStamp) const
117 return QTVisualContextIsNewImageAvailable(m_visualContext, reinterpret_cast<const CVTimeStamp*>(timeStamp));
120 QTPixelBuffer QTMovieVisualContextPriv::imageForTime(const QTCVTimeStamp* timeStamp) argument
125 OSStatus status = QTVisualContextCopyImageForTime(m_visualContext, kCFAllocatorDefault, reinterpret_cast<const CVTimeStamp*>(timeStamp), &newImage);
164 void QTMovieVisualContextPriv::imageAvailableCallback(QTVisualContextRef visualContext, const CVTimeStamp *timeStamp, void *refCon) argument
173 vc->m_client->imageAvailableForTime(reinterpret_cast<const QTCVTimeStamp*>(timeStamp));
190 bool QTMovieVisualContext::isImageAvailableForTime(const QTCVTimeStamp* timeStamp) const
192 return m_private->isImageAvailableForTime(timeStamp);
195 QTPixelBuffer QTMovieVisualContext::imageForTime(const QTCVTimeStamp* timeStamp) argument
[all...]
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp790 void MediaPlayerPrivateQuickTimeVisualContext::VisualContextClient::imageAvailableForTime(const QTCVTimeStamp* timeStamp) argument
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.h154 virtual HRESULT STDMETHODCALLTYPE timeStamp(
234 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMUIEvent
235 /* [retval][out] */ DOMTimeStamp* result) { return DOMEvent::timeStamp(result); }
343 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMKeyboardEvent
344 /* [retval][out] */ DOMTimeStamp* result) { return DOMEvent::timeStamp(result); }
491 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMMouseEvent
492 /* [retval][out] */ DOMTimeStamp* result) { return DOMEvent::timeStamp(result); }
666 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMMutationEvent
667 /* [retval][out] */ DOMTimeStamp* result) { return DOMEvent::timeStamp(result); }
766 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMOverflowEvent
850 virtual HRESULT STDMETHODCALLTYPE timeStamp( function in class:DOMWheelEvent
[all...]
H A DDOMEventsClasses.cpp155 HRESULT STDMETHODCALLTYPE DOMEvent::timeStamp( function in class:DOMEvent
/external/webkit/Source/WebCore/dom/
H A DEvent.h89 DOMTimeStamp timeStamp() const { return m_createTime; } function in class:WebCore::Event
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h1053 @property(readonly) DOMTimeStamp timeStamp; variable
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabase.cpp651 // If we have a IconRecord, it should also have its timeStamp marked because there is only two times when we create the IconRecord:
652 // 1 - When we read the icon urls from disk, getting the timeStamp at the same time
997 double timeStamp = currentTime(); local
998 LOG(IconDatabase, "(THREAD) Open took %.4f seconds", timeStamp - startTime);
1007 LOG(IconDatabase, "(THREAD) performOpenInitialization() took %.4f seconds, now %.4f seconds from thread start", newStamp - timeStamp, newStamp - startTime);
1008 timeStamp = newStamp;
1030 LOG(IconDatabase, "(THREAD) performImport() took %.4f seconds, now %.4f seconds from thread start", newStamp - timeStamp, newStamp - startTime);
1031 timeStamp = newStamp;
1036 // while (currentTime() - timeStamp < 10);
1047 LOG(IconDatabase, "(THREAD) performURLImport() took %.4f seconds. Entering main loop %.4f seconds from thread start", newStamp - timeStamp, newStam
1362 double timeStamp = currentTime(); local
1462 double timeStamp = currentTime(); local
1571 double timeStamp = currentTime(); local
1776 double timeStamp = currentTime(); local
[all...]
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h316 timeStamp = data.timeStamp;
350 timeStamp = data.timeStamp;
383 WebRtc_UWord32 timeStamp; member in class:webrtc::EncodedVideoData
476 void SetTimeStamp(const WebRtc_UWord32 timeStamp) {_timeStamp = timeStamp;} argument
525 WebRtc_UWord32 timeStamp);
735 const WebRtc_UWord32 timeStamp,
794 const WebRtc_UWord32 timeStamp,
792 UpdateFrame( const WebRtc_Word32 id, const WebRtc_UWord32 timeStamp, const WebRtc_Word16* payloadData, const WebRtc_UWord16 payloadDataLengthInSamples, const int frequencyInHz, const SpeechType speechType, const VADActivity vadActivity, const WebRtc_UWord8 audioChannel, const WebRtc_Word32 volume, const WebRtc_Word32 energy) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 397 milliseconds

12