HomeSort by relevance Sort by last modified time
    Searched refs:year (Results 151 - 175 of 689) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/net/cert/
x509_cert_types.cc 124 exploded.year = ParseIntAndAdvance(&field, year_length, &valid);
131 exploded.year += exploded.year < 50 ? 2000 : 1900;
  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.h 52 inline int year() const { return m_year; } function in class:WTF::GregorianDateTime
63 inline void setYear(int year) { m_year = year; }
  /external/libmtp/examples/
sendtr.c 59 fprintf(stderr, " -l <album> -c <codec> -g <genre> -n <track number> -y <year>\n");
164 int sendtrack_function(char * from_path, char * to_path, char *partist, char *palbumartist, char *ptitle, char *pgenre, char *palbum, char *pcomposer, uint16_t tracknum, uint16_t length, uint16_t year, uint32_t storageid)
245 if (year == 0) {
247 if ( (pnum = prompt("Year", num, 80, 0)) == NULL )
248 year = 0;
250 year = strtoul(pnum, 0, 10);
252 year = 0;
299 if (year > 0) {
301 printf("Year: %d\n", year);
385 uint16_t year = 0; local
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 61 private static final String KEY_SELECTED_YEAR = "year";
118 * @param year The year that was set.
123 void onDateSet(DatePickerDialog dialog, int year, int monthOfYear, int dayOfMonth);
141 * @param year The initial year of the dialog.
145 public static DatePickerDialog newInstance(OnDateSetListener callBack, int year,
149 ret.initialize(callBack, year, monthOfYear, dayOfMonth);
153 public void initialize(OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) {
155 mCalendar.set(Calendar.YEAR, year)
407 adjustDayInMonthIfNeeded(mCalendar.get(Calendar.MONTH), year); local
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbEtwsInfo.java 136 int year = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[0]); local
158 time.year = year + 2000;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
DateTileView.java 87 public void setDate(int date, int month, int year) {
102 if (year != mYear) {
103 mYear = year;
  /external/bison/build-aux/
update-b4-copyright 4 # include the current year.
29 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
30 $this_year = $year + 1900;
66 # Update the year.
  /external/chromium_org/base/time/
time_mac.cc 140 date.year = exploded.year;
166 exploded->year = date.year;
  /external/chromium_org/content/renderer/
date_time_formatter.h 23 // a set of year/month/day/hour/minute/second and vice versa.
30 int year, int month, int day, int hour, int minute, int second,
  /external/chromium_org/crypto/
nss_util_unittest.cc 22 prxtime.tm_year = exploded.year = 2011;
  /external/chromium_org/third_party/icu/source/common/
rbbicst.pl 228 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
229 $year += 1900;
234 print " * Copyright (C) 2003-$year,\n";
344 print "// Copyright (C) 2002-$year International Business Machines Corporation \n";
  /external/chromium_org/third_party/icu/source/i18n/
coptccal.h 34 * the 1st month of the Coptic year.
40 * the 2nd month of the Coptic year.
46 * the 3rd month of the Coptic year.
52 * the 4th month of the Coptic year.
58 * the 5th month of the Coptic year.
64 * the 6th month of the Coptic year.
70 * the 7th month of the Coptic year.
76 * the 8th month of the Coptic year.
82 * the 9th month of the Coptic year.
88 * the 10th month of the Coptic year.
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tzrulets.h 47 UDate getUTCMillis(int32_t year, int32_t month, int32_t dom,
  /external/chromium_org/third_party/icu/source/tools/toolutil/
writesrc.c 50 char year[8]; local
56 strftime(year, sizeof(year), "%Y", lt);
58 fprintf(f, header, year, filename, buffer);
  /external/icu4c/common/
rbbicst.pl 228 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
229 $year += 1900;
234 print " * Copyright (C) 2003-$year,\n";
344 print "// Copyright (C) 2002-$year International Business Machines Corporation \n";
  /external/icu4c/i18n/
coptccal.h 34 * the 1st month of the Coptic year.
40 * the 2nd month of the Coptic year.
46 * the 3rd month of the Coptic year.
52 * the 4th month of the Coptic year.
58 * the 5th month of the Coptic year.
64 * the 6th month of the Coptic year.
70 * the 7th month of the Coptic year.
76 * the 8th month of the Coptic year.
82 * the 9th month of the Coptic year.
88 * the 10th month of the Coptic year.
    [all...]
  /external/icu4c/test/intltest/
tzrulets.h 48 UDate getUTCMillis(int32_t year, int32_t month, int32_t dom,
  /external/skia/tools/copyright/
main.py 11 while keeping the year and holder intact.
13 year and default holder.
50 (year, holder) = parser.GetCopyrightBlockAttributes(old_copyright_block)
56 new_copyright_block = parser.CreateCopyrightBlock(year, holder)
  /external/wpa_supplicant_8/src/utils/
os_win32.c 50 int os_mktime(int year, int month, int day, int hour, int min, int sec,
57 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
63 tm.tm_year = year - 1900;
103 tm->year = tm2->tm_year + 1900;
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 34 // System.out.println("got: " + t.year + '-'
190 if (local.year != test.year2 || local.month != test.month2
196 local.year, local.month, local.monthDay, local.hour, local.minute);
208 if (local.year != test.year2 || local.month != test.month2
214 local.year, local.month, local.monthDay, local.hour, local.minute);
231 if (local.year != test.year2 || local.month != test.month2
238 local.year, local.month, local.monthDay, local.hour, local.minute,
253 if (local.year != test.year2 || local.month != test.month2
260 local.year, local.month, local.monthDay, local.hour, local.minute,
362 if (!t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_entry_conversion_unittest.cc 45 exploded.year = 2011;
59 exploded.year = 2011;
118 exploded.year = 2011;
130 exploded.year = 2011;
142 exploded.year = 2011;
199 exploded.year = 2011;
211 exploded.year = 2010;
223 exploded.year = 2011;
269 exploded.year = 2012;
281 exploded.year = 2012
    [all...]
  /external/smack/src/org/xbill/DNS/
FormattedTime.java 41 sb.append(w4.format(c.get(Calendar.YEAR)));
65 int year = Integer.parseInt(s.substring(0, 4)); local
71 c.set(year, month, date, hour, minute, second);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTimeFactory.java 54 * @param year years
64 public static XMPDateTime create(int year, int month, int day,
68 dt.setYear(year);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 61 public static int getDaysInMonth(int month, int year) {
77 return (year % 4 == 0) ? 29 : 28;
104 * at 0. *Do not* use this to compute the ISO week number for the year.
  /libcore/luni/src/main/java/java/sql/
Date.java 24 * format only deals with year, month and day values. There are no values for
41 * Constructs a {@code Date} object corresponding to the supplied year,
46 * the year, specified as the year minus 1900. Must be in the
229 int year = Integer.parseInt(dateString.substring(0, firstIndex)); local
234 return new Date(year - 1900, month - 1, day);

Completed in 2786 milliseconds

1 2 3 4 5 67 8 91011>>