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

1 2 3 4 5 6 7 8 91011>>

  /art/test/002-sleep/
expected.txt 1 Sleeping 1000 msec...
  /dalvik/tests/002-sleep/
expected.txt 1 Sleeping 1000 msec...
  /external/iproute2/man/man8/
ip-ntable.8 31 .IR MSEC " | "
33 .IR MSEC " | "
35 .IR MSEC " | " "gc_stale MSEC " " | "
37 .IR MSEC " | " "queue LEN " " | "
43 .IR MSEC " | "
45 .IR MSEC " | " "proxy_queue LEN " " | "
47 .IR MSEC " }"
  /art/test/002-sleep/src/
Main.java 9 System.out.println("Sleeping " + millis + " msec...");
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /dalvik/tests/002-sleep/src/
Main.java 9 System.out.println("Sleeping " + millis + " msec...");
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayScreenplay.cpp 15 SK_MEMBER(time, MSec)
SkAnimateSet.cpp 18 SK_MEMBER(begin, MSec),
19 SK_MEMBER(dur, MSec),
  /external/skia/src/animator/
SkDisplayScreenplay.cpp 15 SK_MEMBER(time, MSec)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
P2pBroadcastReceiverTest.java 70 * @param msec timeout value.
75 public synchronized WifiP2pDevice waitDeviceFound(String targetAddr, long msec)
78 Timeout t = new Timeout(msec);
97 * @param msec timeout value
102 public synchronized WifiP2pInfo waitConnectionNotice(long msec) throws InterruptedException {
103 Timeout t = new Timeout(msec);
117 * @param msec
121 public synchronized boolean waitPeerConnected(String targetAddr, long msec)
124 Timeout t = new Timeout(msec);
144 * @param msec
    [all...]
ListenerTest.java 61 * @param msec timeout.
65 public boolean check(ListenerArgument arg, long msec) throws InterruptedException {
68 return check(argList, msec);
76 * @param msec timeout.
80 public synchronized boolean check(List<ListenerArgument> argList, long msec)
102 waitCallback(msec);
160 * @param msec
162 private synchronized void waitCallback(long msec) throws InterruptedException {
163 Timeout t = new Timeout(msec);
Timeout.java 28 * @param msec
30 public Timeout(long msec) {
31 mExpiredTime = System.currentTimeMillis() + msec;
  /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/wilhelm/src/itf/
IRecord.c 69 static SLresult IRecord_SetDurationLimit(SLRecordItf self, SLmillisecond msec)
75 if (thiz->mDurationLimit != msec) {
76 thiz->mDurationLimit = msec;
179 static SLresult IRecord_SetMarkerPosition(SLRecordItf self, SLmillisecond mSec)
183 if (SL_TIME_UNKNOWN == mSec) {
189 if (thiz->mMarkerPosition != mSec) {
190 thiz->mMarkerPosition = mSec;
255 static SLresult IRecord_SetPositionUpdatePeriod(SLRecordItf self, SLmillisecond mSec)
259 if (0 == mSec) {
264 if (thiz->mPositionUpdatePeriod != mSec) {
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.h 111 virtual status_t seekTo(int msec);
112 virtual status_t getCurrentPosition(int *msec);
113 virtual status_t getDuration(int *msec);
139 virtual status_t setPlaybackBeginTime(uint32_t msec);
140 virtual status_t setPlaybackEndTime(uint32_t msec);
141 virtual status_t setStoryboardStartTime(uint32_t msec);
VideoEditorPlayer.cpp 120 status_t VideoEditorPlayer::seekTo(int msec) {
122 status_t err = mPlayer->seekTo((int64_t)msec * 1000);
126 status_t VideoEditorPlayer::getCurrentPosition(int *msec) {
135 *msec = (positionUs + 500) / 1000;
139 status_t VideoEditorPlayer::getDuration(int *msec) {
146 *msec = 0;
150 *msec = (durationUs + 500) / 1000;
256 status_t VideoEditorPlayer::setPlaybackBeginTime(uint32_t msec) {
258 return mPlayer->setPlaybackBeginTime(msec);
261 status_t VideoEditorPlayer::setPlaybackEndTime(uint32_t msec) {
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.h 51 virtual status_t seekTo(int msec);
52 virtual status_t getCurrentPosition(int *msec);
53 virtual status_t getDuration(int *msec);
StagefrightPlayer.cpp 110 status_t StagefrightPlayer::seekTo(int msec) {
111 ALOGV("seekTo %.2f secs", msec / 1E3);
113 status_t err = mPlayer->seekTo((int64_t)msec * 1000);
118 status_t StagefrightPlayer::getCurrentPosition(int *msec) {
128 *msec = (positionUs + 500) / 1000;
133 status_t StagefrightPlayer::getDuration(int *msec) {
140 *msec = 0;
144 *msec = (durationUs + 500) / 1000;
MidiFile.h 45 virtual status_t seekTo(int msec);
48 virtual status_t getCurrentPosition(int* msec);
49 virtual status_t getDuration(int* msec);
  /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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soundfont.h 121 int snd_sf_calc_parm_hold(int msec);
122 int snd_sf_calc_parm_attack(int msec);
123 int snd_sf_calc_parm_decay(int msec);
124 #define snd_sf_calc_parm_delay(msec) (0x8000 - (msec) * 1000 / 725);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soundfont.h 121 int snd_sf_calc_parm_hold(int msec);
122 int snd_sf_calc_parm_attack(int msec);
123 int snd_sf_calc_parm_decay(int msec);
124 #define snd_sf_calc_parm_delay(msec) (0x8000 - (msec) * 1000 / 725);
  /external/chromium_org/chrome/browser/resources/
translate.js 28 * library is not initialized in 600 msec from the library is loaded.
41 * is called in every 100 msec and counted up to 6.
47 * Time in msec when this script is injected.
53 * Time in msec when the Translate Element library is loaded completely.
59 * Time in msec when the Translate Element library is initialized and ready
66 * Time in msec when the Translate Element library starts a translation.
72 * Time in msec when the Translate Element library ends a translation.
196 * Time in msec from this script being injected to all server side scripts
207 * Time in msec from this script being injected to the Translate Element
218 * Time in msec to perform translation
    [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.h 8 // - Fetch |http_url| within |url_fetch_deadline_ms| msec.
12 // |websocket_onopen_deadline_ms| msec.
16 // wait it from server within |websocket_hello_echoback_deadline_ms| msec.
19 // - Keep connection idle at least |websocket_idle_ms| msec.
23 // |websocket_receive_push_message_deadline_ms| msec, and echo it back.
27 // |websocket_bye_deadline_ms| msec from server.
30 // - Close the connection and wait |websocket_close_deadline_ms| msec
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 48 virtual status_t seekTo(int msec);
49 virtual status_t getCurrentPosition(int *msec);
50 virtual status_t getDuration(int *msec);
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 149 int timestamp_lo; /* lower 32 bits timestamp, in msec */
150 int timestamp_hi; /* higher 32 bits timestamp, in msec */
151 int cal_timestamp_lo; /* lower 32 bits cal timestamp, in msec */
152 int cal_timestamp_hi; /* higher 32 bits cal timestamp, in msec */

Completed in 3058 milliseconds

1 2 3 4 5 6 7 8 91011>>