HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 76 - 100 of 603) sorted by null

1 2 34 5 6 7 8 91011>>

  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 34 public int month; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
45 this.month = month;
63 jsonObject.put("month", month);
85 alarm.month = jsonObject.getInt("month");
100 ", month=" + month
    [all...]
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
Alarm.java 34 public int month; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
45 this.month = month;
63 jsonObject.put("month", month);
85 alarm.month = jsonObject.getInt("month");
100 ", month=" + month
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
DateTimeRule.java 16 * a rule specified by month, day of month, day of week and
26 * Date rule type defined by exact day of month.
32 * Date rule type defined by day of week in month.
39 * after exact day of month.
46 * before exact day of month.
68 private final int month; field in class:DateTimeRule
77 * Constructs a <code>DateTimeRule</code> by the day of month and
81 * @param month The rule month, for example, <code>Calendar.JANUARY</code
    [all...]
SimpleHoliday.java 19 * A holiday whose date can be represented by a month, day, and optionally day of week
29 * @param month The month in which this holiday occurs (0-based)
30 * @param dayOfMonth The date within the month (1-based).
40 public SimpleHoliday(int month, int dayOfMonth, String name)
42 super(name, new SimpleDateRule(month, dayOfMonth));
48 * @param month The month in which this holiday occurs (0-based)
49 * @param dayOfMonth The date within the month (1-based).
59 public SimpleHoliday(int month, int dayOfMonth, String name
    [all...]
  /external/icu/icu4c/source/i18n/
indiancal.cpp 63 { 0, 0, 11, 11}, // MONTH
107 * Return the length (in days) of the given month.
110 * @param month The month(0-based) in Indian calendar
112 int32_t IndianCalendar::handleGetMonthLength(int32_t eyear, int32_t month) const {
113 if (month < 0 || month > 11) {
114 eyear += ClockMath::floorDivide(month, 12, month);
117 if (isGregorianLeap(eyear + INDIAN_ERA_START) && month == 0)
164 int32_t year, month, day; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DateTimeRule.java 15 * a rule specified by month, day of month, day of week and
25 * Date rule type defined by exact day of month.
33 * Date rule type defined by day of week in month.
42 * after exact day of month.
51 * before exact day of month.
81 private final int month; field in class:DateTimeRule
90 * Constructs a <code>DateTimeRule</code> by the day of month and
94 * @param month The rule month, for example, <code>Calendar.JANUARY</code
    [all...]
SimpleHoliday.java 18 * A holiday whose date can be represented by a month, day, and optionally day of week
28 * @param month The month in which this holiday occurs (0-based)
29 * @param dayOfMonth The date within the month (1-based).
40 public SimpleHoliday(int month, int dayOfMonth, String name)
42 super(name, new SimpleDateRule(month, dayOfMonth));
48 * @param month The month in which this holiday occurs (0-based)
49 * @param dayOfMonth The date within the month (1-based).
60 public SimpleHoliday(int month, int dayOfMonth, String name
    [all...]
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.operators/
month_weekday.pass.cpp 15 // operator/(const month& m, const weekday_indexed& wdi) noexcept;
20 // Returns: month(m) / wdi.
23 // operator/(const weekday_indexed& wdi, const month& m) noexcept;
28 // Returns: month(m) / wdi.
34 // static_assert(mwd.month() == February);
51 using month = std::chrono::month;
56 constexpr month February = std::chrono::February;
58 { // operator/(const month& m, const weekday_indexed& wdi) (and switched)
67 static_assert(wdi.month() == February, "")
    [all...]
month_weekday_last.pass.cpp 15 // operator/(const month& m, const weekday_last& wdl) noexcept;
20 // Returns: month(m) / wdl.
23 // operator/(const weekday_last& wdl, const month& m) noexcept;
28 // Returns: month(m) / wdl.
43 using month = std::chrono::month;
49 constexpr month February = std::chrono::February;
52 { // operator/(const month& m, const weekday_last& wdi) (and switched)
61 static_assert(wdi.month() == February, "");
68 month m(i)
    [all...]
year_month_day_last.pass.cpp 15 // Returns: {ym.year(), month_day_last{ym.month()}}.
44 using month = std::chrono::month;
50 constexpr month February = std::chrono::February;
60 static_assert((Feb2018/last).month() == February, "");
66 month m{j};
69 assert(ymdl.month() == m);
80 static_assert((year{2018}/month_day_last{February}).month() == February, "");
82 static_assert((month_day_last{February}/year{2018}).month() == February, "");
89 month m{j}
    [all...]
year_month_weekday_last.pass.cpp 16 // Returns: {ym.year(), ym.month(), wdl}.
20 // Returns: {y, mwdl.month(), mwdl.weekday_last()}.
47 using month = std::chrono::month;
54 constexpr month February = std::chrono::February;
63 static_assert((Feb2018/weekday_last{Tuesday}).month() == February, "");
71 month m{j};
75 assert(ymwdl.month() == m);
91 static_assert((year{2018}/FebLastTues).month() == February, "");
94 static_assert((FebLastTues/year{2018}).month() == February, "")
    [all...]
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ym/time.cal.ym.members/
year.pass.cpp 26 using month = std::chrono::month;
36 year_month ym(year{i}, month{});
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ymd/time.cal.ymd.members/
day.pass.cpp 26 using month = std::chrono::month;
37 year_month_day ymd(year{1234}, month{2}, day{i});
year.pass.cpp 26 using month = std::chrono::month;
37 year_month_day ym(year{i}, month{}, day{});
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ymdlast/time.cal.ymdlast.members/
year.pass.cpp 26 using month = std::chrono::month;
35 year_month_day_last ym(year{i}, month_day_last{month{}});
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ymwd/time.cal.ymwd.members/
index.pass.cpp 26 using month = std::chrono::month;
38 year_month_weekday ymwd0(year{1234}, month{2}, weekday_indexed{weekday{2}, i});
weekday.pass.cpp 26 using month = std::chrono::month;
38 year_month_weekday ymwd0(year{1234}, month{2}, weekday_indexed{weekday{i}, 1});
year.pass.cpp 26 using month = std::chrono::month;
37 year_month_weekday ym(year{i}, month{1}, weekday_indexed{});
weekday_indexed.pass.cpp 26 using month = std::chrono::month;
38 year_month_weekday ymwd0(year{1234}, month{2}, weekday_indexed{weekday{i}, 1});
41 year_month_weekday ymwd1(year{1234}, month{2}, weekday_indexed{weekday{2}, i});
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.mwdlast/time.cal.mwdlast.members/
weekday_last.pass.cpp 25 using month = std::chrono::month;
30 constexpr month January = std::chrono::January;
37 static_assert( month_weekday_last{month{}, lastTuesday}.weekday_last() == lastTuesday, "");
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ymdlast/time.cal.ymdlast.nonmembers/
plus.pass.cpp 17 // Returns: (ymdl.year() / ymdl.month() + dm) / last.
48 if ( (ymdl + offset).month() != ymdl.month()) return false;
50 if ( (offset + ymdl).month() != ymdl.month()) return false;
58 if (static_cast<unsigned>((ymdl ).month()) != 1) return false;
60 if (static_cast<unsigned>((ymdl + offset).month()) != 7) return false;
61 if (static_cast<unsigned>((offset + ymdl).month()) != 7) return false;
70 using month = std::chrono::month;
    [all...]
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ymwdlast/time.cal.ymwdlast.members/
weekday.pass.cpp 26 using month = std::chrono::month;
34 static_assert( year_month_weekday_last{year{}, month{}, weekday_last{weekday{}}}.weekday() == weekday{}, "");
38 year_month_weekday_last ymwdl(year{1}, month{1}, weekday_last{weekday{i}});
year.pass.cpp 26 using month = std::chrono::month;
34 static_assert( year_month_weekday_last{year{}, month{}, weekday_last{weekday{}}}.year() == year{}, "");
38 year_month_weekday_last ymwdl(year{i}, month{1}, weekday_last{weekday{}});
  /external/tensorflow/tensorflow/python/compat/
compat.py 34 def forward_compatible(year, month, day):
66 if compat.forward_compatible(year, month, day):
73 Where `year`, `month`, and `day` specify the date beyond which binaries
80 month: A month (1 <= month <= 12) in year.
81 day: A day (1 <= day <= 31, or 30, or 29, or 28) in month.
86 source code after (year, month, day).
88 return _FORWARD_COMPATIBILITY_HORIZON > datetime.date(year, month, day)
93 def forward_compatibility_horizon(year, month, day)
    [all...]
  /external/icu/icu4c/source/test/compat/
tzone.pl 10 print "Usage: tzone [year month day hour minute]\n";
21 my $month = 0;
28 ($year, $month, $day, $hour, $minute) = @ARGV;
29 print "The date we are using is: $month-$day-$year $hour:$minute.\n";
54 my @result = `./tzdate $year $month $day $hour $minute $USECURRENT`;

Completed in 1712 milliseconds

1 2 34 5 6 7 8 91011>>