Home
last modified time | relevance | path

Searched refs:syear (Results 1 – 25 of 104) sorted by relevance

12345

/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);
245 qq! $syear -- $eday !,
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/www/dolibarr/dolibarr-14.0.3/htdocs/compta/cashcontrol/
H A Dcashcontrol_card.php274 $syear = $object->year_close; variable
308 if ($syear && !$smonth) {
310 } elseif ($syear && $smonth && !$sday) {
312 } elseif ($syear && $smonth && $sday) {
352 if ($syear && !$smonth) {
353 …D datef BETWEEN '".$db->idate(dol_get_first_day($syear, 1))."' AND '".$db->idate(dol_get_last_day(…
354 } elseif ($syear && $smonth && !$sday) {
355 …atef BETWEEN '".$db->idate(dol_get_first_day($syear, $smonth))."' AND '".$db->idate(dol_get_last_d…
356 } elseif ($syear && $smonth && $sday) {
357 …e(dol_mktime(0, 0, 0, $smonth, $sday, $syear))."' AND '".$db->idate(dol_mktime(23, 59, 59, $smonth…
[all …]
H A Dreport.php70 $syear = $object->year_close; variable
138 if ($syear && !$smonth) {
139 …D datef BETWEEN '".$db->idate(dol_get_first_day($syear, 1))."' AND '".$db->idate(dol_get_last_day(…
140 } elseif ($syear && $smonth && !$sday) {
141 …atef BETWEEN '".$db->idate(dol_get_first_day($syear, $smonth))."' AND '".$db->idate(dol_get_last_d…
142 } elseif ($syear && $smonth && $sday) {
143 …e(dol_mktime(0, 0, 0, $smonth, $sday, $syear))."' AND '".$db->idate(dol_mktime(23, 59, 59, $smonth…
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/cashcontrol/
H A Dcashcontrol_card.php44 $syear = (GETPOSTISSET('closeyear') ?GETPOST('closeyear', 'int') : dol_print_date($now, "%Y")); variable
275 $syear = $object->year_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 …($syear && !$smonth) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($sye…
347 …$syear && $smonth && !$sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($syear, $…
348syear && $smonth && $sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_mktime(0, 0, 0, $smonth,…
420 for ($year = $syear - 10; $year < $syear + 10; $year++)
422 …$retstring .= '<option value="'.$year.'"'.($year == $syear ? ' selected' : '').'>'.$year.'</option…
H A Dreport.php64 $syear = $cashcontrol->year_close; variable
122 …($syear && !$smonth) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($sye…
123 …$syear && $smonth && !$sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_get_first_day($syear, $…
124syear && $smonth && $sday) $sql .= " AND datef BETWEEN '".$db->idate(dol_mktime(0, 0, 0, $smonth…
/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/net-mgmt/pnp-icinga2/pnp4nagios-0.6.26/share/pnp/application/helpers/
H A Dnagios.php14 $syear = date('Y' , $start);
25 …cgi?report=1&displaytype=1&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
36 $syear = date('Y' , $start);
48 …og_entries=&host=$hostname&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
50 …tname&service=$servicedesc&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
/dports/net-mgmt/pnp/pnp4nagios-0.6.26/share/pnp/application/helpers/
H A Dnagios.php14 $syear = date('Y' , $start);
25 …cgi?report=1&displaytype=1&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
36 $syear = date('Y' , $start);
48 …og_entries=&host=$hostname&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
50 …tname&service=$servicedesc&timeperiod=custom&smon=$smon&sday=$sday&syear=$syear&shour=$shour&smin=…
/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()
386 result->secular_leap_year_p = gregorian_leap_year_p(syear); in finish_up()
/dports/finance/skrooge/skrooge-2.26.1/skgbasegui/
H A Dskgsimpleperiodedit.cpp70 QString syear = SKGServices::dateToPeriod(today, QStringLiteral("Y")); in refreshList() local
91 …if (!list.contains(cyear) && ((cyear != syear && ((((m_Mode & PREVIOUS_PERIODS)) != 0u) || (((m_Mo… in refreshList()
92 … (cyear == syear && ((((m_Mode & CURRENT_PERIOD)) != 0u) || (((m_Mode & CURRENT_YEAR)) != 0u))))) { in refreshList()
123 if (list.contains(syear)) { in refreshList()
124 addItem(i18nc("The current year", "Current year"), syear); in refreshList()
142 period = SKGServices::getNeighboringPeriod(syear); in refreshList()
/dports/devel/spark/spark-2.1.1/sql/core/src/test/resources/tpcds/
H A Dq64.sql26 d1.d_year AS syear,
75 cs1.syear,
83 cs2.syear,
87 cs1.syear = 1999 AND
88 cs2.syear = 1999 + 1 AND
/dports/finance/beanie/beanie-0.8.2/sales/
H A Drunorders.c179 int sday, smon, syear, eday, emon, eyear; in makeinvoice() local
232 syear = tmp->tm_year + 1900; in makeinvoice()
283 if (syear == eyear) { in makeinvoice()
284 syear = 0; in makeinvoice()
291 strcpy(cp, prdate(sday, smon, syear)); in makeinvoice()
H A Drunhours.c235 int sday, smon, syear, eday, emon, eyear; in invoiceitem() local
270 syear = tmp->tm_year + 1900; in invoiceitem()
275 if (syear == eyear) { in invoiceitem()
276 syear = 0; in invoiceitem()
283 strcpy(cp, prdate(sday, smon, syear)); in invoiceitem()
/dports/science/code_saturne/code_saturne-7.1.0/src/atmo/
H A Datlecc.f90162 if (syear.lt.0) then
163 syear = year
174 sjday = squant + ((1461 * (syear + 4800 + (1 - 14) / 12)) / 4 + &
176 (3 * ((syear + 4900 + (1 - 14) / 12) / 100)) / 4 &
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/lib/
H A Ddate.lib.php330 $syear = $reg[3];
334 if ($syear < 50) $syear += 1900;
335 if ($syear >= 50 && $syear < 100) $syear += 2000;
336 $string = sprintf("%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
343 $syear = $reg[1];
349 $string = sprintf("%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/lib/
H A Ddate.lib.php360 $syear = $reg[3];
364 if ($syear < 50) {
365 $syear += 1900;
367 if ($syear >= 50 && $syear < 100) {
368 $syear += 2000;
370 $string = sprintf("%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
375 $syear = $reg[1];
381 $string = sprintf("%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
/dports/textproc/sdf/sdf-2.001/perllib/sdf/
H A Dmisc.pl201 local($year, $syear);
208 ($second, $minute, $hour, $day, $_month, $syear, $_wday) =
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/compta/paiement/
H A Drapport.php101 $syear = GETPOST("reyear") ?GETPOST("reyear") : date("Y", time()); variable
105 print $formother->select_year($syear, 'reyear');
/dports/sysutils/brut/brut-1.55/
H A Dtime.c99 const gchar *syear; in set_new_time() local
111 syear = gtk_entry_get_text(GTK_ENTRY (newyear)); in set_new_time()
112 if(strlen(syear) == 0) in set_new_time()
113 syear = gtk_entry_get_text(GTK_ENTRY (gyear)); in set_new_time()
133 sprintf(cmd, "date %s%s%s%s%s", syear, smonth, sday, shour, sminute); in set_new_time()
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/compta/paiement/
H A Drapport.php99 $syear = GETPOST("reyear") ?GETPOST("reyear") : date("Y", time()); variable
103 print $formother->select_year($syear, 'reyear');
/dports/www/py-feedgenerator/feedgenerator-2.0.0/feedgenerator/django/utils/
H A Ddatetime_safe.py86 syear = "%04d" % (dt.year,)
88 s = s[:site] + syear + s[site+4:]
/dports/devel/py-Faker/Faker-0.8.15/faker/utils/
H A Ddatetime_safe.py102 syear = "%04d" % (dt.year,)
104 s = s[:site] + syear + s[site + 4:]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fourn/facture/
H A Drapport.php104 $syear = GETPOST("reyear") ?GETPOST("reyear") : date("Y", time()); variable
108 print $formother->select_year($syear, 'reyear');
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fourn/facture/
H A Drapport.php102 $syear = GETPOST("reyear") ?GETPOST("reyear") : date("Y", time()); variable
106 print $formother->select_year($syear, 'reyear');

12345