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

<<21222324252627282930>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 129 * Set the time field. This has the format hour:minute:second
131 protected void time(Calendar calendar) throws ParseException { method in class:HeaderParser
145 throw createParseException("error processing time ");
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 53 * @param processorLoad the fraction of processing time to be spend on
64 * for a limited period of time.
66 * @param processorLoad the fraction of processing time to be spend on
116 // Repaint the SplashPanel one last time.
155 long time = System.currentTimeMillis(); local
156 if (time > startTime + stopTime)
161 // Do a repaint and time it.
165 long repaintTime = System.currentTimeMillis() - time;
  /external/replicaisland/src/com/replica/replicaisland/
PopOutComponent.java 71 TimeSystem time = sSystemRegistry.timeSystem; local
72 final float currentTime = time.getGameTime();
SimpleCollisionComponent.java 75 float time = timeSystem.getGameTime(); local
77 parentObject.setLastTouchedLeftWallTime(time);
79 parentObject.setLastTouchedRightWallTime(time);
83 parentObject.setLastTouchedFloorTime(time);
85 parentObject.setLastTouchedCeilingTime(time);
  /external/selinux/sepolgen/src/sepolgen/
audit.py 36 import time namespace
40 s = time.localtime(time.time() - off)
41 bootdate = time.strftime("%x", s)
42 boottime = time.strftime("%X", s)
342 are fed to the parser in chronological order - time stamps are not
415 # We initialize every time the auditd is started. This
  /external/skia/platform_tools/android/bin/
download_utils.py 18 import time namespace
128 # Check if the stampfile is older than the minimum last mod time
170 time.sleep(pow(2, count))
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 209 SkMSec time = fMaker.getAppTime(); local
210 debugOut.appendS32(time - fMaker.fDebugTimeBase);
  /external/skia/tests/
skia_test.cpp 54 SkString time; local
57 time.printf("%5dms ", elapsed);
59 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(),
  /external/sonivox/arm-fm-22k/lib_src/
eas_data.h 71 EAS_U32 time; member in struct:s_eas_stream_tag
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_data.h 71 EAS_U32 time; member in struct:s_eas_stream_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 73 EAS_U32 time; member in struct:s_eas_stream_tag
  /external/strace/
count.c 40 /* time may be total latency or system time */
41 struct timeval time; member in struct:call_counts
72 /* tv = wall clock time spent while in syscall */
75 /* Spent more wall clock time than spent system time? (usually yes) */
93 /* tv = system time spent, if it isn't 0 */
96 /* tv = smallest "sane" time interval */
105 tv_add(&cc->time, &cc->time, count_wallclock ? &wtv : tv)
    [all...]
  /external/v8/tools/
lexer-shell.cc 222 v8::base::TimeDelta time; local
223 time = ProcessFile(fnames[i].c_str(), encoding,
226 baseline_total += time.InMillisecondsF();
run-deopt-fuzzer.py 41 import time namespace
440 with file("%s.%d.txt" % (dump_results_file, time.time()), "w") as f:
run-tests.py 42 import time namespace
241 result.add_option("--time", help="Print timing information after running",
543 start_time = time.time()
578 overall_duration = time.time() - start_time
580 if options.time:
  /external/v8/tools/testrunner/server/
main.py 34 import time namespace
105 time.sleep(0.5) # Give those peers some time to reply.
115 time.sleep(60)
  /external/vixl/tools/
test.py 36 import time namespace
207 start_time = time.time()
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 11 // System independant wrapper for polling elapsed time in ms and us.
13 // time domain.
26 #include <sys/time.h>
27 #include <time.h>
38 // Current time in the tick domain.
41 // Now in the time domain in ms.
44 // Now in the time domain in us.
114 TickTime time = lhs; local
115 time._ticks += ticks;
116 return time;
    [all...]
  /external/wpa_supplicant_8/hostapd/
wps-ap-nfc.py 11 import time namespace
203 time.sleep(0.1)
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-signals.py 5 import time namespace
  /frameworks/base/core/java/android/widget/
DateTimeView.java 26 import android.text.format.Time;
37 // - listen for the next threshold time to update the view.
43 * Displays a given time in a convenient human-readable foramt.
95 public void setTime(long time) {
96 Time t = new Time();
97 t.set(time);
112 Date time = mTime; local
114 Time t = new Time();
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 137 final long time = SystemClock.uptimeMillis(); local
139 if (time - mStartTimeMillis > mDuration) {
160 mDuration = (int) (mReverse ? time - mStartTimeMillis :
161 mOriginalDuration - (time - mStartTimeMillis));
  /frameworks/base/services/core/java/com/android/server/notification/
ScheduleCalendar.java 43 public long nextScheduleStart(long time) {
45 final long start = getTime(time, mSchedule.startHour, mSchedule.startMinute);
48 if (t > time && isInSchedule(t)) {
67 final long time = getTime(now, hr, min); local
68 return time <= now ? addDays(time, 1) : time;
80 public boolean isInSchedule(long time) {
82 final long start = getTime(time, mSchedule.startHour, mSchedule.startMinute);
83 long end = getTime(time, mSchedule.endHour, mSchedule.endMinute)
    [all...]
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
AlignmentTest.java 118 float time = (float) (System.currentTimeMillis() - start) / N * 1000; local
119 System.out.println("Time: " + time + "mics");
  /frameworks/multidex/library/test/src/android/support/multidex/
ZipEntryReader.java 42 * Note: The only bit that we will enforce at this time
65 int time = in.getShort() & 0xffff; local
87 entry.setTime(getTime(time, modDate));
111 private static long getTime(int time, int modDate) {
115 modDate & 0x1f, (time >> 11) & 0x1f, (time >> 5) & 0x3f,
116 (time & 0x1f) << 1);

Completed in 114 milliseconds

<<21222324252627282930>>