HomeSort by relevance Sort by last modified time
    Searched refs:timeValue (Results 1 - 10 of 10) sorted by null

  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeImpl.java 62 * @param timeValue A String in the representation specified above
65 * @exception java.lang.IllegalArgumentException if the timeValue input
70 TimeImpl(String timeValue, int constraints) {
80 // Will throw NullPointerException if timeValue is null
81 if (timeValue.equals("indefinite")
86 if (timeValue.startsWith("+")) {
87 timeValue = timeValue.substring(1);
88 } else if (timeValue.startsWith("-")) {
89 timeValue = timeValue.substring(1)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayerPrivate.h 132 virtual float mediaTimeForTimeValue(float timeValue) const { return timeValue; }
MediaPlayer.cpp 714 float MediaPlayer::mediaTimeForTimeValue(float timeValue) const
716 return m_private->mediaTimeForTimeValue(timeValue);
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebViewWidget.cpp 230 GTimeVal timeValue;
231 g_get_current_time(&timeValue);
232 return (timeValue.tv_sec * 1000) + (timeValue.tv_usec / 1000);
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 78 SOFT_LINK(QTKit, QTMakeTime, QTTime, (long long timeValue, long timeScale), (timeValue, timeScale))
774 return static_cast<float>(time.timeValue) / time.timeScale;
782 return static_cast<float>(time.timeValue) / time.timeScale;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.mm 645 float MediaPlayerPrivateAVFoundationObjC::mediaTimeForTimeValue(float timeValue) const
648 return timeValue;
651 return timeValue;
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduParser.java 442 long timeValue;
444 timeValue = parseLongInteger(pduDataStream);
452 timeValue = System.currentTimeMillis()/1000 + timeValue;
456 headers.setLongInteger(timeValue, headerField);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp 436 GTimeVal timeValue;
437 timeValue.tv_sec = static_cast<glong>(seconds);
438 timeValue.tv_usec = static_cast<glong>(roundf(microSeconds / 10000) * 10000);
440 GstClockTime clockTime = GST_TIMEVAL_TO_TIME(timeValue);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp     [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp 770 GTimeVal timeValue;
771 g_get_current_time(&timeValue);
772 return (timeValue.tv_sec * 1000) + (timeValue.tv_usec / 1000);
    [all...]

Completed in 301 milliseconds