Home
last modified time | relevance | path

Searched refs:then_time (Results 1 – 5 of 5) sorted by relevance

/dports/www/p5-ClearSilver/clearsilver-0.10.5/python/examples/base/
H A Dhdfhelp.py62 def renderDate(then_time,day=0): argument
63 if then_time is None:
64 then_time = 0
65 then_time = int(then_time)
66 if then_time == 0 or then_time == -1:
69 then_tuple = time.localtime(then_time)
/dports/textproc/p5-Text-ClearSilver/Text-ClearSilver-0.10.5.4/cs/python/examples/base/
H A Dhdfhelp.py62 def renderDate(then_time,day=0): argument
63 if then_time is None:
64 then_time = 0
65 then_time = int(then_time)
66 if then_time == 0 or then_time == -1:
69 then_tuple = time.localtime(then_time)
/dports/www/clearsilver/clearsilver-0.10.5/python/examples/base/
H A Dhdfhelp.py62 def renderDate(then_time,day=0): argument
63 if then_time is None:
64 then_time = 0
65 then_time = int(then_time)
66 if then_time == 0 or then_time == -1:
69 then_tuple = time.localtime(then_time)
/dports/news/pan/pan-0.145/pan/general/
H A De-util.cc237 EvolutionDateMaker :: get_date_string (time_t then_time) const in get_date_string()
239 if (!then_time) in get_date_string()
247 localtime_r (&then_time, &then_tm); in get_date_string()
250 if (now_time - then_time < 60 * 60 * 8 && now_time > then_time) { in get_date_string()
/dports/emulators/mednafen/mednafen/src/
H A Dnetplay.cpp680 uint64 then_time; in ProcessCommand() local
683 if(totallen != sizeof(then_time)) in ProcessCommand()
688 RecvData(&then_time, sizeof(then_time)); in ProcessCommand()
693 …_asprintf(&textbuf, _("*** Round-trip time: %llu ms"), (unsigned long long)(now_time - then_time)); in ProcessCommand()