HomeSort by relevance Sort by last modified time
    Searched full:month (Results 1 - 25 of 787) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/test/testdata/
calendar.txt 26 // "0/1/1912/june/4 == gregorian year=1912, ERA=AD, same month, same day
29 "ERA=1,YEAR=1,MONTH=JUNE,DATE=4", // tw
30 "ERA=1,YEAR=1912,MONTH=,DATE=" // greg
34 "ERA=1,YEAR=3,MONTH=FEBRUARY,DATE=12", // tw
35 "ERA=1,YEAR=1914,MONTH=,DATE=" // greg
39 "ERA=1,YEAR=96,MONTH=FEBRUARY,DATE=12", // tw
40 "ERA=1,YEAR=2007,MONTH=,DATE=" // greg
43 // [before minguo]2 1[month] 24[day] -> 1910-1-24
46 "ERA=0,YEAR=2,MONTH=JANUARY,DATE=24", // tw
47 "ERA=1,YEAR=1910,MONTH=JANUARY,DATE=24", // gre
    [all...]
  /external/bison/doc/
stamp-vti 2 @set UPDATED-MONTH May 2006
version.texi 2 @set UPDATED-MONTH May 2006
  /external/grub/docs/
stamp-vti 2 @set UPDATED-MONTH May 2005
version.texi 2 @set UPDATED-MONTH May 2005
mdate-sh 76 # until we find a month. This cannot work with files whose owner is a
78 # will be owned by a user whose name is a month. So we first look at
85 # Find which argument is the month.
86 month=
88 until test $month
94 Jan) month=January; nummonth=1;;
95 Feb) month=February; nummonth=2;;
96 Mar) month=March; nummonth=3;;
97 Apr) month=April; nummonth=4;;
98 May) month=May; nummonth=5;
    [all...]
  /external/libffi/doc/
stamp-vti 2 @set UPDATED-MONTH February 2008
version.texi 2 @set UPDATED-MONTH February 2008
  /ndk/sources/host-tools/sed-4.2.1/doc/
stamp-vti 2 @set UPDATED-MONTH June 2009
version.texi 2 @set UPDATED-MONTH June 2009
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 20 * Helps control and display a month view of a calendar that has a current
23 * <li>Keeps track of current month, day, year</li>
29 * This should be used by anyone who presents a month view to users and wishes
31 * mind about when to flip the month, we can change it here only.
42 * @param month The initial month.
48 public DayOfMonthCursor(int year, int month, int dayOfMonth, int weekStartDay) {
49 super(year, month, weekStartDay);
73 * @return 0 if the selection is in the current month, otherwise -1 or +1
96 * Move up one box, potentially flipping to the previous month
    [all...]
MonthDisplayHelper.java 22 * Helps answer common questions that come up when displaying a month in a
32 // holds current month, year, helps compute display
43 * @param month The month.
46 public MonthDisplayHelper(int year, int month, int weekStartDay) {
55 mCalendar.set(Calendar.MONTH, month);
66 public MonthDisplayHelper(int year, int month) {
67 this(year, month, Calendar.SUNDAY);
76 return mCalendar.get(Calendar.MONTH);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 22 * Helps control and display a month view of a calendar that has a current
25 * <li>Keeps track of current month, day, year</li>
31 * This should be used by anyone who presents a month view to users and wishes
33 * mind about when to flip the month, we can change it here only.
44 * @param month The initial month.
50 public DayOfMonthCursor(int year, int month, int dayOfMonth, int weekStartDay) {
51 super(year, month, weekStartDay);
75 * @return 0 if the selection is in the current month, otherwise -1 or +1
98 * Move up one box, potentially flipping to the previous month
    [all...]
  /external/bison/build-aux/
mdate-sh 85 # until we find a month. This cannot work with files whose owner is a
87 # will be owned by a user whose name is a month. So we first look at
94 # Find which argument is the month.
95 month=
97 until test $month
103 Jan) month=January; nummonth=1;;
104 Feb) month=February; nummonth=2;;
105 Mar) month=March; nummonth=3;;
106 Apr) month=April; nummonth=4;;
107 May) month=May; nummonth=5;
    [all...]
  /external/libffi/
