/aoo42x/main/drawinglayer/source/animation/ |
H A D | animationtiming.cxx | 84 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 …]
|
/aoo42x/main/drawinglayer/inc/drawinglayer/animation/ |
H A D | animationtiming.hxx | 51 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 …]
|
/aoo42x/main/avmedia/source/java/ |
H A D | Player.java | 122 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()
|
/aoo42x/main/tools/source/datetime/ |
H A D | datetime.cxx | 372 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 -()
|
/aoo42x/main/qadevOOo/tests/java/ifc/ucb/ |
H A D | _XSimpleFileAccess.java | 341 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()
|
/aoo42x/main/avmedia/source/macavf/ |
H A D | macavf_player.cxx | 232 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 D | macavf_player.hxx | 56 …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);
|
/aoo42x/main/sc/source/core/tool/ |
H A D | interpr2.cxx | 158 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 …]
|
/aoo42x/main/avmedia/source/viewer/ |
H A D | mediawindowbase_impl.cxx | 284 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 D | mediawindow.cxx | 233 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 D | mediawindowbase_impl.hxx | 83 void setMediaTime( double fTime ); 86 void setStopTime( double fTime );
|
/aoo42x/main/offapi/com/sun/star/media/ |
H A D | XPlayer.idl | 69 @param fTime 72 void setMediaTime( [in] double fTime ); 83 @param fTime 86 void setStopTime( [in] double fTime );
|
/aoo42x/main/sc/source/filter/xml/ |
H A D | XMLCellRangeSourceContext.cxx | 105 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 D | XMLTableSourceContext.cxx | 87 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()
|
/aoo42x/main/avmedia/source/win/ |
H A D | player.cxx | 352 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 D | player.hxx | 76 …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);
|
/aoo42x/main/svl/source/numbers/ |
H A D | zformat.cxx | 2620 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 …]
|
/aoo42x/main/avmedia/source/gstreamer/ |
H A D | gstplayer.cxx | 326 void SAL_CALL Player::setMediaTime( double fTime ) in setMediaTime() argument 332 fTime = ::std::min( ::std::max( fTime, 0.0 ), getDuration() ); in setMediaTime() 336 static_cast< gint64 >( fTime * NANO_TIME_FACTOR ) ); in setMediaTime()
|
H A D | gstplayer.hxx | 82 virtual void SAL_CALL setMediaTime( double fTime ) 88 virtual void SAL_CALL setStopTime( double fTime )
|
/aoo42x/main/slideshow/source/engine/shapes/ |
H A D | externalshapebase.cxx | 165 void ExternalShapeBase::setMediaTime(double fTime) in setMediaTime() argument 167 implSetIntrinsicAnimationTime(fTime); in setMediaTime()
|
H A D | mediashape.cxx | 271 void MediaShape::implSetIntrinsicAnimationTime(double fTime) in implSetIntrinsicAnimationTime() argument 276 _1, boost::cref(fTime)) ); in implSetIntrinsicAnimationTime()
|
H A D | drawinglayeranimation.cxx | 165 void updateShapeAttributes( double fTime, 612 double fTime, basegfx::B2DRectangle const& parentBounds ) in updateShapeAttributes() argument 619 static_cast<sal_uInt32>(fTime * 1000.0) ); in updateShapeAttributes()
|
/aoo42x/main/avmedia/inc/avmedia/ |
H A D | mediawindow.hxx | 103 void setMediaTime( double fTime ); 106 void setStopTime( double fTime );
|
/aoo42x/main/avmedia/source/xine/ |
H A D | player.hxx | 54 …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);
|
/aoo42x/main/connectivity/source/drivers/calc/ |
H A D | CTable.cxx | 383 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()
|