HomeSort by relevance Sort by last modified time
    Searched defs:year (Results 251 - 275 of 565) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/common/
dpp.c 3708 unsigned int year, month, day, hour, min, sec; local
    [all...]
  /frameworks/av/media/extractors/mp4/
MPEG4Extractor.cpp 3239 uint16_t year = U16_AT(&buffer[4]); local
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 621 /* If 'year' is between 96 and 99, the actual year is 1900 + 'year';
622 if 'year' is between 00 and 95, the actual year is 2000 + 'year'.
625 unsigned char year; /* 0x00-0x99 */ member in struct:__anon52847
  /libcore/ojluni/src/main/java/java/time/format/
DateTimeFormatterBuilder.java 79 import static java.time.temporal.ChronoField.YEAR;
345 * For example, consider a formatter that parses the year, followed by
348 * year-month or just a year had been parsed. This method can be used to
419 * For example, consider {@code builder.appendValue(YEAR).appendValue(MONTH_OF_YEAR, 2);}
420 * The year is a variable width parse of between 1 and 19 digits.
423 * the year parser will reserve two digits for the month to parse.
424 * Thus, the text '201106' will correctly parse to a year of 2011 and a month of 6.
425 * Without adjacent value parsing, the year would greedily parse all six digits and leave
511 * Since fields such as year vary by chronology, it is recommended to use th
3282 int year = (int) yearParsed % 10_000; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /external/ImageMagick/coders/
png.c 7855 year; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 38 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
72 * as well as their meaning. For example, the first month of the year has value
75 * <code>YEAR</code>. See individual field documentation and subclass
96 * first week of the month or year as a reference point. The first week of a
97 * month or year is defined as the earliest seven day period beginning on
99 * <code>getMinimalDaysInFirstWeek()</code> days of that month or year. Weeks
103 * designate the week before week 1 of a year as week <em>n</em> of the previous
104 * year.
108 * <code>Date</code> (such as only year and month but no day in the month),
116 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc
2106 int year = get(EXTENDED_YEAR); local
4949 int year, month, dayOfMonth, dayOfYear; local
5828 int year; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatTest.java 81 {DateFormat.YEAR, "y","en","y"},
435 DateFormat.Field.YEAR,
514 DateFormat.Field.YEAR, // y
543 DateFormat.Field.YEAR, // U
1749 int year,month,day; local
4178 public int year; field in class:DateFormatTest.ChineseCalTestDate
4276 int year = rootChineseCalendar.get(Calendar.YEAR); local
4295 public int year; field in class:DateFormatTest.CalAndFmtTestItem
4393 int year = cal.get(Calendar.YEAR); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 37 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
71 * as well as their meaning. For example, the first month of the year has value
74 * <code>YEAR</code>. See individual field documentation and subclass
95 * first week of the month or year as a reference point. The first week of a
96 * month or year is defined as the earliest seven day period beginning on
98 * <code>getMinimalDaysInFirstWeek()</code> days of that month or year. Weeks
102 * designate the week before week 1 of a year as week <em>n</em> of the previous
103 * year.
107 * <code>Date</code> (such as only year and month but no day in the month),
115 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc
2190 int year = get(EXTENDED_YEAR); local
5111 int year, month, dayOfMonth, dayOfYear; local
6009 int year; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatTest.java 78 {DateFormat.YEAR, "y","en","y"},
432 DateFormat.Field.YEAR,
511 DateFormat.Field.YEAR, // y
540 DateFormat.Field.YEAR, // U
1746 int year,month,day; local
4175 public int year; field in class:DateFormatTest.ChineseCalTestDate
4273 int year = rootChineseCalendar.get(Calendar.YEAR); local
4292 public int year; field in class:DateFormatTest.CalAndFmtTestItem
4390 int year = cal.get(Calendar.YEAR); local
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 190 * and the number of days before that month in the same year. These
203 /* year -> 1 if leap year, else 0. */
205 is_leap(int year)
207 /* Cast year to unsigned. The result is the same either way, but
212 const unsigned int ayear = (unsigned int)year;
216 /* year, month -> number of days in that month in that year */
218 days_in_month(int year, int month)
222 if (month == 2 && is_leap(year))
2502 int year; local
2598 int year; local
2625 int year = GET_YEAR(date); local
2775 int year = GET_YEAR(self); local
2823 int year = GET_YEAR(self); local
4141 int year; local
4259 int year, month, day, hour, minute, second, fold = 0; local
4526 int year = GET_YEAR(date); local
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 78 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 72 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 94 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 78 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 72 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 94 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 94 rpc_uint16 year; member in struct:rpc_loc_calendar_time_s_type
    [all...]

Completed in 522 milliseconds

<<11121314151617181920>>