mdate-sh 85 # until we find a month. This cannot work with files whose owner is a
87 # will be owned by a user whose name is a month. So we first look at
94 # Find which argument is the month.
95 month=
97 until test $month
103 Jan) month=January; nummonth=1;;
104 Feb) month=February; nummonth=2;;
105 Mar) month=March; nummonth=3;;
106 Apr) month=April; nummonth=4;;
107 May) month=May; nummonth=5;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
mdate-sh 88 # until we find a month. This cannot work with files whose owner is a
90 # will be owned by a user whose name is a month. So we first look at
97 # Find which argument is the month.
98 month=
100 until test $month
106 Jan) month=January; nummonth=1;;
107 Feb) month=February; nummonth=2;;
108 Mar) month=March; nummonth=3;;
109 Apr) month=April; nummonth=4;;
110 May) month=May; nummonth=5;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 90 String month = lexer.ttoken().toLowerCase(); local
91 if (month.equals("jan")) {
92 retval.set(Calendar.MONTH, Calendar.JANUARY);
93 } else if (month.equals("feb")) {
94 retval.set(Calendar.MONTH, Calendar.FEBRUARY);
95 } else if (month.equals("mar")) {
96 retval.set(Calendar.MONTH, Calendar.MARCH);
97 } else if (month.equals("apr")) {
98 retval.set(Calendar.MONTH, Calendar.APRIL);
99 } else if (month.equals("may"))
    [all...]
  /libcore/luni/src/main/java/java/util/
Grego.java 66 * Return the number of days in the given month.
68 * @param month 0-based month, with 0==Jan
69 * @return the number of days in the given month
71 public static final int monthLength(int year, int month) {
72 return MONTH_LENGTH[month + (isLeapYear(year) ? 12 : 0)];
76 * Return the length of a previous month of the Gregorian calendar.
78 * @param month 0-based month, with 0==Jan
79 * @return the number of days in the month previous to the given month
143 int month = (12 * (dayOfYear + correction) + 6) \/ 367; \/\/ zero-based month local
    [all...]
  /external/icu4c/i18n/unicode/
simpletz.h 52 * count from the end of the month backwards. For example, if Daylight Savings
53 * Time starts or ends at the last Sunday a month, use <code>dayOfWeekInMonth = -1</code>
140 * @param savingsStartMonth The daylight savings starting month. Month is
143 * day-of-week-in-month. See setStartRule() for a
149 * @param savingsEndMonth The daylight savings ending month. Month is
151 * @param savingsEndDayOfWeekInMonth The daylight savings ending day-of-week-in-month.
181 * @param savingsStartMonth The daylight savings starting month. Month i
    [all...]
dtrule.h 24 * a rule specified by month, day of month, day of week and
37 DOM = 0, /**< The exact day of month,
43 DOW_LEQ_DOM /**< The last occurence of the day of week on or before the day of month,
58 * Constructs a <code>DateTimeRule</code> by the day of month and
62 * @param month The rule month, for example, <code>Calendar::JANUARY</code>
63 * @param dayOfMonth The day of month, 1-based.
69 DateTimeRule(int32_t month, int32_t dayOfMonth,
77 * @param month The rule month, for example, <code>Calendar::JANUARY</code>
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_TimeZone.java 47 * let's assume this timezone has daylight savings from the 4th month till
48 * the 10th month of the year to ame things simple.
57 int month = cal.get(Calendar.MONTH); local
59 if (month > 4 && month < 10) {
  /packages/wallpapers/Basic/res/xml/
polar_clock_palettes.xml 19 day="#FF999999" month="#FF777777" />
25 day="#FF706080" month="#FF403050" />
31 day="#FF00AA00" month="#FF006600" />
37 day="#FF000000" month="#FF000000" />
43 day="#FFDCA3A3" month="#FF7f9f7f" />
49 day="#FF000033" month="#FF000011" />
  /external/icu4c/test/perf/DateFmtPerf/
breakdata.h 13 "Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement."
15 "Midnight, Central Time, of the last day of the stated month. A"
  /external/icu4c/i18n/
gregoimp.h 145 * Return the number of days in the given month.
147 * @param month 0-based month, with 0==Jan
148 * @return the number of days in the given month
150 static inline int8_t monthLength(int32_t year, int32_t month);
153 * Return the length of a previous month of the Gregorian calendar.
155 * @param m the 0-based month number
156 * @return the number of days in the month previous to the given month
161 * Convert a year, month, and day-of-month, given in the prolepti
    [all...]
  /external/icu4c/samples/translit/answers/
main_1.cpp 39 for (int32_t month = Calendar::JANUARY;
40 month <= Calendar::DECEMBER;
41 ++month) {
45 cal->set(1999, month, 4);

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>