Home
last modified time | relevance | path

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

12

/aoo4110/main/drawinglayer/source/animation/
H A Danimationtiming.cxx84 if(basegfx::fTools::less(fTime, mfDuration)) in getNextEventTime()
132 const double fFactor(fTime / mfDuration); in getStateAtTime()
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()
246 double AnimationEntryList::getStateAtTime(double fTime) const in getStateAtTime()
318 double AnimationEntryLoop::getStateAtTime(double fTime) const in getStateAtTime()
331 const double fRelativeTime(fTime - fTimeAtLoopStart); in getStateAtTime()
[all …]
/aoo4110/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 …]
/aoo4110/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()
/aoo4110/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 -()
/aoo4110/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()
/aoo4110/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);
/aoo4110/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 );
/aoo4110/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()
/aoo4110/main/sc/source/core/tool/
H A Dinterpr2.cxx158 double fTime = GetDouble(); in ScGetMin() local
159 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetMin()
160 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) % 3600; in ScGetMin()
167 double fTime = GetDouble(); in ScGetSec() local
168 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetSec()
169 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) % 60; in ScGetSec()
176 double fTime = GetDouble(); in ScGetHour() local
177 fTime -= ::rtl::math::approxFloor(fTime); // Datumsanteil weg in ScGetHour()
178 long nVal = (long)::rtl::math::approxFloor(fTime*D_TIMEFACTOR+0.5) / 3600; in ScGetHour()
300 if (fTime < 0) in ScGetTime()
[all …]
/aoo4110/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 );
/aoo4110/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);
/aoo4110/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 )
/aoo4110/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()
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()
3149 fNumber = floor( fNumber + 0.5) + fTime; in ImpGetDateTimeOutput()
[all …]
/aoo4110/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()
/aoo4110/main/avmedia/inc/avmedia/
H A Dmediawindow.hxx102 void setMediaTime( double fTime );
105 void setStopTime( double fTime );
/aoo4110/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);
/aoo4110/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()

Completed in 133 milliseconds

12