HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 801 - 825 of 2276) sorted by null

<<31323334353637383940>>

  /external/replicaisland/src/com/replica/replicaisland/
GhostComponent.java 111 final TimeSystem time = sSystemRegistry.timeSystem; local
112 final float gameTime = time.getGameTime();
LauncherComponent.java 63 final TimeSystem time = sSystemRegistry.timeSystem; local
64 final float gameTime = time.getGameTime();
97 final TimeSystem time = sSystemRegistry.timeSystem; local
98 final float gameTime = time.getGameTime();
NPCAnimationComponent.java 122 TimeSystem time = sSystemRegistry.timeSystem; local
123 final float airTime = time.getGameTime() - parentObject.getLastTouchedFloorTime();
PatrolComponent.java 202 TimeSystem time = sSystemRegistry.timeSystem; local
203 final float gameTime = time.getGameTime();
238 // Time to attack.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 3 import android.text.format.Time;
17 Time t = new Time();
24 Time t = new Time();
30 Time t = new Time();
32 Time t2 = new Time(t);
44 Time t = new Time()
197 Time time = new Time(); local
221 Time time = new Time(); local
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 167 void SkActive::create(SkADrawable* drawable, SkMSec time) {
168 fApply.fLastTime = time;
180 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
183 interpolator.timeToValues(time, values.get());
184 fApply.applyValues(index, values.get(), count, animate->getValuesType(), time);
192 SkMSec time = 0; local
198 fApply.fLastTime = time;
205 if (state.fBegin > time)
207 if (time > state.fBegin + state.fDuration)
218 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
417 SkMSec time = fMaker.getAppTime(); local
    [all...]
SkAnimateMaker.cpp 36 fScreenplay.time = 0;
124 void SkAnimateMaker::delayEnable(SkApply* apply, SkMSec time) {
130 (new SkEvent(SK_EventType_Delay, fAnimator->getSinkID()))->postTime(time);
250 void SkAnimateMaker::notifyInvalTime(SkMSec time) {
252 fAnimator->onEventPostTime(new SkEvent(SK_EventType_Inval), fHostEventSinkID, time);
257 evt.setS32("time", animate->getStart() + end);
313 SkMSec time = getAppTime(); local
314 debugOut.appendS32(time - fDebugTimeBase);
SkDisplayPost.cpp 191 SkMSec time = maker.getAppTime(); local
192 debugOut.appendS32(time - maker.fDebugTimeBase);
  /external/skia/src/views/
SkEvent.cpp 317 void SkEvent::postTime(SkMSec time) {
326 SkMSec queueDelay = SkEvent::EnqueueTime(this, time);
384 SkMSec SkEvent::EnqueueTime(SkEvent* evt, SkMSec time) {
392 if (SkMSec_LT(time, curr->fTime)) {
399 evt->fTime = time;
463 SkMSec time = evt ? evt->fTime - now : 0; local
470 SkEvent::SignalQueueTimer(time);
  /external/skia/tools/skp/
webpages_playback.py 33 to capture archives and/or capture SKP files. Majority of the time it should be
63 import time namespace
236 start_time = time.time()
322 time.sleep(10)
329 time.time() - start_time)
  /external/sonivox/arm-fm-22k/lib_src/
eas_miditypes.h 82 EAS_U32 ticks; /* time of next event in stream */
107 EAS_I32 time; /* current time in milliseconds/256 */ member in struct:s_smf_data_tag
116 #define SMF_FLAGS_HAS_TIME_SIG 0x02 /* time signature encountered at time 0 */
117 #define SMF_FLAGS_HAS_TEMPO 0x04 /* tempo encountered at time 0 */
118 #define SMF_FLAGS_HAS_GM_ON 0x08 /* GM System On encountered at time 0 */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_miditypes.h 82 EAS_U32 ticks; /* time of next event in stream */
107 EAS_I32 time; /* current time in milliseconds/256 */ member in struct:s_smf_data_tag
116 #define SMF_FLAGS_HAS_TIME_SIG 0x02 /* time signature encountered at time 0 */
117 #define SMF_FLAGS_HAS_TEMPO 0x04 /* tempo encountered at time 0 */
118 #define SMF_FLAGS_HAS_GM_ON 0x08 /* GM System On encountered at time 0 */
  /external/sonivox/arm-wt-22k/lib_src/
eas_miditypes.h 82 EAS_U32 ticks; /* time of next event in stream */
107 EAS_I32 time; /* current time in milliseconds/256 */ member in struct:s_smf_data_tag
116 #define SMF_FLAGS_HAS_TIME_SIG 0x02 /* time signature encountered at time 0 */
117 #define SMF_FLAGS_HAS_TEMPO 0x04 /* tempo encountered at time 0 */
118 #define SMF_FLAGS_HAS_GM_ON 0x08 /* GM System On encountered at time 0 */
  /external/sonivox/jet_tools/JetCreator/
JetAudition.py 28 import time namespace
351 time.sleep(.5)
502 time.sleep(.5)
  /external/strace/
time.c 161 SYS_FUNC(time)
392 struct timeval32 time; member in struct:__anon18825
415 tprintf("tolerance=%d, time=", tx.tolerance);
416 tprint_timeval32(tcp, &tx.time);
447 tprintf("tolerance=%ld, time=", tx.tolerance);
448 tprint_timeval(tcp, &tx.time);
456 tprintf(", constant=%jd, precision=%ju, tolerance=%jd, time=",
459 tprint_timeval(tcp, &tx.time);
767 print_rtc(tcp, &wk.time);
780 print_rtc(tcp, &wk.time);
    [all...]
  /external/svox/pico/tts/
svox_ssml_parser.cpp 280 strcat(m_data, "<break time='");
281 char* time = NULL; local
285 if (strcmp(attributes[i], "time") == 0)
287 time = new char[strlen(attributes[i+1]) + 1];
288 if (!time)
293 strcpy(time, attributes[i+1]);
295 else if (strcmp(attributes[i], "strength") == 0 && !time)
297 time = convertBreakStrengthToTime(attributes[i+1]);
300 if (!time)
302 time = new char[6]
    [all...]
  /external/v8/tools/
stats-viewer.py 43 import time namespace
159 # The title of the window shows the last time the file was
165 """Update the title of the window with the current time."""
166 self.root.title("Stats Viewer [updated %s]" % time.strftime("%H:%M:%S"))
  /external/vboot_reference/tests/
vboot_api_devmode_tests.c 35 int time; member in struct:__anon21177
258 abs(current_time - expected_event[current_event].time) < TIME_FUZZ ) {
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-nfc.py 11 import time namespace
491 time.sleep(0.025)
493 time.sleep(0.5)
wps-nfc.py 11 import time namespace
313 time.sleep(0.1)
330 time.sleep(0.1)
403 time.sleep(0.025)
  /frameworks/av/media/ndk/
NdkMediaExtractor.cpp 210 int64_t time; local
211 if (mData->mImpl->getSampleTime(&time) != OK) {
214 return time;
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 21 import android.text.format.Time;
31 Time t = new Time(Time.TIMEZONE_UTC);
180 Time local = new Time("America/Los_Angeles");
271 Time t = new Time(Time.TIMEZONE_UTC);
279 Time t = new Time(Time.TIMEZONE_UTC)
525 Time time = new Time(); local
567 Time time = new Time(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 146 * Velocity is independent of the time when the events occurs,
251 long time = startime + (int) (i * dt); local
252 addMotionEvent(vt, x, y, time, MotionEvent.ACTION_MOVE);
257 private void addMotionEvent(VelocityTracker vt, int x, int y, long time, int action) {
258 MotionEvent me = MotionEvent.obtain(time, time, action, x, y, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 294 float time = input * mDurationSeconds; local
295 return time * mVelocity / mDiff;
GestureRecorder.java 42 long time; field in class:GestureRecorder.Gesture.Record
48 this.time = when;
67 ("{\"type\":\"motion\", \"time\":%d, \"action\":\"%s\", "
69 this.time,
81 this.time = when;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
87 this.time,

Completed in 297 milliseconds

<<31323334353637383940>>