Home
last modified time | relevance | path

Searched refs:fTime (Results 1 – 25 of 41) sorted by relevance

12

/AOO41X/main/drawinglayer/source/animation/
H A Danimationtiming.cxx82 double AnimationEntryFixed::getNextEventTime(double fTime) const in getNextEventTime()
84 if(basegfx::fTools::less(fTime, mfDuration)) in getNextEventTime()
128 double AnimationEntryLinear::getStateAtTime(double fTime) const in getStateAtTime()
132 const double fFactor(fTime / mfDuration); in getStateAtTime()
149 double AnimationEntryLinear::getNextEventTime(double fTime) const in getNextEventTime()
151 if(basegfx::fTools::less(fTime, mfDuration)) in getNextEventTime()
156 fTime += mfFrequency; in getNextEventTime()
158 if(basegfx::fTools::more(fTime, mfDuration)) in getNextEventTime()
160 fTime = mfDuration; in getNextEventTime()
163 return fTime; in getNextEventTime()
[all …]
/AOO41X/main/drawinglayer/inc/drawinglayer/animation/
H A Danimationtiming.hxx51 virtual double getStateAtTime(double fTime) const = 0;
52 virtual double getNextEventTime(double fTime) const = 0;
70 virtual double getStateAtTime(double fTime) const;
71 virtual double getNextEventTime(double fTime) const;
91 virtual double getStateAtTime(double fTime) const;
92 virtual double getNextEventTime(double fTime) const;
104 sal_uInt32 impGetIndexAtTime(double fTime, double &rfAddedTime) const;
114 virtual double getStateAtTime(double fTime) const;
115 virtual double getNextEventTime(double fTime) const;
132 virtual double getStateAtTime(double fTime) const;
[all …]
/AOO41X/main/avmedia/source/java/
H A DPlayer.java122 public synchronized void setMediaTime( double fTime ) in setMediaTime() argument
124 if( fTime >= 0.0 && fTime <= getDuration() ) in setMediaTime()
125 maPlayer.setMediaTime( new javax.media.Time( fTime ) ); in setMediaTime()
137 public synchronized void setStopTime( double fTime ) in setStopTime() argument
144 maPlayer.setStopTime( new javax.media.Time( fTime ) ); in setStopTime()
/AOO41X/main/tools/source/datetime/
H A Ddatetime.cxx372 double fTime = double(nTime); in operator -() local
373 fTime /= 24UL * 60 * 60 * 1000; // convert from milliseconds to fraction in operator -()
374 if ( nDays < 0 && fTime > 0.0 ) in operator -()
375 fTime = 1.0 - fTime; in operator -()
376 return double(nDays) + fTime; in operator -()
/AOO41X/main/qadevOOo/tests/java/ifc/ucb/
H A D_XSimpleFileAccess.java341 DateTime fTime = oObj.getDateTimeModified(filename); in _getDateTimeModified() local
349 boolean partResult = (fTime.Day == lastMod.getDay()); in _getDateTimeModified()
353 log.println("Gained: "+fTime.Day); in _getDateTimeModified()
356 partResult = (fTime.Month == lastMod.getMonth()); in _getDateTimeModified()
360 log.println("Gained: "+fTime.Month); in _getDateTimeModified()
364 partResult = (fTime.Year == lastMod.getYear()); in _getDateTimeModified()
368 log.println("Gained: "+fTime.Year); in _getDateTimeModified()
/AOO41X/main/avmedia/source/macavf/
H A Dmacavf_player.cxx232 void SAL_CALL Player::setMediaTime( double fTime ) in setMediaTime() argument
235 OSL_TRACE ("Player::setMediaTime( %.3fsec)", fTime); in setMediaTime()
237 [mpPlayer seekToTime: CMTimeMakeWithSeconds(fTime,1000) ]; in setMediaTime()
259 void SAL_CALL Player::setStopTime( double fTime ) in setStopTime() argument
262 OSL_TRACE ("Player::setStopTime( %.3fsec)", fTime); in setStopTime()
263 mfStopTime = fTime; in setStopTime()
H A Dmacavf_player.hxx56 …virtual void SAL_CALL setMediaTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
58 … virtual void SAL_CALL setStopTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
/AOO41X/main/avmedia/source/viewer/
H A Dmediawindowbase_impl.cxx284 void MediaWindowBaseImpl::setMediaTime( double fTime ) in setMediaTime() argument
287 mxPlayer->setMediaTime( fTime ); in setMediaTime()
299 void MediaWindowBaseImpl::setStopTime( double fTime ) in setStopTime() argument
302 mxPlayer->setStopTime( fTime ); in setStopTime()
H A Dmediawindow.cxx233 void MediaWindow::setMediaTime( double fTime ) in setMediaTime() argument
236 mpImpl->setMediaTime( fTime ); in setMediaTime()
248 void MediaWindow::setStopTime( double fTime ) in setStopTime() argument
251 mpImpl->setStopTime( fTime ); in setStopTime()
H A Dmediawindowbase_impl.hxx83 void setMediaTime( double fTime );
86 void setStopTime( double fTime );
/AOO41X/main/sc/source/core/tool/
H A Dinterpr2.cxx156 double fTime = GetDouble(); in ScGetMin() local
157 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetMin()
158 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) % 3600; in ScGetMin()
165 double fTime = GetDouble(); in ScGetSec() local
166 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetSec()
167 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) % 60; in ScGetSec()
174 double fTime = GetDouble(); in ScGetHour() local
175 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetHour()
176 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) / 3600; in ScGetHour()
297 double fTime = fmod( (nHour * 3600) + (nMin * 60) + nSec, D_TIMEFACTOR) / D_TIMEFACTOR; in ScGetTime() local
[all …]
/AOO41X/main/sc/source/filter/xml/
H A DXMLCellRangeSourceContext.cxx105 double fTime; in ScXMLCellRangeSourceContext() local
106 if( SvXMLUnitConverter::convertTime( fTime, sValue ) ) in ScXMLCellRangeSourceContext()
107 pCellRangeSource->nRefresh = Max( (sal_Int32)(fTime * 86400.0), (sal_Int32)0 ); in ScXMLCellRangeSourceContext()
H A DXMLTableSourceContext.cxx87 double fTime; in ScXMLTableSourceContext() local
88 if( SvXMLUnitConverter::convertTime( fTime, sValue ) ) in ScXMLTableSourceContext()
89 nRefresh = Max( (sal_Int32)(fTime * 86400.0), (sal_Int32)0 ); in ScXMLTableSourceContext()
/AOO41X/main/offapi/com/sun/star/media/
H A DXPlayer.idl69 @param fTime
72 void setMediaTime( [in] double fTime );
83 @param fTime
86 void setStopTime( [in] double fTime );
/AOO41X/main/avmedia/source/win/
H A Dplayer.cxx352 void SAL_CALL Player::setMediaTime( double fTime ) in setMediaTime() argument
361 mpMP->put_CurrentPosition( fTime ); in setMediaTime()
385 void SAL_CALL Player::setStopTime( double fTime ) in setStopTime() argument
391 mpMP->put_StopTime( fTime ); in setStopTime()
H A Dplayer.hxx76 …virtual void SAL_CALL setMediaTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
78 … virtual void SAL_CALL setStopTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
/AOO41X/main/avmedia/source/gstreamer/
H A Dgstplayer.cxx329 void SAL_CALL Player::setMediaTime( double fTime ) in setMediaTime() argument
335 fTime = ::std::min( ::std::max( fTime, 0.0 ), getDuration() ); in setMediaTime()
339 static_cast< gint64 >( fTime * NANO_TIME_FACTOR ) ); in setMediaTime()
H A Dgstplayer.hxx82 virtual void SAL_CALL setMediaTime( double fTime )
88 virtual void SAL_CALL setStopTime( double fTime )
/AOO41X/main/svl/source/numbers/
H A Dzformat.cxx2620 double fTime = fNumber * 86400.0; in ImpGetTimeOutput() local
2621 fTime = ::rtl::math::round( fTime, int(nCntPost) ); in ImpGetTimeOutput()
2622 if (bSign && fTime == 0.0) in ImpGetTimeOutput()
2625 if( floor( fTime ) > _D_MAX_U_LONG_ ) in ImpGetTimeOutput()
2630 sal_uLong nSeconds = (sal_uLong)floor( fTime ); in ImpGetTimeOutput()
2632 String sSecStr( ::rtl::math::doubleToUString( fTime-nSeconds, in ImpGetTimeOutput()
3143 double fTime = (fNumber - floor( fNumber )) * 86400.0; in ImpGetDateTimeOutput() local
3144 fTime = ::rtl::math::round( fTime, int(nCntPost) ); in ImpGetDateTimeOutput()
3145 if (fTime >= 86400.0) in ImpGetDateTimeOutput()
3148 fTime -= 86400.0; in ImpGetDateTimeOutput()
[all …]
/AOO41X/main/slideshow/source/engine/shapes/
H A Dexternalshapebase.cxx165 void ExternalShapeBase::setMediaTime(double fTime) in setMediaTime() argument
167 implSetIntrinsicAnimationTime(fTime); in setMediaTime()
H A Dmediashape.cxx271 void MediaShape::implSetIntrinsicAnimationTime(double fTime) in implSetIntrinsicAnimationTime() argument
276 _1, boost::cref(fTime)) ); in implSetIntrinsicAnimationTime()
H A Ddrawinglayeranimation.cxx165 void updateShapeAttributes( double fTime,
612 double fTime, basegfx::B2DRectangle const& parentBounds ) in updateShapeAttributes() argument
619 static_cast<sal_uInt32>(fTime * 1000.0) ); in updateShapeAttributes()
/AOO41X/main/avmedia/inc/avmedia/
H A Dmediawindow.hxx102 void setMediaTime( double fTime );
105 void setStopTime( double fTime );
/AOO41X/main/avmedia/source/xine/
H A Dplayer.hxx54 …virtual void SAL_CALL setMediaTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
56 … virtual void SAL_CALL setStopTime( double fTime ) throw (::com::sun::star::uno::RuntimeException);
/AOO41X/main/connectivity/source/drivers/calc/
H A DCTable.cxx383 double fTime = fCellVal - rtl::math::approxFloor( fCellVal ); in lcl_SetValue() local
384 long nIntTime = (long)rtl::math::round( fTime * 8640000.0 ); in lcl_SetValue()
406 double fTime = fCellVal - fDays; in lcl_SetValue() local
408 long nIntTime = (long)::rtl::math::round( fTime * 8640000.0 ); in lcl_SetValue()

12