Home
last modified time | relevance | path

Searched refs:smonth (Results 1 – 25 of 99) sorted by relevance

1234

/dports/www/p5-Gantry/Gantry-3.64/lib/Gantry/Plugins/
H A DCalendar.pm134 my ( $syear, $smonth ) = Add_Delta_YMD( $year, $month, 1, 0, -6, 0);
139 push( @items, "$syear/$smonth", Month_to_Text($smonth)." $syear" );
141 ( $syear, $smonth ) = Add_Delta_YMD( $syear, $smonth, 1, 0, 1, 0);
230 my( $syear, $smonth, $sday ) = Add_Delta_YMD( $year, $month, $day, 0,0,-3);
244 Month_to_Text( $smonth ),
255 my $wdt = Day_of_Week_to_Text( Day_of_Week( $syear, $smonth, $sday ) );
259 qq!( $syear/$smonth/$sday )! ) );
261 ( $syear, $smonth, $sday ) =
262 Add_Delta_YMD( $syear, $smonth, $sday, 0, 0, 1);
274 ( $syear, $smonth, $sday ) =
[all …]
/dports/finance/skrooge/skrooge-2.26.1/skgbasegui/
H A Dskgsimpleperiodedit.cpp67 QString smonth = SKGServices::dateToPeriod(today, QStringLiteral("M")); in refreshList() local
79 if ((cmonth != smonth && (((m_Mode & PREVIOUS_MONTHS)) != 0u)) || in refreshList()
80 (cmonth == smonth && (((m_Mode & CURRENT_MONTH)) != 0u))) { in refreshList()
95 if (cmonth == smonth || c >= today) { in refreshList()
107 if (list.contains(smonth) && (((m_Mode & ALL)) != 0u)) { in refreshList()
111 if (list.contains(smonth)) { in refreshList()
112 addItem(i18nc("The current month", "Current month"), smonth); in refreshList()
127 QString period = SKGServices::getNeighboringPeriod(smonth); in refreshList()
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/compta/cashcontrol/
H A Dcashcontrol_card.php275 $smonth = $object->month_close; variable
308 if ($syear && !$smonth) {
310 } elseif ($syear && $smonth && !$sday) {
311 $sql .= " AND dateo < '".$db->idate(dol_get_first_day($syear, $smonth))."'";
312 } elseif ($syear && $smonth && $sday) {
352 if ($syear && !$smonth) {
354 } elseif ($syear && $smonth && !$sday) {
355 …EEN '".$db->idate(dol_get_first_day($syear, $smonth))."' AND '".$db->idate(dol_get_last_day($syear…
356 } elseif ($syear && $smonth && $sday) {
357 …EEN '".$db->idate(dol_mktime(0, 0, 0, $smonth, $sday, $syear))."' AND '".$db->idate(dol_mktime(23,…
[all …]
H A Dreport.php71 $smonth = $object->month_close; variable
138 if ($syear && !$smonth) {
140 } elseif ($syear && $smonth && !$sday) {
141 …EEN '".$db->idate(dol_get_first_day($syear, $smonth))."' AND '".$db->idate(dol_get_last_day($syear…
142 } elseif ($syear && $smonth && $sday) {
143 …EEN '".$db->idate(dol_mktime(0, 0, 0, $smonth, $sday, $syear))."' AND '".$db->idate(dol_mktime(23,…
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/cashcontrol/
H A Dcashcontrol_card.php45 $smonth = (GETPOSTISSET('closemonth') ?GETPOST('closemonth', 'int') : dol_print_date($now, "%m")); variable
276 $smonth = $object->month_close; variable
312 …if ($syear && !$smonth) $sql .= " AND dateo < '".$db->idate(dol_get_first_day($syear,…
313 …elseif ($syear && $smonth && !$sday) $sql .= " AND dateo < '".$db->idate(dol_get_first_day($syear,…
314 …elseif ($syear && $smonth && $sday) $sql .= " AND dateo < '".$db->idate(dol_mktime(0, 0, 0, $smon…
346 …if ($syear && !$smonth) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($…
347 … $smonth && !$sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($syear, $smonth)).…
348smonth && $sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_mktime(0, 0, 0, $smonth, $sday, $s…
433 $retstring .= '<option value="'.$month.'"'.($month == $smonth ? ' selected' : '').'>';
H A Dreport.php65 $smonth = $cashcontrol->month_close; variable
122 if ($syear && !$smonth) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($s…
123 … $smonth && !$sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($syear, $smonth)).…
124smonth && $sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_mktime(0, 0, 0, $smonth, $sday, $…
/dports/math/R-cran-terra/terra/src/
H A DspatTime.h10 SpatTime_t time_from_day(int syear, int smonth, int sday, double ndays);
11 SpatTime_t time_from_day_noleap(int syear, int smonth, int sday, double ndays);
12 SpatTime_t time_from_day_360(int syear, int smonth, int sday, double ndays);
13 SpatTime_t time_from_hour(int syear, int smonth, int sday, double nhours);
H A DspatTime.cpp193 SpatTime_t time_from_hour(int syear, int smonth, int sday, double nhours) { in time_from_hour() argument
194 SpatTime_t time = get_time(syear, smonth, sday, 0, 0, 0); in time_from_hour()
207 SpatTime_t time_from_day(int syear, int smonth, int sday, double ndays) { in time_from_day() argument
208 SpatTime_t time = get_time(syear, smonth, sday, 0, 0, 0); in time_from_day()
214 SpatTime_t time_from_day_noleap(int syear, int smonth, int sday, double ndays) { in time_from_day_noleap() argument
227 SpatTime_t time = get_time(year+syear, month+smonth, day+sday, 0, 0, 0); in time_from_day_noleap()
232 SpatTime_t time_from_day_360(int syear, int smonth, int sday, double ndays) { in time_from_day_360() argument
245 SpatTime_t time = get_time(year+syear, month+smonth, day+sday, 0, 0, 0); in time_from_day_360()
/dports/security/webfwlog/webfwlog-1.1.1/src/
H A Dutils.c204 if (strncmp(smonth, "Jan", 3) == 0) { month = 0; } in build_time()
205 else if (strncmp(smonth, "Feb", 3) == 0) { month = 1; } in build_time()
206 else if (strncmp(smonth, "Mar", 3) == 0) { month = 2; } in build_time()
207 else if (strncmp(smonth, "Apr", 3) == 0) { month = 3; } in build_time()
208 else if (strncmp(smonth, "May", 3) == 0) { month = 4; } in build_time()
209 else if (strncmp(smonth, "Jun", 3) == 0) { month = 5; } in build_time()
210 else if (strncmp(smonth, "Jul", 3) == 0) { month = 6; } in build_time()
211 else if (strncmp(smonth, "Aug", 3) == 0) { month = 7; } in build_time()
212 else if (strncmp(smonth, "Sep", 3) == 0) { month = 8; } in build_time()
213 else if (strncmp(smonth, "Oct", 3) == 0) { month = 9; } in build_time()
[all …]
H A Dcisco_ios.l74 char smonth[4]; variable
84 smonth, &day, &hour, &minute, &second,
100 smonth, &day, &hour, &minute, &second, &msec);
104 smonth, &day, &hour, &minute, &second);
109 build_time(smonth, day, hour, minute, second);
H A Dipchains.l69 char smonth[4]; variable
72 smonth, &day, &hour, &minute, &second,
76 build_time(smonth, day, hour, minute, second);
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/korganizer/plugins/hebrew/
H A Dconverter.cpp351 void Converter::secularToHebrewConversion(int syear, int smonth, int sday, struct DateResult *resul… in secularToHebrewConversion() argument
356 absolute = absolute_from_gregorian(syear, smonth, sday); in secularToHebrewConversion()
363 finish_up(absolute, hyear, hmonth, syear, smonth, result); in secularToHebrewConversion()
369 int syear, smonth, sday; in hebrewToSecularConversion() local
373 gregorian_from_absolute(absolute, &syear, &smonth, &sday); in hebrewToSecularConversion()
377 finish_up(absolute, hyear, hmonth, syear, smonth, result); in hebrewToSecularConversion()
381 void Converter::finish_up(long absolute, int hyear, int hmonth, int syear, int smonth, struct DateR… in finish_up() argument
384 result->secular_month_length = secular_month_length(syear, smonth); in finish_up()
/dports/security/fwlogwatch/fwlogwatch-1.5/
H A Dutils.c222 if (strncmp(smonth, "Jan", 3) == 0) { in build_time()
224 } else if (strncmp(smonth, "Feb", 3) == 0) { in build_time()
226 } else if (strncmp(smonth, "Mar", 3) == 0) { in build_time()
228 } else if (strncmp(smonth, "Apr", 3) == 0) { in build_time()
230 } else if (strncmp(smonth, "May", 3) == 0) { in build_time()
232 } else if (strncmp(smonth, "Jun", 3) == 0) { in build_time()
234 } else if (strncmp(smonth, "Jul", 3) == 0) { in build_time()
236 } else if (strncmp(smonth, "Aug", 3) == 0) { in build_time()
238 } else if (strncmp(smonth, "Sep", 3) == 0) { in build_time()
240 } else if (strncmp(smonth, "Oct", 3) == 0) { in build_time()
[all …]
H A Dcisco_ios.l65 char smonth[4]; variable
74 retval = sscanf(input, "%3s %2d %2d:%2d:%2d %32s", smonth, &day, &hour, &minute, &second,
90 … retval = sscanf(input, "%3s %2d %2d:%2d:%2d.%3d:", smonth, &day, &hour, &minute, &second, &msec);
94 retval = sscanf(input, "%3s %2d %2d:%2d:%2d:", smonth, &day, &hour, &minute, &second);
101 build_time(smonth, day, hour, minute, second);
H A Dlancom.c18 char smonth[4]; in lancom() local
26 retval = sscanf(sinputs, "%3s %2d %2d:%2d:%2d", smonth, &day, &hour, &minute, &second); in lancom()
32 build_time(smonth, day, hour, minute, second); in lancom()
H A Dnetfilter.l116 char smonth[4]; variable
118 …retval = sscanf(input, "%3s %2d %2d:%2d:%2d %32s", smonth, &day, &hour, &minute, &second, opt.line…
123 build_time(smonth, day, hour, minute, second);
131 char smonth[4]; in nf_parse_start() local
133 retval = sscanf(input, "%3s %2d %2d:%2d:%2d", smonth, &day, &hour, &minute, &second); in nf_parse_start()
138 build_time(smonth, day, hour, minute, second); in nf_parse_start()
H A Dipchains.l61 char smonth[4]; variable
63 …retval = sscanf(input, "%3s %2d %2d:%2d:%2d %32s", smonth, &day, &hour, &minute, &second, opt.line…
67 build_time(smonth, day, hour, minute, second);
H A Dipfw.l56 char smonth[4]; variable
58 …retval = sscanf(input, "%3s %2d %2d:%2d:%2d %32s", smonth, &day, &hour, &minute, &second, opt.line…
63 build_time(smonth, day, hour, minute, second);
H A Dsnort.l60 char smonth[4];
62 …retval = sscanf(input, "%3s %2d %2d:%2d:%2d %32s", smonth, &day, &hour, &minute, &second, opt.line…
66 build_time(smonth, day, hour, minute, second);
/dports/www/domoticz/domoticz-2020.2/main/
H A DScheduler.cpp136 std::string smonth = sd[12]; in ReloadSchedules() local
228 std::string smonth = sd[10]; in ReloadSchedules() local
236 std::string smonth = sd[10]; in ReloadSchedules() local
320 std::string smonth = sd[8]; in ReloadSchedules() local
328 std::string smonth = sd[8]; in ReloadSchedules() local
1225 std::string smonth = "0"; in Cmd_AddTimer() local
1330 std::string smonth = "0"; in Cmd_UpdateTimer() local
1562 std::string smonth = "0"; in Cmd_AddSetpointTimer() local
1658 std::string smonth = "0"; in Cmd_UpdateSetpointTimer() local
1893 std::string smonth = "0"; in Cmd_AddSceneTimer() local
[all …]
/dports/net/rtg/rtg-0.7.5/etc/
H A Drtg.php28 $smonth = isset($_GET['smonth'])?$_GET['smonth']:""; variable
89 if (($smonth != "") && ($iid == ""))
149 if (($bt != "" || $smonth != "") && ($iid != ""))
154 $bt = strtotime("$syear-$smonth-$sday $shour:$smin:00");
H A D95.php18 $smonth = isset($_GET['smonth'])?$_GET['smonth']:""; variable
96 if (($bt != "" || $smonth != ""))
103 $bt = strtotime("$syear-$smonth-$sday $shour:$smin:00");
/dports/net-mgmt/cacti/cacti-1.2.19/lib/
H A Dapi_automation.php3735 $smonth = 'March';
3738 $smonth = 'April';
3741 $smonth = 'May';
3744 $smonth = 'June';
3747 $smonth = 'July';
3750 $smonth = 'August';
3793 $smonth = 'March';
3796 $smonth = 'April';
3799 $smonth = 'May';
3802 $smonth = 'June';
[all …]
/dports/finance/libstocks/libstocks-0.5.0/lib/
H A Dcsv.c295 char smonth[10]; in parse_csv_history_file() local
329 sscanf(ptr,"%d-%3s-%d",&day,smonth,&year); in parse_csv_history_file()
334 while((test=strcasecmp(months[i], smonth))) i++; in parse_csv_history_file()
336 while(test=_mbsnbicmp(months[i], smonth, strlen(months[i]))) i++; in parse_csv_history_file()
/dports/finance/beanie/beanie-0.8.2/bankrec/
H A Dbankdump.c52 char *smonth[12] = { variable
153 smonth[tmp->tm_mon], in main()

1234