HomeSort by relevance Sort by last modified time
    Searched full:monthdays (Results 1 - 5 of 5) sorted by null

  /external/iptables/extensions/
libxt_time.t 2 -m time --timestart 01:02:03 --timestop 04:05:06 --monthdays 1,2,3,4,5 --weekdays Mon,Fri,Sun --datestart 2001-02-03T04:05:06 --datestop 2012-09-08T09:06:05 --kerneltz;=;OK
3 -m time --timestart 01:02:03 --timestop 04:05:06 --monthdays 1,2,3,4,5 --weekdays Mon,Fri,Sun --datestart 2001-02-03T04:05:06 --datestop 2012-09-08T09:06:05;=;OK
libxt_time.c 49 {.name = "monthdays", .id = O_MONTHDAYS, .type = XTTYPE_STRING,
68 "[!] --monthdays value List of days on which to match, separated by comma\n"
223 "%s is not a valid day for --monthdays", day);
429 printf(" --monthdays");
libxt_time.man 21 [\fB!\fP] \fB\-\-monthdays\fP \fIday\fP[\fB,\fP\fIday\fP...]
86 \-m time \-\-weekdays Fr \-\-monthdays 22,23,24,25,26,27,28
  /libcore/ojluni/src/main/java/java/time/chrono/
HijrahDate.java 415 int monthDays = chrono.getMonthLength(prolepticYear, month);
416 if (day > monthDays) {
417 day = monthDays;
448 int monthDays = chronology.getDayOfYear(prolepticYear, monthOfYear);
449 return HijrahDate.of(chronology, prolepticYear, monthOfYear,(dayOfMonth > monthDays) ? monthDays : dayOfMonth );
  /libcore/ojluni/src/test/java/time/test/java/time/chrono/
TestUmmAlQuraChronology.java 388 @DataProvider(name="monthDays")
401 @Test (dataProvider="monthDays")
413 @Test(dataProvider="monthDays")
    [all...]

Completed in 1941 milliseconds