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

<<21222324252627282930>>

  /external/lldb/test/lang/c/anonymous/
TestAnonymous.py 3 import os, time namespace
  /external/lldb/test/lang/cpp/enum_types/
TestCPP11EnumTypes.py 3 import os, time namespace
  /external/lldb/test/lang/objc/foundation/
TestObjCMethods2.py 5 import os, time namespace
  /external/lldb/test/pexpect-2.4/
FSM.py 249 import sys, os, traceback, optparse, time, string namespace
313 start_time = time.time()
317 if options.verbose: print time.asctime()
319 if options.verbose: print time.asctime()
320 if options.verbose: print 'TOTAL TIME IN MINUTES:',
321 if options.verbose: print (time.time() - start_time) / 60.0
  /external/lldb/test/pexpect-2.4/examples/
bd_serv.py 18 import time, sys, os, getopt, getpass, traceback, threading, socket namespace
31 """The interval parameter defines time between each call to the function.
230 time.sleep(0.2)
236 time.sleep(0.2)
306 start_time = time.time()
307 print time.asctime()
309 print time.asctime()
310 print "TOTAL TIME IN MINUTES:",
311 print (time.time() - start_time) / 60.
    [all...]
chess2.py 10 import sys, os, time namespace
66 time.sleep(1)
76 time.sleep (1)
83 time.sleep(1)
85 time.sleep(1)
topip.py 50 import os, sys, time, re, getopt, pickle, getpass, smtplib namespace
244 #dts = time.strftime('%Y:%m:%d:%H:%M:%S', time.localtime())
245 dts = time.asctime()
  /external/lldb/test/python_api/event/
TestEvents.py 5 import os, time namespace
  /external/lldb/test/python_api/process/
TestProcessAPI.py 5 import os, time namespace
198 # Read from the memory location. This time it should be 'a'.
  /external/lldb/test/python_api/target/
TestTargetAPI.py 5 import os, time namespace
  /external/lldb/test/python_api/thread/
TestThreadAPI.py 5 import os, time namespace
  /external/llvm/utils/lit/lit/
main.py 10 import math, os, platform, random, re, sys, time namespace
193 group.add_option("", "--time-tests", dest="timeTests",
194 help="Track elapsed wall time for each test",
208 group.add_option("", "--max-time", dest="maxTime", metavar="N",
209 help="Maximum time to spend testing (in seconds)",
365 startTime = time.time()
374 testing_time = time.time() - startTime
376 print('Testing Time: %.2fs' % (testing_time,)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_screen.c 125 uint64_t time; local
157 /* getting CPU time first appears to be more accurate */
160 ret = nouveau_getparam(dev, NOUVEAU_GETPARAM_PTIMER_TIME, &time);
162 screen->cpu_gpu_time_delta = time - screen->cpu_gpu_time_delta * 1000;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 46 private Date time; field in class:InvocationRecord
59 this.time = new Date();
96 * @return the time that the command was processed; this may differ slightly from when the command was received.
100 return new Date(time.getTime());
180 return "InvocationRecord[time=" + time + " client-host=" + clientHost + " command=" + command + " data=" + data + "]";
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 47 private Date time; field in class:InvocationRecord
59 this.time = new Date();
95 * @return the time that the command was processed; this may differ slightly from when the command was received.
99 return new Date(time.getTime());
181 return "InvocationRecord[time=" + time + " client-host=" + clientHost + " command=" + command + " data="+ data + "]";
  /external/replicaisland/src/com/replica/replicaisland/
AttackAtDistanceComponent.java 55 TimeSystem time = sSystemRegistry.timeSystem; local
56 final float currentTime = time.getGameTime();
ButtonAnimationComponent.java 63 TimeSystem time = sSystemRegistry.timeSystem; local
64 mLastPressedTime.value = time.getGameTime();
InputTouchScreen.java 41 public boolean getTriggered(int index, float time) {
44 triggered = mTouchPoints[index].getTriggered(time);
80 float time = 0.0f; local
82 time = mTouchPoints[index].getLastPressedTime();
84 return time;
  /external/sonivox/arm-fm-22k/lib_src/
eas_imelodydata.h 53 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18517
eas_otadata.h 61 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18520
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imelodydata.h 53 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18567
eas_otadata.h 61 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18570
  /external/sonivox/arm-wt-22k/lib_src/
eas_imelodydata.h 53 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18615
59 EAS_I32 repeatTime; /* time at start of repeat section */
eas_otadata.h 61 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon18622
  /external/v8/src/
dateparser-inl.h 21 TimeComposer time; local
25 // Accept ES5 ISO 8601 date-time-strings or legacy dates compatible
43 // (following Safari, ISO actually demands local time).
51 // An unsigned number followed by ':' is a time value, and is
53 // zero as well. A number followed by '.' is also a time and must be
58 // A word recognizable as a time-zone is recorded as such, as is
65 // parsed as an ES5 date-time string - which means it will default
66 // to UTC time-zone. That's unavoidable if following the ES5
72 // First try getting as far as possible with as ES5 Date Time String.
73 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz)
    [all...]

Completed in 437 milliseconds

<<21222324252627282930>>