Searched refs:timeValue (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/tests/
H A Dtc_qtkit.rb21 assert_equal millis, qtt.timeValue
33 assert_equal millis1, qttr.time.timeValue
34 assert_equal millis2, qttr.duration.timeValue
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DGtkClickCounter.cpp67 GTimeVal timeValue;
68 g_get_current_time(&timeValue);
69 return (timeValue.tv_sec * 1000) + (timeValue.tv_usec / 1000);
/macosx-10.9.5/WebKit2-7537.78.2/Platform/efl/
H A DWorkQueueEfl.cpp113 static struct timeval timeValue; local
114 timeValue.tv_sec = 0;
115 timeValue.tv_usec = 0;
118 timeValue.tv_sec = static_cast<long>(timeOut);
119 timeValue.tv_usec = static_cast<long>((timeOut - timeValue.tv_sec) * 1000000);
122 return &timeValue;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DMediaPlayerPrivate.h163 virtual float mediaTimeForTimeValue(float timeValue) const { return timeValue; }
164 virtual double mediaTimeForTimeValueDouble(double timeValue) const { return timeValue; }
H A DMediaPlayer.cpp867 double MediaPlayer::mediaTimeForTimeValue(double timeValue) const
869 return m_private->mediaTimeForTimeValueDouble(timeValue);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvbase.py18 self.failUnlessIsInstance(v.timeValue, (int, long))
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvbase.py18 self.assertIsInstance(v.timeValue, (int, long))
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.mm61 SOFT_LINK(QTKit, QTMakeTime, QTTime, (long long timeValue, long timeScale), (timeValue, timeScale))
742 return static_cast<float>(time.timeValue) / time.timeScale;
750 return static_cast<float>(time.timeValue) / time.timeScale;
1700 float MediaPlayerPrivateQTKit::mediaTimeForTimeValue(float timeValue) const
1703 return timeValue;
1705 QTTime qttime = createQTTime(timeValue);
1706 return static_cast<float>(qttime.timeValue) / qttime.timeScale;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp147 GTimeVal timeValue; local
148 timeValue.tv_sec = static_cast<glong>(seconds);
149 timeValue.tv_usec = static_cast<glong>(roundf(microSeconds / 10000) * 10000);
150 return GST_TIMEVAL_TO_TIME(timeValue);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp1073 float MediaPlayerPrivateQuickTimeVisualContext::mediaTimeForTimeValue(float timeValue) const
1077 return timeValue;
1079 long mediaTimeValue = lroundf(timeValue * timeScale);
/macosx-10.9.5/security_dotmac_tp-55107.1/lib/
H A DdotMacTpRpcGlue.cpp508 SInt32 timeValue = CFStringGetIntValue(resultBody); local
509 estTime = (sint32) timeValue;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.cpp849 float MediaPlayerPrivateAVFoundationCF::mediaTimeForTimeValue(float timeValue) const
852 return timeValue;
855 return timeValue;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.mm986 float MediaPlayerPrivateAVFoundationObjC::mediaTimeForTimeValue(float timeValue) const
989 return timeValue;
992 return timeValue;

Completed in 153 milliseconds