Home
last modified time | relevance | path

Searched full:date (Results 1 – 25 of 8196) sorted by relevance

12345678910>>...328

/external/icu/icu4c/source/test/testdata/
Dcalendar.txt31 "ERA=1,YEAR=1,MONTH=JUNE,DATE=4", // tw
32 "ERA=1,YEAR=1912,MONTH=,DATE=" // greg
36 "ERA=1,YEAR=3,MONTH=FEBRUARY,DATE=12", // tw
37 "ERA=1,YEAR=1914,MONTH=,DATE=" // greg
41 "ERA=1,YEAR=96,MONTH=FEBRUARY,DATE=12", // tw
42 "ERA=1,YEAR=2007,MONTH=,DATE=" // greg
48 "ERA=0,YEAR=2,MONTH=JANUARY,DATE=24", // tw
49 "ERA=1,YEAR=1910,MONTH=JANUARY,DATE=24", // greg
56 "EXTENDED_YEAR=4601,MONTH=6,DATE=28,IS_LEAP_MONTH=0", // ch
57 "YEAR=1964,MONTH=8,DATE=4", // greg
[all …]
Dformat.txt24 Headers { "locale", "zone", "spec", "date", "str"}
27 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
28 // date: either 'MILLIS=####' where #### is millis,
31 …// or RELATIVE_ADD:DATE=1 which means that the field "DATE" will be added by +1 relative t…
38 "DATE=SHORT,TIME=SHORT",
39 "ERA=1,YEAR=2007,MONTH=AUGUST,DATE=8,HOUR_OF_DAY=18,MINUTE=54,SECOND=0",
45 "DATE=LONG",
46 "ERA=1,YEAR=98,MONTH=0,DATE=24",
53 "DATE=LONG",
54 "ERA=0,YEAR=2,MONTH=0,DATE=24",
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/
DChangeLog3 Date: Mon May 19 09:41:32 2014 -0400
5 Update date. Annoucing 3.1 today.
9 Date: Mon May 19 09:37:21 2014 -0400
15 Date: Sun May 11 10:30:22 2014 -0400
21 Date: Sun May 11 10:22:30 2014 -0400
27 Date: Sun May 11 09:56:40 2014 -0400
33 Date: Sun May 11 09:55:28 2014 -0400
39 Date: Sun May 11 09:52:47 2014 -0400
46 Date: Wed Apr 23 19:24:47 2014 -0400
54 Date: Tue Apr 22 21:17:52 2014 -0700
[all …]
/external/python/cpython2/Demo/classes/
DDates.py1 # Class Date supplies date objects that support date arithmetic.
3 # Date(month,day,year) returns a Date object. An instance prints as,
7 # all work as expected for date objects: int+date or date+int returns
8 # the date `int' days from `date'; date+date raises an exception;
9 # date-int returns the date `int' days before `date'; date2-date1 returns
10 # an integer, the number of days from date1 to date2; int-date raises an
13 # the two dates and max(date1,date2) the later; and date objects can be
16 # Date objects support one visible method, date.weekday(). This returns
17 # the day of the week the date falls on, as a string.
19 # Date objects also have 4 read-only data attributes:
[all …]
/external/pdfium/fpdfsdk/javascript/
Dpublic_methods_embeddertest.cpp14 double RoundDownDate(double date) { in RoundDownDate() argument
15 return date - fmod(date, 86400000); in RoundDownDate()
27 double date; in TEST_F() local
31 date = CJS_PublicMethods::MakeRegularDate(L"06/25/1968", L"mm/dd/yyyy", in TEST_F()
33 date = RoundDownDate(date); in TEST_F()
34 EXPECT_DOUBLE_EQ(-47865600000, date); in TEST_F()
39 date = CJS_PublicMethods::MakeRegularDate(L"25061968", L"ddmmyyyy", in TEST_F()
41 date = RoundDownDate(date); in TEST_F()
42 EXPECT_DOUBLE_EQ(-47865600000, date); in TEST_F()
47 date = CJS_PublicMethods::MakeRegularDate(L"19680625", L"yyyymmdd", in TEST_F()
[all …]
/external/openssh/
DChangeLog3 Date: Mon Mar 20 13:38:27 2017 +1100
9 Date: Mon Mar 20 12:23:04 2017 +1100
15 Date: Mon Mar 20 01:18:59 2017 +0000
25 Date: Mon Mar 20 12:07:20 2017 +1100
33 Date: Mon Mar 20 11:53:34 2017 +1100
41 Date: Mon Mar 20 11:48:34 2017 +1100
50 Date: Mon Mar 20 09:58:34 2017 +1100
60 Date: Wed Mar 15 07:07:39 2017 +0000
71 Date: Thu Mar 16 14:05:46 2017 +1100
77 Date: Thu Mar 16 13:45:17 2017 +1100
[all …]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DDateTest.java20 import java.sql.Date;
27 * JUnit Testcase for the java.sql.Date class
55 // Date strings
71 // Date string array for London (GMT)
75 // Date string array for New York - sometimes a day earlier than London
79 // Date string for Tokyo
96 * Helper method to create a long milliseconds time from a supplied date and
99 static private long getTime(int year, int month, int date, int hour, in getTime() argument
101 aCal.set(year, month, date, hour, minute, second); in getTime()
106 * Test of the Date(int, int, int) constructor - now deprecated but still
[all …]
/external/apache-http/src/org/apache/http/impl/cookie/
DDateUtils.java4 * $Date: 2008-07-16 04:25:47 -0700 (Wed, 16 Jul 2008) $
38 import java.util.Date;
60 * Date format pattern used to parse HTTP date headers in RFC 1123 format.
65 * Date format pattern used to parse HTTP date headers in RFC 1036 format.
70 * Date format pattern used to parse HTTP date headers in ANSI C
81 private static final Date DEFAULT_TWO_DIGIT_YEAR_START;
94 * Parses a date value. The formats used for parsing the date value are retrieved from
97 * @param dateValue the date value to parse
99 * @return the parsed date
102 * supported date formats
[all …]
/external/junit-params/src/test/java/junitparams/
DParamsConverterTest.java11 import java.util.Date;
31 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date) { in convertSingleParam()
32 Calendar calendar = createCalendarWithDate(date); in convertSingleParam()
39 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date, in convertMultipleParams()
41 Calendar calendar = createCalendarWithDate(date); in convertMultipleParams()
49 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date) { in convertParamsFromMethod()
50 Calendar calendar = createCalendarWithDate(date); in convertParamsFromMethod()
56 …c void convertParamsUsingParamAnnotation(@Param(converter = SimpleDateConverter.class) Date date) { in convertParamsUsingParamAnnotation()
57 Calendar calendar = createCalendarWithDate(date); in convertParamsUsingParamAnnotation()
63 public void convertParamsUsingCustomParamAnnotation(@DateParam Date date) { in convertParamsUsingCustomParamAnnotation() argument
[all …]
/external/autotest/contrib/
Ddb_cleanup.py20 # Format Appears as: [Date] [Time] - [Msg Level] - [Message]
27 WHERE %(table)s.%(time_column)s <= "%(date)s"
33 WHERE %(related_table)s.%(time_column)s <= "%(date)s"
43 WHERE %(related_table)s.%(time_column)s <= "%(date)s"
131 date, foreign_key=None,
150 @param related_table: Table with the date information we are selecting by.
154 @param date: End date of the information we are trying to delete.
155 @param time_column: Column that we want to use to compare the date to.
157 delete with the table with the date information.
162 to the table with the date information.
[all …]
/external/libusb/.private/
Dbd.cmd9 mkdir E:\dailies\%DATE%
10 for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A
11 for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\static
12 for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\dll
13 for %%A in (source bin32 bin64) do mkdir E:\dailies\%DATE%\examples\%%A
14 copy examples\listdevs.c E:\dailies\%DATE%\examples\source
15 copy examples\xusb.c E:\dailies\%DATE%\examples\source
16 copy examples\ezusb.? E:\dailies\%DATE%\examples\source
17 copy examples\fxload.c E:\dailies\%DATE%\examples\source
18 copy msvc\stdint.h E:\dailies\%DATE%\examples\source
[all …]
/external/testng/src/main/java/org/testng/
DTimeBombSkipException.java9 import java.util.Date;
16 * You can customize this by using the specialized constructors. Suppported date
31 * The format used for date comparison is <tt>yyyy/MM/dd</tt>
35 public TimeBombSkipException(String msg, Date expirationDate) { in TimeBombSkipException()
47 public TimeBombSkipException(String msg, Date expirationDate, String format) { in TimeBombSkipException()
55 * Creates a {@code TimeBombedSkipException} using the <tt>date</tt>
58 * @param date time limit after which the SKIP becomes a FAILURE
60 public TimeBombSkipException(String msg, String date) { in TimeBombSkipException() argument
62 initExpireDate(date); in TimeBombSkipException()
66 * Creates a {@code TimeBombedSkipException} using the <tt>date</tt>
[all …]
/external/v8/src/builtins/
Dbuiltins-date.cc18 // ES6 section 20.3 Date Objects
44 // ES6 section 20.3.1.13 MakeDay (year, month, date)
45 double MakeDay(double year, double month, double date) { in MakeDay() argument
47 (kMinMonth <= month && month <= kMaxMonth) && std::isfinite(date)) { in MakeDay()
83 return static_cast<double>(day_from_year - 1) + date; in MakeDay()
114 // ES6 section 20.3.1.16 Date Time String Format
134 double date = MakeDate(day, time); in ParseDateTimeString() local
136 if (!std::isnan(date)) { in ParseDateTimeString()
137 date = isolate->date_cache()->ToUTC(static_cast<int64_t>(date)); in ParseDateTimeString()
140 date -= tmp->get(7)->Number() * 1000.0; in ParseDateTimeString()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DSimpleDateRule.java13 import java.util.Date;
26 * Construct a rule for a fixed date within a month
29 * @param dayOfMonth The date in that month (1-based).
52 * @param dayOfMonth A date within that month (1-based).
68 * that is on or after the given start date.
70 * @param start Only occurrances on or after this date are returned.
72 * @return The date on which this event occurs, or null if it
73 * does not occur on or after the start date.
78 public Date firstAfter(Date start) in firstAfter()
85 * that is on or after the given start date and before the given
[all …]
DDateRule.java13 import java.util.Date;
19 * DateRule is an interface for calculating the date of an event.
32 * that is on or after the given start date.
34 * @param start Only occurrances on or after this date are returned.
36 * @return The date on which this event occurs, or null if it
37 * does not occur on or after the start date.
42 abstract public Date firstAfter(Date start); in firstAfter()
46 * that is on or after the given start date and before the given
47 * end date.
49 * @param start Only occurrances on or after this date are returned.
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DSimpleDateRule.java12 import java.util.Date;
25 * Construct a rule for a fixed date within a month
28 * @param dayOfMonth The date in that month (1-based).
52 * @param dayOfMonth A date within that month (1-based).
69 * that is on or after the given start date.
71 * @param start Only occurrances on or after this date are returned.
73 * @return The date on which this event occurs, or null if it
74 * does not occur on or after the start date.
80 public Date firstAfter(Date start) in firstAfter()
87 * that is on or after the given start date and before the given
[all …]
DDateRule.java12 import java.util.Date;
18 * DateRule is an interface for calculating the date of an event.
31 * that is on or after the given start date.
33 * @param start Only occurrances on or after this date are returned.
35 * @return The date on which this event occurs, or null if it
36 * does not occur on or after the start date.
42 abstract public Date firstAfter(Date start); in firstAfter()
46 * that is on or after the given start date and before the given
47 * end date.
49 * @param start Only occurrances on or after this date are returned.
[all …]
/external/chromium-libpac/src/
Dproxy_resolver_script.h123 " var date = new Date();\n" \
130 " wday = date.getUTCDay();\n" \
132 " wday = date.getDay();\n" \
147 " var date = new Date();\n" \
161 " return ((isGMT ? date.getUTCMonth() : date.getMonth()) ==\n" \
164 " return ((isGMT ? date.getUTCDate() : date.getDate()) == tmp);\n" \
166 " return ((isGMT ? date.getUTCFullYear() : date.getFullYear()) ==\n" \
170 " var year = date.getFullYear();\n" \
172 " date1 = new Date(year, 0, 1, 0, 0, 0);\n" \
173 " date2 = new Date(year, 11, 31, 23, 59, 59);\n" \
[all …]
/external/mockito/src/test/java/org/mockitousage/bugs/
DShouldMocksCompareToBeConsistentWithEqualsTest.java11 import java.util.Date;
24 Date today = mock(Date.class); in should_compare_to_be_consistent_with_equals()
25 Date tomorrow = mock(Date.class); in should_compare_to_be_consistent_with_equals()
28 Set<Date> set = new TreeSet<Date>(); 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()
42 Set<Date> set = new TreeSet<Date>(); in should_compare_to_be_consistent_with_equals_when_comparing_the_same_reference()
53 Date mock = mock(Date.class); in should_allow_stubbing_and_verifying_compare_to()
54 when(mock.compareTo(any(Date.class))).thenReturn(10); in should_allow_stubbing_and_verifying_compare_to()
57 mock.compareTo(new Date()); in should_allow_stubbing_and_verifying_compare_to()
60 assertEquals(10, mock.compareTo(new Date())); in should_allow_stubbing_and_verifying_compare_to()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormat.java18 import java.util.Date;
38 …* DateFormat is an abstract class for date/time formatting subclasses which formats and parses dat…
39 …* language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows…
40 …* (i.e., date -&gt; text), parsing (text -&gt; date), and normalization. The date is represented a…
46 …* methods for obtaining default date/time formatters based on the default for a given locale and a…
59 * To format a date for the current Locale, use one of the static factory methods:
76 * To format a date for a different Locale, specify it in the call to getDateInstance().
88 …* There are many static factory methods available. Use getDateInstance to get the normal date form…
89 …nce to get the time format for that country. Use getDateTimeInstance to get a date and time format.
112 …* best match, which is defined in date time patterns, will be returned without honor the field pat…
[all …]
DCurrencyMetaInfo.java13 import java.util.Date;
24 * inclusive. The date information used by CurrencyInfo and CurrencyFilter
95 … * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
101 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
136 * Returns a filter that accepts all currencies in use as of the current date.
138 * @see #withDate(Date)
142 return ALL.withDate(new Date()); in now()
168 * Returns a filter that accepts all currencies in use on the given date.
169 * @param date the date
171 * @see #withDate(Date)
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormat.java19 import java.util.Date;
39 …* DateFormat is an abstract class for date/time formatting subclasses which formats and parses dat…
40 …* language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows…
41 …* (i.e., date -&gt; text), parsing (text -&gt; date), and normalization. The date is represented a…
47 …* methods for obtaining default date/time formatters based on the default for a given locale and a…
60 * To format a date for the current Locale, use one of the static factory methods:
77 * To format a date for a different Locale, specify it in the call to getDateInstance().
89 …* There are many static factory methods available. Use getDateInstance to get the normal date form…
90 …nce to get the time format for that country. Use getDateTimeInstance to get a date and time format.
113 …* best match, which is defined in date time patterns, will be returned without honor the field pat…
[all …]
DCurrencyMetaInfo.java14 import java.util.Date;
25 * inclusive. The date information used by CurrencyInfo and CurrencyFilter
91 … * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
96 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
129 * Returns a filter that accepts all currencies in use as of the current date.
131 * @see #withDate(Date)
134 return ALL.withDate(new Date()); in now()
158 * Returns a filter that accepts all currencies in use on the given date.
159 * @param date the date
161 * @see #withDate(Date)
[all …]
/external/libusb-compat/
DChangeLog3 Date: Thu Jul 9 22:15:32 2009 +0100
9 Date: Thu Jul 9 22:13:45 2009 +0100
20 Date: Fri Jun 19 22:11:02 2009 +0100
43 Date: Thu Jun 11 23:50:59 2009 +0100
49 Date: Fri May 29 12:28:05 2009 -0400
55 Date: Thu May 28 09:28:50 2009 -0400
61 Date: Wed May 27 15:39:54 2009 -0400
71 Date: Sat Dec 13 20:30:54 2008 +0000
77 Date: Sat Dec 13 20:25:27 2008 +0000
94 Date: Fri Nov 21 16:52:42 2008 +0000
[all …]
/external/toybox/tests/
Ddate.test7 # Test Unix date parsing.
8 testing "-d @0" "TZ=UTC date -d @0 2>&1" "Thu Jan 1 00:00:00 GMT 1970\n" "" ""
9 testing "-d @0x123" "TZ=UTC date -d @0x123 2>&1" "date: bad date '@0x123'\n" "" ""
11 # Test basic date parsing.
13 testing "-d 06021234" "TZ=UTC date -d 06021234 2>&1" "Sun Jun 2 12:34:00 UTC 1900\n" "" ""
14 testing "-d 060212341982" "TZ=UTC date -d 060212341982 2>&1" "Sun Jun 2 12:34:00 UTC 1982\n" "" ""
15 testing "-d 123" "TZ=UTC date -d 123 2>&1" "date: bad date '123'\n" "" ""
18 testing "-d 1110143115.30" "TZ=UTC date -d 1110143115.30 2>&1" "Sun Nov 10 14:31:30 UTC 1915\n" "" …
19 testing "-d 111014312015.30" "TZ=UTC date -d 111014312015.30 2>&1" "Sun Nov 10 14:31:30 UTC 2015\n"…
22 testing "Unix time missing @" "TZ=UTC date 1438053157 2>/dev/null || echo no" \
[all …]

12345678910>>...328