HomeSort by relevance Sort by last modified time
    Searched refs:msec (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 69 * @param msec The time (in mililiseconds) for this key frame. Based on the
73 public void setKeyFrame(int index, int msec, float[] values) {
74 setKeyFrame(index, msec, values, null);
82 * @param msec The time (in mililiseconds) for this key frame. Based on the
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) {
97 nativeSetKeyFrame(native_instance, index, msec, values, blend);
118 * Calls timeToValues(msec, values) with the msec set to now (by calling
126 * Given a millisecond time value (msec), return the interpolated values and
131 * @param msec The time (in milliseconds) used to sample into th
    [all...]
  /frameworks/base/include/media/
IMediaPlayer.h 42 virtual status_t seekTo(int msec) = 0;
43 virtual status_t getCurrentPosition(int* msec) = 0;
44 virtual status_t getDuration(int* msec) = 0;
PVPlayer.h 53 virtual status_t seekTo(int msec);
54 virtual status_t getCurrentPosition(int *msec);
55 virtual status_t getDuration(int *msec);
mediaplayer.h 158 status_t seekTo(int msec);
159 status_t getCurrentPosition(int *msec);
160 status_t getDuration(int *msec);
180 status_t seekTo_l(int msec);
182 status_t getDuration_l(int *msec);
MediaPlayerInterface.h 115 virtual status_t seekTo(int msec) = 0;
116 virtual status_t getCurrentPosition(int *msec) = 0;
117 virtual status_t getDuration(int *msec) = 0;
  /frameworks/base/media/libmediaplayerservice/
MidiFile.h 43 virtual status_t seekTo(int msec);
46 virtual status_t getCurrentPosition(int* msec);
47 virtual status_t getDuration(int* msec);
StagefrightPlayer.h 45 virtual status_t seekTo(int msec);
46 virtual status_t getCurrentPosition(int *msec);
47 virtual status_t getDuration(int *msec);
StagefrightPlayer.cpp 85 status_t StagefrightPlayer::seekTo(int msec) {
88 status_t err = mPlayer->seekTo((int64_t)msec * 1000);
93 status_t StagefrightPlayer::getCurrentPosition(int *msec) {
103 *msec = (positionUs + 500) / 1000;
108 status_t StagefrightPlayer::getDuration(int *msec) {
115 *msec = 0;
119 *msec = (durationUs + 500) / 1000;
TestPlayerStub.h 87 virtual status_t seekTo(int msec) {return mPlayer->seekTo(msec);}
  /hardware/ti/wlan/wl1271/platforms/hw/linux/
host_platform.c 125 int wifi_set_power( int on, unsigned long msec )
134 if( msec )
135 mdelay(msec);
139 int wifi_set_reset( int on, unsigned long msec )
145 if( msec )
146 mdelay(msec);
196 /* Should not be changed, 50 msec cause failures */
  /system/wlan/ti/wilink_6_1/platforms/hw/linux/
host_platform.c 125 int wifi_set_power( int on, unsigned long msec )
134 if( msec )
135 mdelay(msec);
139 int wifi_set_reset( int on, unsigned long msec )
145 if( msec )
146 mdelay(msec);
196 /* Should not be changed, 50 msec cause failures */
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 23 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, SkInterpolator* interp, int index, int msec, jfloatArray valueArray, jfloatArray blendArray)
46 interp->setKeyFrame(index, msec, scalars, blend);
58 static int Interpolator_timeToValues(JNIEnv* env, jobject clazz, SkInterpolator* interp, int msec, jfloatArray valueArray)
63 result = interp->timeToValues(msec, (SkScalar*)values);
  /frameworks/base/media/libmedia/
mediaplayer.cpp 363 status_t MediaPlayer::getCurrentPosition(int *msec)
370 *msec = mCurrentPosition;
373 return mPlayer->getCurrentPosition(msec);
378 status_t MediaPlayer::getDuration_l(int *msec)
386 if (msec)
387 *msec = mDuration;
394 status_t MediaPlayer::getDuration(int *msec)
397 return getDuration_l(msec);
400 status_t MediaPlayer::seekTo_l(int msec)
402 LOGV("seekTo %d", msec);
    [all...]
IMediaPlayer.cpp 118 status_t seekTo(int msec)
122 data.writeInt32(msec);
127 status_t getCurrentPosition(int* msec)
132 *msec = reply.readInt32();
136 status_t getDuration(int* msec)
141 *msec = reply.readInt32();
300 int msec; local
301 status_t ret = getCurrentPosition(&msec);
302 reply->writeInt32(msec);
308 int msec; local
    [all...]
  /dalvik/tests/084-class-init/src/
Main.java 23 public static void sleep(int msec) {
25 Thread.sleep(msec);
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
FastTimes.c 90 static double gScaleMSec = 1.0 / 1000000.0; /* 1 / ( nsec / msec) */
224 UInt64 msec; local
233 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
238 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
243 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
248 msec = (double) RTCToNano(wide) * gScaleMSec + 0.5;
255 msec = ((double) WideTo64bit(wide) + 500.0) / 1000.0;
258 return(msec);
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 77 virtual status_t seekTo(int msec) {return OK;}
78 virtual status_t getCurrentPosition(int *msec) {return OK;}
79 virtual status_t getDuration(int *msec) {return OK;}
  /external/chromium/third_party/icu/source/test/intltest/
tzrulets.h 47 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
  /external/icu4c/test/intltest/
tzrulets.h 48 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/OAL/Pform/Linux/
TILibLinux.h 76 tiVOID TISleep (tiUINT32 msec);
  /dalvik/vm/
Sync.h 113 void dvmThreadSleep(u8 msec, u4 nsec);
160 s8 msec, s4 nsec);
  /external/blktrace/btt/
q2d.c 38 long msec = (long)(q2d / 0.001); local
40 switch (msec) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayGraph.java 108 long msec = -1; local
188 msec = (long)event.sec * 1000L + (event.nsec / 1000000L);
189 millisecondTime = new Millisecond(new Date(msec));
234 msec = (long)event.sec * 1000L + (event.nsec / 1000000L);
235 millisecondTime = new Millisecond(new Date(msec));
246 if (msec != -1 && mMaximumChartItemAge != -1) {
254 timeSeries.removeAgedItems(msec, true);
263 timeSeries.removeAgedItems(msec, true);
  /system/media/opensles/libopensles/
IRecord.c 69 static SLresult IRecord_SetDurationLimit(SLRecordItf self, SLmillisecond msec)
75 if (this->mDurationLimit != msec) {
76 this->mDurationLimit = msec;
179 static SLresult IRecord_SetMarkerPosition(SLRecordItf self, SLmillisecond mSec)
185 if (this->mMarkerPosition != mSec) {
186 this->mMarkerPosition = mSec;
234 static SLresult IRecord_SetPositionUpdatePeriod(SLRecordItf self, SLmillisecond mSec)
238 if (0 == mSec) {
243 if (this->mPositionUpdatePeriod != mSec) {
244 this->mPositionUpdatePeriod = mSec;
    [all...]
  /external/chromium/base/
thread_unittest.cc 34 explicit SleepSome(int msec) : msec_(msec) {

Completed in 400 milliseconds

1 2 3 4