/external/quake/quake/src/QW/client/ |
cl_tent.c | 90 float time; local 97 time = cl.time; 101 if (cl_explosions[i].start < time) 103 time = cl_explosions[i].start; 137 b->endtime = cl.time + 0.2; 146 if (!b->model || b->endtime < cl.time) 150 b->endtime = cl.time + 0.2; 242 dl->die = cl.time + 0.5; 255 ex->start = cl.time; [all...] |
/external/skia/include/images/ |
SkMovie.h | 49 /** Specify the time code (between 0...duration) to sample a bitmap 50 from the movie. Returns true if this time code generated a different 56 // return the right bitmap for the current time code
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
invert.h | 45 // - Time: O(V + E) 56 // - Time: O(v + e) 59 // time and to visit an input state or arc is assumed and exclusive
|
/external/v8/test/mjsunit/regress/ |
regress-857.js | 28 // Make sure ES5 15.9.1.15 (ISO 8601 / RFC 3339) time zone offsets of 34 // colon-less time expressions in time zone offsets are not conformant
|
/external/valgrind/unittest/ |
old_test_suite.h | 29 These tests are likely to be moved to googletest framework over time. 79 printf("*RESULT test%d: time= %4ld ms\n", id_, end - start); 80 // printf ("Time: %4ldms\n", end-start);
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
date-format-tofte.js | 8 Date.prototype.formatDate = function (input,time) { 14 // time : epoch time (seconds, and optional) 16 // if time is not passed, formatting is based on 17 // the current "this" date object's set time. 55 // Swatch internet time. code simply grabbed from ppk, 149 // Difference to Greenwich time (GMT) in hours 188 // http://www.cl.cam.ac.uk/~mgk25/iso-time.html 266 if (time) { 267 // save time [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
date-format-tofte.js | 8 Date.prototype.formatDate = function (input,time) { 14 // time : epoch time (seconds, and optional) 16 // if time is not passed, formatting is based on 17 // the current "this" date object's set time. 55 // Swatch internet time. code simply grabbed from ppk, 149 // Difference to Greenwich time (GMT) in hours 188 // http://www.cl.cam.ac.uk/~mgk25/iso-time.html 266 if (time) { 267 // save time [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.1.1-1.js | 24 ECMA Section: 15.9.1.1 Time Range 34 - time supported is 8.64e5*10e8 milliseconds from 48 writeHeaderToLog("15.8.1.1 Time Range");
|
15.9.1.1-2.js | 24 ECMA Section: 15.9.1.1 Time Range 34 - time supported is 8.64e5*10e8 milliseconds from 42 writeHeaderToLog("15.8.1.1 Time Range");
|
15.9.4.2.js | 27 a date. It returns a number, the UTC time value 30 The string may be interpreted as a local time, a UTC 31 time, or a time in some other time zone, depending on 34 (need to test strings containing stuff with the time 36 correct GMT time) 66 var TIME = 0; 178 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", ResultArray[TIME], DateCase.getTime() ); 179 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", ResultArray[TIME], DateCase.valueOf() ) [all...] |
15.9.5.30-1.js | 31 1. Let t be the result of LocalTime(this time value). 119 function addNewTestCase( time, hours, min, sec, ms, DateString) { 120 var UTCDate = UTCDateFromTime( SetHours( time, hours, min, sec, ms )); 121 var LocalDate = LocalDateFromTime( SetHours( time, hours, min, sec, ms )); 123 var DateCase = new Date( time ); 198 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms ); 199 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) ); 204 var TIME = LocalTime(t); 206 var MIN = ( min == void 0) ? MinFromTime(TIME) : Number(min); 207 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec) [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
AndroidAnimation.h | 46 double elapsedTime(double time); 48 bool checkIterationsAndProgress(double time, float* finalProgress); 51 bool evaluate(LayerAndroid* layer, double time);
|
/external/webkit/Source/WebKit/android/ |
TimeCounter.h | 90 uint32_t time = getThreadMsec(); local 91 TimeCounter::sEndWebCoreThreadTime = time; 92 TimeCounter::sTotalTimeUsed[m_type] += time - m_startTime;
|
/external/webkit/Source/WebKit/android/plugins/ |
PluginDebugAndroid.h | 40 # define PLUGIN_LOG_EVENT(NPP, EVT, RET, TIME) do { anp_logPluginEvent(NPP, EVT, RET, TIME); } while(0) 54 # define PLUGIN_LOG_EVENT(NPP, EVT, RET, TIME) do { } while(0)
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePagePrivate.h | 52 WK_EXPORT void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time); 53 WK_EXPORT void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time); 54 WK_EXPORT void WKBundlePageSimulateMouseMotion(WKBundlePageRef page, WKPoint position, double time);
|
/external/webrtc/src/system_wrappers/interface/ |
event_wrapper.h | 37 // either immediately or some time in the future. 54 // drift over time relative to the system clock. 55 virtual bool StartTimer(bool periodic, unsigned long time) = 0;
|
/external/wpa_supplicant/ |
eloop.c | 29 struct os_time time; member in struct:eloop_timeout 235 if (os_get_time(&timeout->time) < 0) { 239 timeout->time.sec += secs; 240 timeout->time.usec += usecs; 241 while (timeout->time.usec >= 1000000) { 242 timeout->time.sec++; 243 timeout->time.usec -= 1000000; 258 if (os_time_before(&timeout->time, &tmp->time)) 457 if (os_time_before(&now, &eloop.timeout->time)) [all...] |
/frameworks/base/core/jni/ |
android_os_SystemClock.cpp | 28 #include <sys/time.h> 29 #include <time.h> 36 * Set the current time. This only works when running as root.
|
/frameworks/base/tests/LocationTracker/res/values/ |
strings.xml | 25 <string name="title_mintime_preference">Minimum update time</string> 26 <string name="summary_mintime_preference">The suggested minimum time interval for location updates, in seconds</string> 27 <string name="dialog_title_mintime_preference">Minimum update time</string>
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Random.c | 29 #include <time.h> 40 * need the stdlib and time libraries 51 srand(time(NULL));
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
PKIFailureInfo.java | 28 Time-Stamp Protocol (TSP) 39 -- the TSA's time source is not available 70 * TSA cannot use the time source
|
/packages/apps/Calendar/tests/src/com/android/calendar/ |
FormatDateRangeTest.java | 22 import android.text.format.Time; 33 public Time date1; 34 public Time date2; 42 date1 = new Time(Time.TIMEZONE_UTC); 43 date2 = new Time(Time.TIMEZONE_UTC); 45 date1 = new Time(); 46 date2 = new Time(); 65 // Single point in time. (not a range [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieAudioTrack.java | 263 * Set the start time of this audio track relative to the storyboard
266 * @param startTimeMs the start time in milliseconds
273 * Get the start time of this audio track relative to the storyboard
276 * @return The start time in milliseconds
283 * Set the start time of this audio track relative to the storyboard
286 * @param startTimeMs the start time in milliseconds
293 * Get the start time of this audio track relative to the storyboard
296 * @return The start time in milliseconds
320 * @param beginMs start time in the audio track in milliseconds (relative to
322 * @param endMs end time in the audio track in milliseconds (relative to the [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
msq.h | 41 __time_t msg_stime; /* time of last msgsnd command */ 45 __time_t msg_rtime; /* time of last msgrcv command */ 49 __time_t msg_ctime; /* time of last change */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
spray.x | 66 * time it out. 72 * Get the value of the counter and elapsed time since 79 * Clear the counter and reset the elapsed time
|