HomeSort by relevance Sort by last modified time
    Searched defs:YEAR (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/syslinux/bios/
version.h 5 #define YEAR 2014
  /external/syslinux/efi32/
version.h 5 #define YEAR 2014
  /external/syslinux/efi64/
version.h 5 #define YEAR 2014
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
TimeUnitConstants.java 18 /** Represents a year. */
19 public static final TimeUnit YEAR = TimeUnit.YEAR;
TimeUnit.java 36 /** Represents a year. */
37 public static final TimeUnit YEAR = new TimeUnit("year", 0);
72 YEAR, MONTH, WEEK, DAY, HOUR, MINUTE, SECOND, MILLISECOND
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
TimeUnitConstants.java 16 /** Represents a year. */
17 public static final TimeUnit YEAR = TimeUnit.YEAR;
TimeUnit.java 34 /** Represents a year. */
35 public static final TimeUnit YEAR = new TimeUnit("year", 0);
70 YEAR, MONTH, WEEK, DAY, HOUR, MINUTE, SECOND, MILLISECOND
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/asctime/
1-1.c 18 #define YEAR 73
48 time_ptr.tm_year = YEAR;
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
TestChronoField.java 84 fieldMap.put(ChronoField.YEAR, "year");
110 {ChronoField.YEAR},
152 ChronoField.YEAR.getDisplayName((Locale)null);
  /packages/services/Car/car-lib/src/android/car/
VehicleUnit.java 46 public static final int YEAR = 0x59;
70 YEAR,
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 46 private static final String YEAR = "year";
82 * @param year the initially selected year
89 int year, int month, int dayOfMonth) {
90 this(context, 0, listener, null, year, month, dayOfMonth);
101 * @param year the initially selected year
102 * @param monthOfYear the initially selected month of the year (0-11 for
108 @Nullable OnDateSetListener listener, int year, int monthOfYear, int dayOfMonth)
215 final int year = savedInstanceState.getInt(YEAR); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockContract.java 220 * Alarm year.
224 String YEAR = "year";
227 * Alarm month in year.
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreAudioTestHelper.java 89 public static final int YEAR = 1992;
134 values.put(Media.YEAR, YEAR);
165 public static final int YEAR = 1992;
213 values.put(Media.YEAR, YEAR);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 155 public static final char YEAR = 'y';
325 * array containing the day ({@code 'd'}), month ({@code 'M'}), and year ({@code 'y'}))
329 * not just the day, month, and year, and not necessarily in the same
493 replacement = getYearString(inDate.get(Calendar.YEAR), count);
573 private static String getYearString(int year, int count) {
574 return (count <= 2) ? zeroPad(year % 100, 2)
575 : String.format(Locale.getDefault(), "%d", year);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaMetadataTest.java 40 YEAR, DURATION, NUM_TRACKS, WRITER
115 Log.v(TAG, "Year : "+ value);
116 assertEquals(TAG, meta_data_file[fileIndex][meta.YEAR.ordinal()], value);
  /libcore/ojluni/src/main/java/java/time/temporal/
ChronoField.java 63 import java.time.Year;
91 * For example, most non-ISO calendar systems define dates as a year, month and day,
365 * The aligned day-of-week within a year.
368 * where the weeks are aligned to the start of the year.
371 * For example, in a calendar systems with a seven day week, the first aligned-week-of-year
372 * starts on day-of-year 1, the second aligned-week starts on day-of-year 8, and so on.
375 * As such, day-of-year 1 to 7 will have aligned-day-of-week values from 1 to 7.
376 * And day-of-year 8 to 14 will repeat this with aligned-day-of-week values from 1 to 7.
388 * from 1 to 28, or 29 in a leap year
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 19 // This is a fork of the standard Android DatePicker that additionally allows toggling the year
46 /** Magic year that represents "no year" */
49 private static final String YEAR = "year";
69 * @param year The year that was set or {@link DatePickerDialog#NO_YEAR} if the user has
70 * not specified a year
75 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth);
81 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no yea
176 int year = savedInstanceState.getInt(YEAR); local
    [all...]
  /libcore/luni/src/test/java/libcore/libcore/icu/
DateIntervalFormatTest.java 31 private static final long YEAR = 12 * MONTH;
46 c.set(Calendar.YEAR, 2009);
83 assertEquals("1/19/2009 ? 2/9/2012", formatDateRange(en_US, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_YEAR | FORMAT_NUMERIC_DATE));
88 assertEquals("19.01.2009 ? 09.02.2012", formatDateRange(de_DE, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_YEAR | FORMAT_NUMERIC_DATE));
93 assertEquals("19/1/2009?9/2/2012", formatDateRange(es_US, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_YEAR | FORMAT_NUMERIC_DATE));
98 assertEquals("19/1/2009?9/2/2012", formatDateRange(es_ES, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_YEAR | FORMAT_NUMERIC_DATE));
112 assertEquals("Jan 19, 2009 ? Feb 9, 2012", formatDateRange(en_US, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_DATE | FORMAT_ABBREV_ALL));
113 assertEquals("Jan 2009 ? Feb 2012", formatDateRange(en_US, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_NO_MONTH_DAY | FORMAT_ABBREV_ALL));
114 assertEquals("January 19, 2009 ? February 9, 2012", formatDateRange(en_US, tz, fixedTime, fixedTime + 3 * YEAR, 0));
115 assertEquals("Monday, January 19, 2009 ? Thursday, February 9, 2012", formatDateRange(en_US, tz, fixedTime, fixedTime + 3 * YEAR, FORMAT_SHOW_WEEKDAY))
    [all...]
  /libcore/ojluni/src/main/java/java/text/
DateFormat.java 176 * Useful constant for YEAR field alignment.
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 66 private static final int YEAR = 2008;
207 Calendar calendar = new GregorianCalendar(YEAR, MONTH, DAY);
314 assertTrue(locale.toString() + " year not found", seenYear);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CalendarTestFmwk.java 44 public final static int YEAR = Calendar.YEAR;
59 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
142 * <li>0: input year
147 * <li>5: result year
154 * // year month day field amount year month day
183 Calendar.EXTENDED_YEAR : YEAR);
236 Calendar.ERA, Calendar.YEAR, Calendar.MONTH,
375 // Day of year
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
calendar.h 57 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
93 * <code>UDate</code> (such as only year and month but no day in the month),
102 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
153 * specification of the historial Arabic astronomical calendar requires year,
220 YEAR, // Example: 1..big number
236 YEAR_WOY, // 'Y' Example: 1..big number - Year of Week of Year
546 * starting with 100 BC and adding +1 to year results in 99 BC (even though this actually reduces
568 * starting with 100 BC and adding +1 to year results in 99 BC (even though this actually reduces
586 * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, i
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CalendarTestFmwk.java 41 public final static int YEAR = Calendar.YEAR;
56 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
139 * <li>0: input year
144 * <li>5: result year
151 * // year month day field amount year month day
180 Calendar.EXTENDED_YEAR : YEAR);
233 Calendar.ERA, Calendar.YEAR, Calendar.MONTH,
372 // Day of year
    [all...]
  /external/libtextclassifier/
types.h 331 YEAR = 11
365 // Year of the date seen in the text match.
366 int year; member in struct:libtextclassifier2::DateParseData
367 // Month of the year starting with January = 1.
  /external/v8/src/
dateparser.h 19 // [0]: year
32 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, MILLISECOND, UTC_OFFSET, OUTPUT_SIZE
351 // If set, ensures that data is always parsed in year-month-date order.

Completed in 264 milliseconds

1 2 3 4 5 6