Home
last modified time | relevance | path

Searched defs:date (Results 1 – 25 of 3737) sorted by relevance

12345678910>>...150

/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/time/
H A DDateUtils.java382 public static Date addYears(final Date date, final int amount) { in addYears()
395 public static Date addMonths(final Date date, final int amount) { in addMonths()
408 public static Date addWeeks(final Date date, final int amount) { in addWeeks()
421 public static Date addDays(final Date date, final int amount) { in addDays()
434 public static Date addHours(final Date date, final int amount) { in addHours()
447 public static Date addMinutes(final Date date, final int amount) { in addMinutes()
460 public static Date addSeconds(final Date date, final int amount) { in addSeconds()
473 public static Date addMilliseconds(final Date date, final int amount) { in addMilliseconds()
487 private static Date add(final Date date, final int calendarField, final int amount) { in add()
505 public static Date setYears(final Date date, final int amount) { in setYears()
[all …]
/aosp_15_r20/external/pigweed/seed/
H A Dseed_metadata.json5 "date": "2022-10-31", string
15 "date": "2022-11-30", string
25 "date": "2023-02-06", string
35 "date": "2023-02-10", string
45 "date": "2023-08-16", string
55 "date": "2023-06-12", string
65 "date": "2023-07-10", string
75 "date": "2023-07-13", string
85 "date": "2023-07-19", string
95 "date": "2023-06-24", string
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/time/tck/java/time/temporal/
H A DTCKTemporalAdjusters.java114 LocalDate date = date(2007, month, i); in test_firstDayOfMonth_nonLeap() local
127 LocalDate date = date(2008, month, i); in test_firstDayOfMonth_leap() local
148 LocalDate date = date(2007, month, i); in test_lastDayOfMonth_nonLeap() local
161 LocalDate date = date(2008, month, i); in test_lastDayOfMonth_leap() local
182 LocalDate date = date(2007, month, i); in test_firstDayOfNextMonth_nonLeap() local
195 LocalDate date = date(2008, month, i); in test_firstDayOfNextMonth_leap() local
216 LocalDate date = date(2007, month, i); in test_firstDayOfYear_nonLeap() local
229 LocalDate date = date(2008, month, i); in test_firstDayOfYear_leap() local
250 LocalDate date = date(2007, month, i); in test_lastDayOfYear_nonLeap() local
263 LocalDate date = date(2008, month, i); in test_lastDayOfYear_leap() local
[all …]
H A DTCKJulianFields.java128 public void test_samples_get(TemporalField field, LocalDate date, long expected) { in test_samples_get()
133 public void test_samples_set(TemporalField field, LocalDate date, long value) { in test_samples_set()
134 assertEquals(field.adjustInto(LocalDate.MAX, value), date); in test_samples_set() local
135 assertEquals(field.adjustInto(LocalDate.MIN, value), date); in test_samples_set() local
136 assertEquals(field.adjustInto(JAN01_1970, value), date); in test_samples_set() local
137 assertEquals(field.adjustInto(DEC31_1969, value), date); in test_samples_set() local
138 assertEquals(field.adjustInto(NOV12_1945, value), date); in test_samples_set() local
143 public void test_samples_parse_STRICT(TemporalField field, LocalDate date, long value) { in test_samples_parse_STRICT()
151 public void test_samples_parse_SMART(TemporalField field, LocalDate date, long value) { in test_samples_parse_SMART()
159 public void test_samples_parse_LENIENT(TemporalField field, LocalDate date, long value) { in test_samples_parse_LENIENT()
H A DTCKIsoFields.java127 public void test_DOQ(LocalDate date, int doq, int qoy) { in test_DOQ()
141 public void test_QOY(LocalDate date, int doq, int qoy) { in test_QOY()
155 public void test_parse_quarters(LocalDate date, int doq, int qoy) { in test_parse_quarters()
166 public void test_parse_quarters_SMART(LocalDate date, int doq, int qoy) { in test_parse_quarters_SMART()
177 public void test_parse_quarters_LENIENT(LocalDate date, int doq, int qoy) { in test_parse_quarters_LENIENT()
324 public void test_WOWBY(LocalDate date, DayOfWeek dow, int week, int wby) { in test_WOWBY()
339 public void test_WBY(LocalDate date, DayOfWeek dow, int week, int wby) { in test_WBY()
354 public void test_parse_weeks_STRICT(LocalDate date, DayOfWeek dow, int week, int wby) { in test_parse_weeks_STRICT()
365 public void test_parse_weeks_SMART(LocalDate date, DayOfWeek dow, int week, int wby) { in test_parse_weeks_SMART()
376 public void test_parse_weeks_LENIENT(LocalDate date, DayOfWeek dow, int week, int wby) { in test_parse_weeks_LENIENT()
[all …]
H A DTCKWeekFields.java127 LocalDate date = LocalDate.of(2000, 1, 10); // Known to be ISO Monday in test_dayOfWeekField_simpleGet() local
141 LocalDate date = LocalDate.of(2000, 1, 10); // Known to be ISO Monday in test_dayOfWeekField_simpleSet() local
382 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWom() local
403 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWom_lenient() local
436 LocalDate date = LocalDate.parse(str, f); in test_parse_resolve_localizedWom_strict() local
449 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWomDow() local
471 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWomDow_lenient() local
497 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWoy() local
517 LocalDate date = LocalDate.of(2012, 12, 15); in test_parse_resolve_localizedWoy_lenient() local
548 LocalDate date = LocalDate.parse(str, f); in test_parse_resolve_localizedWoy_strict() local
[all …]
/aosp_15_r20/external/threetenbp/src/test/java/org/threeten/bp/temporal/
H A DTestTemporalAdjusters.java68 LocalDate date = date(2007, month, i); in test_firstDayOfMonth_nonLeap() local
81 LocalDate date = date(2008, month, i); in test_firstDayOfMonth_leap() local
102 LocalDate date = date(2007, month, i); in test_lastDayOfMonth_nonLeap() local
115 LocalDate date = date(2008, month, i); in test_lastDayOfMonth_leap() local
136 LocalDate date = date(2007, month, i); in test_firstDayOfNextMonth_nonLeap() local
149 LocalDate date = date(2008, month, i); in test_firstDayOfNextMonth_leap() local
170 LocalDate date = date(2007, month, i); in test_firstDayOfYear_nonLeap() local
183 LocalDate date = date(2008, month, i); in test_firstDayOfYear_leap() local
204 LocalDate date = date(2007, month, i); in test_lastDayOfYear_nonLeap() local
217 LocalDate date = date(2008, month, i); in test_lastDayOfYear_leap() local
[all …]
H A DTestJulianFields.java83 public void test_samples_get(TemporalField field, LocalDate date, long expected) { in test_samples_get()
88 public void test_samples_set(TemporalField field, LocalDate date, long value) { in test_samples_set()
89 assertEquals(field.adjustInto(LocalDate.MAX, value), date); in test_samples_set() local
90 assertEquals(field.adjustInto(LocalDate.MIN, value), date); in test_samples_set() local
91 assertEquals(field.adjustInto(JAN01_1970, value), date); in test_samples_set() local
92 assertEquals(field.adjustInto(DEC31_1969, value), date); in test_samples_set() local
93 assertEquals(field.adjustInto(NOV12_1945, value), date); in test_samples_set() local
/aosp_15_r20/external/rust/android-crates-io/crates/config/tests/legacy/
Ddatetime.rs71 let date: String = s.get("json_datetime").unwrap(); in test_datetime_string() localVariable
76 let date: String = s.get("toml_datetime").unwrap(); in test_datetime_string() localVariable
81 let date: String = s.get("yaml_datetime").unwrap(); in test_datetime_string() localVariable
86 let date: String = s.get("hjson_datetime").unwrap(); in test_datetime_string() localVariable
91 let date: String = s.get("ini_datetime").unwrap(); in test_datetime_string() localVariable
96 let date: String = s.get("ron_datetime").unwrap(); in test_datetime_string() localVariable
106 let date: DateTime<Utc> = s.get("json_datetime").unwrap(); in test_datetime() localVariable
111 let date: DateTime<Utc> = s.get("toml_datetime").unwrap(); in test_datetime() localVariable
116 let date: DateTime<Utc> = s.get("yaml_datetime").unwrap(); in test_datetime() localVariable
121 let date: DateTime<Utc> = s.get("hjson_datetime").unwrap(); in test_datetime() localVariable
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/time/tck/java/time/chrono/
H A DTCKHijrahChronology.java174 ChronoLocalDate date = HijrahChronology.INSTANCE.date(era, 1, 1, 1); in test_InvalidEras() local
219 HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra_eraOnly_valid() local
230 HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra_eraAndYearOfEraOnly_valid() local
243 HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra_eraAndYearOnly_valid() local
264 HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra_yearOfEraOnly_valid() local
276 HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra_yearOfEraAndYearOnly_valid() local
377 … HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymd_lenient() local
382 … HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymd_lenient() local
397 … HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
401 … HijrahDate date = HijrahChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
[all …]
H A DTCKIsoChronology.java366 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra() local
447 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymd_lenient() local
459 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
463 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
482 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STRICT); in test_resolve_ymd_strict() local
530 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_yd_lenient() local
541 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_yd_smart() local
560 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STRICT); in test_resolve_yd_strict() local
639 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymaa_lenient() local
652 LocalDate date = IsoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymaa_smart() local
[all …]
H A DTCKThaiBuddhistChronology.java337 ChronoLocalDate date = ThaiBuddhistChronology.INSTANCE.date(era, 1, 1, 1); in test_InvalidEras() local
609 ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra() local
690 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LEN… in test_resolve_ymd_lenient() local
702 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMA… in test_resolve_ymd_smart() local
706 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMA… in test_resolve_ymd_smart() local
725 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STR… in test_resolve_ymd_strict() local
773 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LEN… in test_resolve_yd_lenient() local
784 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMA… in test_resolve_yd_smart() local
803 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STR… in test_resolve_yd_strict() local
882 …ThaiBuddhistDate date = ThaiBuddhistChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LEN… in test_resolve_ymaa_lenient() local
[all …]
H A DTCKMinguoChronology.java330 ChronoLocalDate date = MinguoChronology.INSTANCE.date(era, 1, 1, 1); in test_InvalidEras() local
633 MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, style); in test_resolve_yearOfEra() local
714 MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymd_lenient() local
726 … MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
730 … MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_ymd_smart() local
749 … MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STRICT); in test_resolve_ymd_strict() local
797 MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_yd_lenient() local
808 … MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.SMART); in test_resolve_yd_smart() local
827 … MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.STRICT); in test_resolve_yd_strict() local
906 MinguoDate date = MinguoChronology.INSTANCE.resolveDate(fieldValues, ResolverStyle.LENIENT); in test_resolve_ymaa_lenient() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/test/sdk-benchmarks/src/main/resources/software/amazon/awssdk/benchmark/
H A Dbaseline.json10 "date": "2020-03-18T20:11:42.308-07:00[America/Los_Angeles]" string
30 "date": "2020-03-18T20:11:42.314-07:00[America/Los_Angeles]" string
50 "date": "2020-03-18T20:11:42.314-07:00[America/Los_Angeles]" string
70 "date": "2020-03-18T20:11:42.314-07:00[America/Los_Angeles]" string
90 "date": "2020-03-18T20:11:42.315-07:00[America/Los_Angeles]" string
110 "date": "2020-03-18T20:11:42.315-07:00[America/Los_Angeles]" string
130 "date": "2020-03-18T20:11:42.315-07:00[America/Los_Angeles]" string
150 "date": "2020-03-18T20:11:42.315-07:00[America/Los_Angeles]" string
170 "date": "2020-03-18T20:11:42.315-07:00[America/Los_Angeles]" string
190 "date": "2020-03-18T20:11:42.316-07:00[America/Los_Angeles]" string
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/config/tests/
Ddatetime.rs57 let date: String = s.get("json_datetime").unwrap(); in test_datetime_string() localVariable
62 let date: String = s.get("toml_datetime").unwrap(); in test_datetime_string() localVariable
67 let date: String = s.get("yaml_datetime").unwrap(); in test_datetime_string() localVariable
72 let date: String = s.get("ini_datetime").unwrap(); in test_datetime_string() localVariable
77 let date: String = s.get("ron_datetime").unwrap(); in test_datetime_string() localVariable
87 let date: DateTime<Utc> = s.get("json_datetime").unwrap(); in test_datetime() localVariable
92 let date: DateTime<Utc> = s.get("toml_datetime").unwrap(); in test_datetime() localVariable
97 let date: DateTime<Utc> = s.get("yaml_datetime").unwrap(); in test_datetime() localVariable
102 let date: DateTime<Utc> = s.get("ini_datetime").unwrap(); in test_datetime() localVariable
107 let date: DateTime<Utc> = s.get("ron_datetime").unwrap(); in test_datetime() localVariable
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/sun/util/calendar/
H A DAbstractCalendar.java45 public void setEra(sun.util.calendar.CalendarDate date, java.lang.String eraName) { in setEra()
66 long millis, sun.util.calendar.CalendarDate date) { in getCalendarDate()
70 public long getTime(sun.util.calendar.CalendarDate date) { in getTime()
74 protected long getTimeOfDay(sun.util.calendar.CalendarDate date) { in getTimeOfDay()
79 public long getTimeOfDayValue(sun.util.calendar.CalendarDate date) { in getTimeOfDayValue()
92 protected abstract boolean isLeapYear(sun.util.calendar.CalendarDate date); in isLeapYear()
95 int nth, int dayOfWeek, sun.util.calendar.CalendarDate date) { in getNthDayOfWeek()
112 protected abstract long getFixedDate(sun.util.calendar.CalendarDate date); in getFixedDate()
115 sun.util.calendar.CalendarDate date, long fixedDate); in getCalendarDateFromFixedDate()
117 public boolean validateTime(sun.util.calendar.CalendarDate date) { in validateTime()
[all …]
H A DCalendarSystem.java58 long millis, sun.util.calendar.CalendarDate date); in getCalendarDate()
69 public abstract long getTime(sun.util.calendar.CalendarDate date); in getTime()
71 public abstract int getYearLength(sun.util.calendar.CalendarDate date); in getYearLength()
73 public abstract int getYearLengthInMonths(sun.util.calendar.CalendarDate date); in getYearLengthInMonths()
75 public abstract int getMonthLength(sun.util.calendar.CalendarDate date); in getMonthLength()
83 public abstract void setEra(sun.util.calendar.CalendarDate date, java.lang.String eraName); in setEra()
86 int nth, int dayOfWeek, sun.util.calendar.CalendarDate date); in getNthDayOfWeek()
89 sun.util.calendar.CalendarDate date, int timeOfDay); in setTimeOfDay()
92 public abstract boolean validate(sun.util.calendar.CalendarDate date); in validate()
94 public abstract boolean normalize(sun.util.calendar.CalendarDate date); in normalize()
H A DBaseCalendar.java35 public boolean validate(sun.util.calendar.CalendarDate date) { in validate()
39 public boolean normalize(sun.util.calendar.CalendarDate date) { in normalize()
43 void normalizeMonth(sun.util.calendar.CalendarDate date) { in normalizeMonth()
47 public int getYearLength(sun.util.calendar.CalendarDate date) { in getYearLength()
51 public int getYearLengthInMonths(sun.util.calendar.CalendarDate date) { in getYearLengthInMonths()
55 public int getMonthLength(sun.util.calendar.CalendarDate date) { in getMonthLength()
63 public long getDayOfYear(sun.util.calendar.CalendarDate date) { in getDayOfYear()
71 public long getFixedDate(sun.util.calendar.CalendarDate date) { in getFixedDate()
80 public void getCalendarDateFromFixedDate(sun.util.calendar.CalendarDate date, long fixedDate) { in getCalendarDateFromFixedDate()
84 public int getDayOfWeek(sun.util.calendar.CalendarDate date) { in getDayOfWeek()
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/sun/util/calendar/
H A DAbstractCalendar.java85 public void setEra(CalendarDate date, String eraName) { in setEra()
112 CalendarDate date = newCalendarDate(zone); in getCalendarDate() local
116 public CalendarDate getCalendarDate(long millis, CalendarDate date) { in getCalendarDate()
179 public long getTime(CalendarDate date) { in getTime()
222 protected long getTimeOfDay(CalendarDate date) { in getTimeOfDay()
232 public long getTimeOfDayValue(CalendarDate date) { in getTimeOfDayValue()
277 protected abstract boolean isLeapYear(CalendarDate date); in isLeapYear()
279 public CalendarDate getNthDayOfWeek(int nth, int dayOfWeek, CalendarDate date) { in getNthDayOfWeek()
344 protected abstract long getFixedDate(CalendarDate date); in getFixedDate()
356 protected abstract void getCalendarDateFromFixedDate(CalendarDate date, in getCalendarDateFromFixedDate()
[all …]
H A DCalendarSystem.java264 public abstract CalendarDate getCalendarDate(long millis, CalendarDate date); in getCalendarDate()
290 public abstract long getTime(CalendarDate date); in getTime()
299 public abstract int getYearLength(CalendarDate date); in getYearLength()
307 public abstract int getYearLengthInMonths(CalendarDate date); in getYearLengthInMonths()
320 public abstract int getMonthLength(CalendarDate date); // no setter in getMonthLength()
359 public abstract void setEra(CalendarDate date, String eraName); in setEra()
387 CalendarDate date); in getNthDayOfWeek()
389 public abstract CalendarDate setTimeOfDay(CalendarDate date, int timeOfDay); in setTimeOfDay()
402 public abstract boolean validate(CalendarDate date); in validate()
416 public abstract boolean normalize(CalendarDate date); in normalize()
H A DBaseCalendar.java191 public boolean validate(CalendarDate date) { in validate()
217 public boolean normalize(CalendarDate date) { in normalize()
272 void normalizeMonth(CalendarDate date) { in normalizeMonth()
306 public int getYearLength(CalendarDate date) { in getYearLength()
310 public int getYearLengthInMonths(CalendarDate date) { in getYearLengthInMonths()
325 public int getMonthLength(CalendarDate date) { in getMonthLength()
343 public long getDayOfYear(CalendarDate date) { in getDayOfYear()
356 public long getFixedDate(CalendarDate date) { in getFixedDate()
422 public void getCalendarDateFromFixedDate(CalendarDate date, in getCalendarDateFromFixedDate()
475 public int getDayOfWeek(CalendarDate date) { in getDayOfWeek()
[all …]
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/jdk/
H A DDateSerializationTest.java38 public Date date; field in DateSerializationTest.DateAsNumberBean
44 public Date date; field in DateSerializationTest.DateAsStringBean
50 public Date date; field in DateSerializationTest.DateAsDefaultStringBean
56 public Date date; field in DateSerializationTest.DateInCETBean
70 public Date date; field in DateSerializationTest.DateAsDefaultBean
76 public Date date; field in DateSerializationTest.DateAsDefaultBeanWithEmptyJsonFormat
82 public Date date; field in DateSerializationTest.DateAsDefaultBeanWithPattern
88 public Date date; field in DateSerializationTest.DateAsDefaultBeanWithLocale
94 public Date date; field in DateSerializationTest.DateAsDefaultBeanWithTimezone
380 private void serialize(ObjectMapper mapper, Object date, String expected) throws IOException { in serialize()
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/text/
H A DOldDateFormatTest.java48 public StringBuffer format(Date date, StringBuffer toAppendTo, in format()
230 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
263 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
291 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
305 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
319 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
338 Date date = format.parse(format.format(current).toString()); in test_parseLString() local
364 Date date = format.parse(formattedCurrent); in test_parseLString() local
/aosp_15_r20/external/mockito-kotlin/tests/src/test/kotlin/test/
H A DSpyTest.kt67 val date = spy(Date()) in doReturnWithSpy() constant
74 val date = spy(Date(0)) in doNothingWithSpy() constant
82 val date = spy(Date(0)) in doThrowWithSpy() constant
89 val date = spy(Date(0)) in doCallRealMethodWithSpy() constant
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/gregorian/
Dgreg_date.hpp38 class BOOST_SYMBOL_VISIBLE date : public date_time::date<date, gregorian_calendar, date_duration> class
51 BOOST_CXX14_CONSTEXPR date(): in date() function in boost::gregorian::date
56 BOOST_CXX14_CONSTEXPR date(year_type y, month_type m, day_type d) in date() function in boost::gregorian::date
64 BOOST_CXX14_CONSTEXPR explicit date(const ymd_type& ymd) in date() function in boost::gregorian::date
68 BOOST_CXX14_CONSTEXPR explicit date(const date_int_type& rhs): in date() function in boost::gregorian::date
72 BOOST_CXX14_CONSTEXPR explicit date(date_rep_type rhs): in date() function in boost::gregorian::date
76 BOOST_CXX14_CONSTEXPR explicit date(special_values sv): in date() function in boost::gregorian::date

12345678910>>...150