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

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 10 import time namespace
82 ufrom = 'From nobody ' + time.ctime(time.time())
utils.py 25 import time namespace
135 Optional timeval if given is a floating point time value as accepted by
136 gmtime() and localtime(), otherwise the current time is used.
140 taking daylight savings time into account.
149 timeval = time.time()
151 now = time.localtime(timeval)
153 # daylight savings time, and whether DST is in effect.
154 if time.daylight and now[-1]:
155 offset = time.altzon
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 1 import time namespace
156 t0 = time.clock()
158 t1 = time.clock()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 130 and current time. So it's very unlikely the returned string appears
136 import time namespace
152 return "%s.%.3f.%d" % (_prefix, time.time(), _get_next_counter())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 9 import time namespace
68 """Hold on to lock for a set amount of time before unlocking."""
69 time.sleep(delay)
73 start_time = int(time.time())
80 end_time = int(time.time())
148 time.sleep(delay)
164 time.sleep(DELAY)
test_queue.py 4 import time namespace
28 time.sleep(0.1)
118 self.fail("Didn't appear to time-out with a full queue")
135 self.fail("Didn't appear to time-out with an empty queue")
test_thread.py 6 import time namespace
51 time.sleep(delay)
119 time.sleep(0.01)
130 time.sleep(0.01)
153 time.sleep(0.01)
205 time.sleep(delay)
test_threading_local.py 55 import time namespace
58 time.sleep(0.01)
test_traceback.py 70 import os, tempfile, time namespace
97 time.sleep(4)
test_urllib2net.py 202 import time namespace
240 time.sleep(0.1)
test_urllibnet.py 10 import time namespace
198 time.strptime(datevalue, dateformat)
test_winsound.py 6 import time namespace
72 time.sleep(0.5)
209 time.sleep(0.5)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 4 LocaleTime -- Discovers and stores locale-specific time information
6 time information
10 strptime -- Calculates the time struct represented by the passed-in string
13 import time namespace
32 """Stores and handles locale-specific information related to time.
42 LC_date_time -- format string for date/time representation (string)
44 LC_time -- format string for time representation (string)
104 # Set self.am_pm by using time.strftime().
111 time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0))
112 am_pm.append(time.strftime("%p", time_tuple).lower()
    [all...]
audiodev.py 68 import time namespace
70 time.sleep(0.1)
cgitb.py 31 import time namespace
108 date = time.ctime(time.time())
199 date = time.ctime(time.time())
mimetools.py 130 and current time. So it's very unlikely the returned string appears
136 import time namespace
152 return "%s.%.3f.%d" % (_prefix, time.time(), _get_next_counter())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_replication.py 5 import time namespace
167 import time namespace
168 timeout = time.time()+60
169 while (time.time()<timeout) and not (self.confirmed_master and self.client_startupdone) :
170 time.sleep(0.02)
178 if time.time()>timeout:
209 import time,os.pat namespace
233 import time namespace
379 import time namespace
391 import time,os.path namespace
418 import time namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 16 import time, calendar namespace
30 # The timezone table does not include the military time zones defined
32 # RFC822 gets the signs wrong, so we can't rely on any such time
46 """Convert a date string to a time tuple.
114 # the time module.
139 # Daylight Saving Time flag is set to -1, since DST is unknown.
144 """Convert a time string to a time tuple."""
156 return time.mktime(data[:8] + (-1,))
generator.py 10 import time namespace
82 ufrom = 'From nobody ' + time.ctime(time.time())
utils.py 25 import time namespace
135 Optional timeval if given is a floating point time value as accepted by
136 gmtime() and localtime(), otherwise the current time is used.
140 taking daylight savings time into account.
149 timeval = time.time()
151 now = time.localtime(timeval)
153 # daylight savings time, and whether DST is in effect.
154 if time.daylight and now[-1]:
155 offset = time.altzon
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 1 import time namespace
156 t0 = time.clock()
158 t1 = time.clock()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/
release.py 43 import time namespace
164 date = time.asctime(date_info.timetuple())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 9 import time namespace
68 """Hold on to lock for a set amount of time before unlocking."""
69 time.sleep(delay)
73 start_time = int(time.time())
80 end_time = int(time.time())
148 time.sleep(delay)
164 time.sleep(DELAY)

Completed in 126 milliseconds

<<21222324252627282930>>