Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 2241) sorted by relevance

12345678910>>...90

/external/chromium/base/third_party/nspr/
Dprtime.cc80 static void localtime_r(const time_t* secs, struct tm* time) { in localtime_r() argument
81 (void) localtime_s(time, secs); in localtime_r()
257 ApplySecOffset(PRExplodedTime *time, PRInt32 secOffset) in ApplySecOffset() argument
259 time->tm_sec += secOffset; in ApplySecOffset()
262 if (time->tm_sec < 0 || time->tm_sec >= 60) { in ApplySecOffset()
263 time->tm_min += time->tm_sec / 60; in ApplySecOffset()
264 time->tm_sec %= 60; in ApplySecOffset()
265 if (time->tm_sec < 0) { in ApplySecOffset()
266 time->tm_sec += 60; in ApplySecOffset()
267 time->tm_min--; in ApplySecOffset()
[all …]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DDERGeneralizedTime.java16 String time; field in DERGeneralizedTime
69 String time) in DERGeneralizedTime() argument
71 this.time = time; in DERGeneralizedTime()
86 Date time) in DERGeneralizedTime() argument
92 this.time = dateF.format(time); in DERGeneralizedTime()
108 this.time = new String(dateC); in DERGeneralizedTime()
117 return time; in getTimeString()
137 if (time.charAt(time.length() - 1) == 'Z') in getTime()
139 return time.substring(0, time.length() - 1) + "GMT+00:00"; in getTime()
143 int signPos = time.length() - 5; in getTime()
[all …]
DDERUTCTime.java15 String time; field in DERUTCTime
69 String time) in DERUTCTime() argument
71 this.time = time; in DERUTCTime()
86 Date time) in DERUTCTime() argument
92 this.time = dateF.format(time); in DERUTCTime()
108 this.time = new String(dateC); in DERUTCTime()
164 if (time.indexOf('-') < 0 && time.indexOf('+') < 0) in getTime()
166 if (time.length() == 11) in getTime()
168 return time.substring(0, 10) + "00GMT+00:00"; in getTime()
172 return time.substring(0, 12) + "GMT+00:00"; in getTime()
[all …]
/external/webkit/Source/WebKit/chromium/tests/
DWebInputEventFactoryTestGtk.cpp51 firstClick.time = 0; in TEST()
60 secondClick.time = firstClick.time + 100; in TEST()
65 firstClick.time += 10000; in TEST()
71 secondClick.time = firstClick.time + 1000; in TEST()
76 firstClick.time += 10000; in TEST()
82 secondClick.time = firstClick.time + 1; in TEST()
88 firstClick.time += 10000; in TEST()
94 secondClick.time = firstClick.time + 1; in TEST()
100 firstClick.time += 10000; in TEST()
106 secondClick.time = firstClick.time + 1; in TEST()
[all …]
/external/v8/src/
Ddate.js57 function TimeWithinDay(time) { argument
58 return Modulo(time, msPerDay);
83 function InLeapYear(time) { argument
84 return DaysInYear(YearFromTime(time)) - 365; // Returns 1 or 0.
93 var time = TimeFromYear(year);
94 var recent_year = (InLeapYear(time) == 0 ? 1967 : 1956) +
95 (WeekDay(time) * 12) % 28;
231 function WeekDay(time) { argument
232 return Modulo(DAY(time) + 4, 7);
236 function LocalTime(time) { argument
[all …]
Dmacros.py151 macro DAY(time) = ($floor(time / 86400000));
152 macro NAN_OR_DATE_FROM_TIME(time) = (NUMBER_IS_NAN(time) ? time : DateFromTime(time));
153 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24));
154 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60));
155 macro NAN_OR_MIN_FROM_TIME(time) = (NUMBER_IS_NAN(time) ? time : MIN_FROM_TIME(time));
156 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60));
157 macro NAN_OR_SEC_FROM_TIME(time) = (NUMBER_IS_NAN(time) ? time : SEC_FROM_TIME(time));
158 macro MS_FROM_TIME(time) = (Modulo(time, 1000));
159 macro NAN_OR_MS_FROM_TIME(time) = (NUMBER_IS_NAN(time) ? time : MS_FROM_TIME(time));
Ddateparser-inl.h43 TimeComposer time; in Parse() local
53 if (!time.IsEmpty()) return false; in Parse()
54 time.Add(n); in Parse()
55 time.Add(0); in Parse()
58 if (!time.Add(n)) return false; in Parse()
61 } else if (in.Skip('.') && time.IsExpecting(n)) { in Parse()
62 time.Add(n); in Parse()
65 time.AddFinal(n); in Parse()
68 } else if (time.IsExpecting(n)) { in Parse()
69 time.AddFinal(n); in Parse()
[all …]
/external/e2fsprogs/tests/f_dup4/
Dexpect.117 File /dir/foo (inode #16, mod time Tue Apr 10 21:00:00 2007)
19 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
20 /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
21 /dir2/bar (inode #17, mod time Tue Apr 10 21:00:00 2007)
24 File /dir2/bar (inode #17, mod time Tue Apr 10 21:00:00 2007)
26 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
27 /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
28 /dir/foo (inode #16, mod time Tue Apr 10 21:00:00 2007)
31 File /dir3/baz (inode #18, mod time Tue Apr 10 21:00:00 2007)
33 /dir/quux1 (inode #19, mod time Tue Apr 10 21:00:00 2007)
[all …]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
DTime.java19 DERObject time; field in Time
29 DERObject time) in Time() argument
31 if (!(time instanceof DERUTCTime) in Time()
32 && !(time instanceof DERGeneralizedTime)) in Time()
37 this.time = time; in Time()
58 time = new DERGeneralizedTime(d); in Time()
62 time = new DERUTCTime(d.substring(2)); in Time()
87 if (time instanceof DERUTCTime) in getTime()
89 return ((DERUTCTime)time).getAdjustedTime(); in getTime()
93 return ((DERGeneralizedTime)time).getTime(); in getTime()
[all …]
/external/chromium/base/i18n/
Dtime_formatting.cc20 const Time& time) { in TimeFormat() argument
24 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string); in TimeFormat()
33 string16 TimeFormatTimeOfDay(const Time& time) { in TimeFormatTimeOfDay() argument
38 return TimeFormat(formatter.get(), time); in TimeFormatTimeOfDay()
41 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time, in TimeFormatTimeOfDayWithHourClockType() argument
47 return TimeFormatTimeOfDay(time); in TimeFormatTimeOfDayWithHourClockType()
66 return TimeFormat(&formatter, time); in TimeFormatTimeOfDayWithHourClockType()
69 string16 TimeFormatShortDate(const Time& time) { in TimeFormatShortDate() argument
72 return TimeFormat(formatter.get(), time); in TimeFormatShortDate()
75 string16 TimeFormatShortDateNumeric(const Time& time) { in TimeFormatShortDateNumeric() argument
[all …]
Dtime_formatting.h25 string16 TimeFormatTimeOfDay(const Time& time);
30 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time,
34 string16 TimeFormatShortDate(const Time& time);
37 string16 TimeFormatShortDateNumeric(const Time& time);
41 string16 TimeFormatShortDateAndTime(const Time& time);
45 string16 TimeFormatFriendlyDateAndTime(const Time& time);
49 string16 TimeFormatFriendlyDate(const Time& time);
/external/quake/quake/src/WinQuake/
Dmain.cpp51 nsecs_t time = systemTime(SYSTEM_TIME_THREAD) / 1000; in PMP_Common() local
54 baseTime = time; in PMP_Common()
56 time -= baseTime; in PMP_Common()
63 startTimes[startTimeStackPointer] = time; in PMP_Common()
66 LOGI("< %lld [%d] %s\n", time, startTimeStackPointer, buf); in PMP_Common()
68 fprintf(stderr, "Quake < %lld %d %s\n", time, startTimeStackPointer, buf); in PMP_Common()
81 elapsed = time - startTimes[startTimeStackPointer]; in PMP_Common()
85 LOGI("> %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf); in PMP_Common()
87 fprintf(stderr, "Quake > %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf); in PMP_Common()
93 LOGI("= %lld %lld %s\n", time, time - lastTime, buf); in PMP_Common()
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DNetworkManager.js123 …requestWillBeSent: function(identifier, frameId, loaderId, documentURL, request, time, stackTrace,… argument
130 this.responseReceived(identifier, time, "Other", redirectResponse);
131 resource = this._appendRedirect(identifier, time, request.url);
135 resource.startTime = time;
150 responseReceived: function(identifier, time, resourceType, response) argument
160 resource.responseReceivedTime = time;
168 domContentEventFired: function(time) argument
171 WebInspector.panels.network.mainResourceDOMContentTime = time;
174 loadEventFired: function(time) argument
177 WebInspector.panels.network.mainResourceLoadTime = time;
[all …]
/external/sonivox/jet_tools/JetCreator/
DJetCtrls.py405 …self.time = (wx.TextCtrl(parent, -1, str(value[0]), pos=(p1, top), size=(w1, -1), style=wx.TE_NOHI…
409 h = self.time[2].GetSize().height
410 w = self.time[2].GetSize().width + self.time[2].GetPosition().x + 8
419 self.time[0].Bind(wx.EVT_SET_FOCUS, self.OnFocusMeasure, self.time[0] )
420 self.time[1].Bind(wx.EVT_SET_FOCUS, self.OnFocusBeat, self.time[1] )
421 self.time[2].Bind(wx.EVT_SET_FOCUS, self.OnFocusTick, self.time[2] )
423 self.time[0].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[0] )
424 self.time[1].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[1] )
425 self.time[2].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[2] )
430 self.time[0].Unbind(wx.EVT_KILL_FOCUS, self.time[0])
[all …]
/external/markdown/markdown/extensions/
Drss.py32 def rdftime(time): argument
34 time = time.replace(":", " ")
35 time = time.replace("/", " ")
36 time = time.split()
37 return "%s-%s-%sT%s:%s:%s-08:00" % (time[0], time[1], time[2],
38 time[3], time[4], time[5])
/external/blktrace/btt/
Dtrace_complete.c38 __out(ofp, iop->t.time, IOP_Q, iop->t.sector, t_sec(&iop->t), 0); in display_io_track()
60 update_cregion(&all_regions, c_iop->t.time); in handle_complete()
61 update_cregion(&c_iop->dip->regions, c_iop->t.time); in handle_complete()
63 update_cregion(&c_iop->pip->regions, c_iop->t.time); in handle_complete()
64 aqd_complete(c_iop->dip->aqd_handle, BIT_TIME(c_iop->t.time)); in handle_complete()
69 __u64 q2c = tdelta(q_iop->t.time, c_iop->t.time); in handle_complete()
74 latency_q2c(q_iop->dip, q_iop->t.time, q2c); in handle_complete()
77 __u64 d2c = tdelta(q_iop->d_time, c_iop->t.time); in handle_complete()
80 latency_d2c(q_iop->dip, c_iop->t.time, d2c); in handle_complete()
87 q_iop->c_time = c_iop->t.time; in handle_complete()
[all …]
Dtrace_im.c31 q_iop->g_time = g_iop->t.time; in handle_g()
32 update_q2g(q_iop, tdelta(q_iop->t.time, g_iop->t.time)); in handle_g()
34 update_s2g(q_iop, tdelta(q_iop->s_time, g_iop->t.time)); in handle_g()
43 q_iop->s_time = s_iop->t.time; in handle_s()
51 q_iop->i_time = i_iop->t.time; in handle_i()
53 update_g2i(q_iop, tdelta(q_iop->g_time, i_iop->t.time)); in handle_i()
65 q_iop->m_time = m_iop->t.time; in handle_m()
66 update_q2m(q_iop, tdelta(q_iop->t.time, m_iop->t.time)); in handle_m()
Dtrace_issue.c37 aqd_issue(d_iop->dip->aqd_handle, BIT_TIME(d_iop->t.time)); in handle_issue()
44 update_i2d(q_iop, tdelta(q_iop->i_time, d_iop->t.time)); in handle_issue()
46 update_m2d(q_iop, tdelta(q_iop->m_time, d_iop->t.time)); in handle_issue()
51 q_iop->d_time = d_iop->t.time; in handle_issue()
57 d_iop->t.time - q_iop->t.time); in handle_issue()
58 latency_q2d(q_iop->dip, d_iop->t.time, in handle_issue()
59 d_iop->t.time - q_iop->t.time); in handle_issue()
/external/webkit/Source/WebCore/html/
DTimeRanges.cpp111 bool TimeRanges::contain(float time) const in contain()
115 if (time >= start(n, unused) && time <= end(n, unused)) in contain()
121 float TimeRanges::nearest(float time) const in nearest()
129 if (time >= startTime && time <= endTime) in nearest()
130 return time; in nearest()
131 if (fabs(startTime - time) < closest) in nearest()
132 closest = fabsf(startTime - time); in nearest()
133 else if (fabs(endTime - time) < closest) in nearest()
134 closest = fabsf(endTime - time); in nearest()
/external/iptables/extensions/
Dlibxt_time.man1 This matches if the packet arrival time/date is within a given range. All
8 Only match during the given time, which must be in ISO 8601 "T" notation.
9 The possible time range is 1970-01-01T00:00:00 to 2038-01-19T04:17:07.
17 Only match during the given daytime. The possible time range is 00:00:00 to
35 time regulations.
37 About kernel timezones: Linux keeps the system time in UTC, and always does so.
38 On boot, system time is initialized from a referential time source. Where this
39 time source has no timezone information, such as the x86 CMOS RTC, UTC will be
40 assumed. If the time source is however not in UTC, userspace should provide the
41 correct system time and timezone to the kernel once it has the information.
[all …]
/external/strace/
Dstrace-graph44 my ($pid, $call, $args, $result, $time);
51 $time = $1 * 3600 + $2 * 60 + $3;
53 $time = $time + $4 / 1000000;
57 $time = $1 + ($2 / 1000000);
83 handle_killed($pid, $time);
93 handle_trace($pid, $call, $args, $result, $time);
211 my ($pid, $call, $args, $result, $time) = @_;
214 if (defined $time and not defined $pr{$pid}{start}) {
215 $pr{$pid}{start} = $time;
241 $pr{$pid}{end} = $time if defined $time;
[all …]
/external/icu4c/i18n/unicode/
Dsimpletz.h312 int32_t time, UErrorCode& status);
358 int32_t time, TimeMode mode, UErrorCode& status);
371 void setStartRule(int32_t month, int32_t dayOfMonth, int32_t time,
386 void setStartRule(int32_t month, int32_t dayOfMonth, int32_t time,
406 int32_t time, UBool after, UErrorCode& status);
426 int32_t time, TimeMode mode, UBool after, UErrorCode& status);
451 int32_t time, UErrorCode& status);
478 int32_t time, TimeMode mode, UErrorCode& status);
491 void setEndRule(int32_t month, int32_t dayOfMonth, int32_t time, UErrorCode& status);
506 void setEndRule(int32_t month, int32_t dayOfMonth, int32_t time,
[all …]
/external/webkit/Source/JavaScriptCore/profiler/
DProfileNode.h84 void setTotalTime(double time) { m_actualTotalTime = time; m_visibleTotalTime = time; } in setTotalTime() argument
85 void setActualTotalTime(double time) { m_actualTotalTime = time; } in setActualTotalTime() argument
86 void setVisibleTotalTime(double time) { m_visibleTotalTime = time; } in setVisibleTotalTime() argument
89 void setSelfTime(double time) {m_actualSelfTime = time; m_visibleSelfTime = time; } in setSelfTime() argument
90 void setActualSelfTime(double time) { m_actualSelfTime = time; } in setActualSelfTime() argument
91 void setVisibleSelfTime(double time) { m_visibleSelfTime = time; } in setVisibleSelfTime() argument
/external/chromium/chrome/browser/history/
Dthumbnail_database_unittest.cc123 base::Time time = base::Time::Now(); in TEST_F() local
124 db.SetFavicon(id, favicon, time); in TEST_F()
132 EXPECT_EQ(time.ToTimeT(), time_out.ToTimeT()); in TEST_F()
150 base::Time time = base::Time::Now(); in TEST_F() local
151 db.SetFavicon(id, favicon, time); in TEST_F()
171 base::Time time = base::Time::Now(); in TEST_F() local
172 db.SetFavicon(id, favicon, time); in TEST_F()
203 base::Time time = base::Time::Now(); in TEST_F() local
204 db.SetFavicon(id, favicon, time); in TEST_F()
208 db.SetFavicon(id2, favicon, time); in TEST_F()
[all …]
/external/proguard/src/proguard/gui/splash/
DRectangleSprite.java94 public void paint(Graphics graphics, long time) in paint() argument
96 graphics.setColor(color.getColor(time)); in paint()
98 int xt = x.getInt(time); in paint()
99 int yt = y.getInt(time); in paint()
100 int w = width.getInt(time); in paint()
101 int h = height.getInt(time); in paint()
102 int aw = arcWidth.getInt(time); in paint()
103 int ah = arcHeight.getInt(time); in paint()

12345678910>>...90