Home
last modified time | relevance | path

Searched full:today (Results 1 – 25 of 766) sorted by relevance

12345678910>>...31

/external/openssh/
Dauth-shadow.c58 time_t today; in auth_shadow_acctexpired() local
62 today = time(NULL) / DAY; in auth_shadow_acctexpired()
63 daysleft = spw->sp_expire - today; in auth_shadow_acctexpired()
64 debug3("%s: today %d sp_expire %d days left %d", __func__, (int)today, in auth_shadow_acctexpired()
93 time_t today; in auth_shadow_pwexpired() local
101 today = time(NULL) / DAY; in auth_shadow_pwexpired()
102 debug3("%s: today %d sp_lstchg %d sp_max %d", __func__, (int)today, in auth_shadow_pwexpired()
121 daysleft = spw->sp_lstchg + spw->sp_max - today; in auth_shadow_pwexpired()
/external/mockito/src/test/java/org/mockitousage/bugs/
DShouldMocksCompareToBeConsistentWithEqualsTest.java24 Date today = mock(Date.class); in should_compare_to_be_consistent_with_equals() local
29 set.add(today); in should_compare_to_be_consistent_with_equals()
39 Date today = mock(Date.class); in should_compare_to_be_consistent_with_equals_when_comparing_the_same_reference() local
43 set.add(today); in should_compare_to_be_consistent_with_equals_when_comparing_the_same_reference()
44 set.add(today); in should_compare_to_be_consistent_with_equals_when_comparing_the_same_reference()
/external/python/cpython2/Doc/includes/sqlite3/
Dpysqlite_datetime.py8 today = datetime.date.today() variable
11 cur.execute("insert into test(d, ts) values (?, ?)", (today, now))
14 print today, "=>", row[0], type(row[0])
/external/google-breakpad/src/client/windows/sender/
Dcrash_report_sender.cc63 int today = GetCurrentDate(); in SendCrashReport() local
64 if (today == last_sent_date_ && in SendCrashReport()
76 ReportSent(today); in SendCrashReport()
102 void CrashReportSender::ReportSent(int today) { in ReportSent() argument
104 if (today != last_sent_date_) { in ReportSent()
105 last_sent_date_ = today; in ReportSent()
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/
Dput1.pass.cpp63 std::string pat("Today is %A which is abbreviated %a."); in main()
67 assert(ex == "Today is Saturday which is abbreviated Sat."); in main()
71 std::string pat("Today is %A which is abbreviated %a."); in main()
75 assert((ex == "Today is Samedi which is abbreviated Sam.")|| in main()
76 (ex == "Today is samedi which is abbreviated sam." )); in main()
/external/python/cpython2/Demo/scripts/
Dunbirthday.py4 # This is defined as the number of days from your birth until today
51 print 'Today is', format(todaytuple)
58 print 'You were born today. Have a nice life!'
72 print 'Congratulations! Today is your', nth(age), 'birthday'
75 print 'Today is your',
/external/guice/extensions/struts2/test/com/google/inject/struts2/
DStruts2FactoryTest.java40 private static final Date TODAY = new Date(); field in Struts2FactoryTest
77 return TODAY;
80 assertEquals(TODAY, testListener.getInjector().getInstance(Date.class));
81 assertEquals(TODAY, s2Factory.buildBean(Date.class, null));
/external/owasp/sanitizer/benchmark-data/
DYahoo!.html364 .y-today-grad1 {background-image: -moz-linear-gradient(top, #e8edf0, #fcfcfd); /*Firefox*/
369 .y-today-grad2 {background-image: -moz-linear-gradient(top, #59728b, #2d4458); /*Firefox*/
374 .y-today-grad3 {background-image: -moz-linear-gradient(top, #346694, #063160); /*Firefox*/
379 .y-today-ln-1 { border-color: #a8b4bf; }
381 .ua-ie8 .y-pa-open .y-today-grad1 {
385 .ua-ie8 .y-pa-open .y-today-grad2 {
389 .ua-ie8 .y-pa-open .y-today-grad3 {
616 …e "><span class="title y-txt-modhdr medium" style="font-family: inherit;">TODAY</span><span class=…
637 …1297449155/**http%3A//search.yahoo.com/search%3Fp=hosni%2Bmubarak%26fr=fp-today%26cs=bz" >More on …
647 <ol class="y-carousel-list y-today-ln-1">
[all …]
/external/libtextclassifier/tests/
Dtext-classification-model_test.cc248 "Call me at (800) 123-456 today", {11, 24}))); in TEST()
250 "Visit www.google.com every today!", {6, 20}))); in TEST()
256 "www.google.com every today!|Call me at (800) 123-456 today.", in TEST()
261 "www.google.com every today!|Call me at (800) 123-456 today.", in TEST()
266 "www.google.com every today!|Call me at (800) 123-456 today.", in TEST()
/external/toolchain-utils/
Dbuildbot_test_llvm.py89 date_str = datetime.date.today()
148 today = datetime.date.today()
149 delta = today - START_DATE
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatRegressionTestJ.java187 Date today = cal.getTime(); in Test4358730() local
190 logln(sdf.format(today)); in Test4358730()
192 logln(sdf.format(today)); in Test4358730()
195 logln(sdf.format(today)); in Test4358730()
198 logln(sdf.format(today)); in Test4358730()
201 logln(sdf.format(today)); in Test4358730()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatRegressionTestJ.java188 Date today = cal.getTime(); in Test4358730() local
191 logln(sdf.format(today)); in Test4358730()
193 logln(sdf.format(today)); in Test4358730()
196 logln(sdf.format(today)); in Test4358730()
199 logln(sdf.format(today)); in Test4358730()
202 logln(sdf.format(today)); in Test4358730()
/external/python/cpython2/Doc/library/
Dxmlrpclib.rst285 def today():
286 today = datetime.datetime.today()
287 return xmlrpclib.DateTime(today)
291 server.register_function(today, "today")
301 today = proxy.today()
303 converted = datetime.datetime.strptime(today.value, "%Y%m%dT%H:%M:%S")
304 print "Today: %s" % converted.strftime("%d.%m.%Y, %H:%M")
/external/skia/site/dev/testing/
Dfonts.md38 Today, the set of fonts used by gm, and present in my resources directory,
105 The font set used by gm tests today is arbitrary and not intended to be
111 removing manual typeface selection in the gm tests. Today, options to dm like
/external/clang/docs/analyzer/
Dconf.py45 copyright = u'2013-%d, Analyzer Team' % date.today().year
60 # There are two options for replacing |today|: either, you set today to some
62 #today = ''
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
DHouseTest.java46 reminders.put("today", "do nothig"); in testDump1()
78 reminders.put("today", "do nothig"); in testDump3()
124 reminders.put("today", "do nothig"); in testDump2()
/external/swiftshader/third_party/subzero/docs/
Dconf.py44 copyright = u'2014-%d, Subzero Project' % date.today().year
59 # There are two options for replacing |today|: either, you set today to some
61 #today = ''
/external/llvm/docs/
Dconf.py44 copyright = u'2003-%d, LLVM Project' % date.today().year
59 # There are two options for replacing |today|: either, you set today to some
61 #today = ''
/external/autotest/scheduler/
Ddrone_logging_config.py22 """Generate a log file name based off of Today's Date.
31 @returns String of the base_name suffixed with a timestamp of today's
/external/clang/docs/
Dconf.py45 copyright = u'2007-%d, The Clang Team' % date.today().year
60 # There are two options for replacing |today|: either, you set today to some
62 #today = ''
/external/python/cpython2/Doc/
Dconf.py28 # There are two options for replacing |today|: either, you set today to some
30 today = '' variable
/external/libxml2/result/HTML/
Dtest2.html3 <head> <title>Linux Today</title>
15 <img src="/pics/lt.gif" vspace="5" alt="Linux Today Logo"><br><font size="-1"><a href="http://linux…
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
Dput1.pass.cpp48 std::string pat("Today is %A which is abbreviated %a."); in main()
52 assert(ex == "Today is Saturday which is abbreviated Sat."); in main()
/external/libxml2/test/HTML/
Dtest2.html2 <HTML><HEAD> <TITLE>Linux Today</TITLE></HEAD>
12 …<TD><IMG SRC="/pics/lt.gif" VSPACE=5 alt="Linux Today Logo"><br><font size="-1"><a href="http://li…
/external/mesa3d/src/gallium/docs/source/
Dconf.py56 # There are two options for replacing |today|: either, you set today to some
58 #today = ''

12345678910>>...31