Searched defs:timeStamp (Results 1 - 25 of 30) 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/chromium_org/third_party/WebKit/public/platform/
H A DWebMIDIAccessor.h43 // |timeStamp| is measured in milliseconds as Web MIDI spec defines.
44 virtual void sendMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) { } argument
/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/chromium_org/third_party/WebKit/Source/core/platform/midi/
H A DMIDIAccessor.cpp64 void MIDIAccessor::sendMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) argument
66 m_accessor->sendMIDIData(portIndex, data, length, timeStamp);
84 void MIDIAccessor::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) argument
86 m_client->didReceiveMIDIData(portIndex, data, length, timeStamp);
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIInput.cpp48 void MIDIInput::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) argument
71 dispatchEvent(MIDIMessageEvent::create(timeStamp, array));
H A DMIDIAccess.cpp105 void MIDIAccess::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) argument
116 double timeStampInMilliseconds = 1000 * document->loader()->timing()->monotonicTimeToZeroBasedDocumentTime(timeStamp);
127 double timeStamp; local
132 timeStamp = 0;
137 timeStamp = documentStartTime + 0.001 * timeStampInMilliseconds;
140 m_accessor->sendMIDIData(portIndex, data, length, timeStamp);
/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/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DLocationProvider.java263 double latitude, double longitude, double timeStamp,
262 nativeNewLocationAvailable( double latitude, double longitude, double timeStamp, boolean hasAltitude, double altitude, boolean hasAccuracy, double accuracy, boolean hasHeading, double heading, boolean hasSpeed, double speed) argument
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DImageResource.cpp408 double timeStamp = FrameView::currentPaintTimeStamp(); local
409 if (!timeStamp) // If didDraw is called outside of a Frame paint.
410 timeStamp = currentTime();
412 Resource::didAccessDecodedData(timeStamp);
H A DResource.cpp533 void Resource::didAccessDecodedData(double timeStamp) argument
535 m_lastDecodedAccessTime = timeStamp;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DConsole.cpp205 void Console::timeStamp(PassRefPtr<ScriptArguments> arguments) function in class:WebCore::Console
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DEvent.h107 DOMTimeStamp timeStamp() const { return m_createTime; } function in class:WebCore::Event
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsnce.c149 PRUint32 timeStamp; member in struct:sidCacheLockStr
310 lock->timeStamp = now;
1259 pLock->timeStamp = init_time;
1698 if (pLock->timeStamp < then &&
1699 pLock->timeStamp != 0 &&
1709 pLock->timeStamp = now;
/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 ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3502 milliseconds

12