Home
last modified time | relevance | path

Searched refs:mydate (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/dports/arabic/libitl/ITL-f8f41cc/hijri/
H A Dumm_alqura.c320 fill_datestruct(mydate, mydate->weekday, mg, mydate->month, in G2H()
357 mydate->weekday = mydate->weekday % 7; in H2G()
371 mydate->day = 1; in H2G()
376 fill_datestruct(mydate, mydate->weekday, mh, mydate->month, in H2G()
502 mydate->year--; in GDateAjust()
512 mydate->day += gmonth[mydate->month]; in GDateAjust()
514 mydate->day += GLeapYear(mydate->year); in GDateAjust()
532 dys = gmonth[mydate->month] + GLeapYear(mydate->year); in GDateAjust()
542 dys = gmonth[mydate->month] + GLeapYear(mydate->year); in GDateAjust()
618 if(mydate->day > 30) {mydate->day -= 30; mydate->month++;} in JDToHCalendar()
[all …]
H A Ddemo_hijri.c37 sDate mydate; in main() local
64 mydate.frm_dname_sh, mydate.frm_mname, mydate.frm_mname_sh, in main()
67 mydate.month, mydate.year); in main()
69 mydate.to_dname, mydate.to_dname_sh,mydate.to_mname, in main()
70 mydate.to_mname_sh, mydate.day, mydate.year); in main()
72 for (i = 0; mydate.event[i] != NULL; i++) in main()
76 free(mydate.event); in main()
78 error_code = g_date(&mydate2, mydate.day, mydate.month, mydate.year); in main()
95 G2H(&mydate, day, month, year); in main()
97 mydate.month, mydate.year); in main()
[all …]
/dports/multimedia/zoneminder/zoneminder-1.36.5/scripts/ZoneMinder/lib/ZoneMinder/Control/
H A DReolink.pm160 $sha->add($nonce.$mydate.$password);
223 $sha->add($nonce.$mydate.$password);
241 $sha->add($nonce.$mydate.$password);
259 $sha->add($nonce.$mydate.$password);
277 $sha->add($nonce.$mydate.$password);
295 $sha->add($nonce.$mydate.$password);
313 $sha->add($nonce.$mydate.$password);
331 $sha->add($nonce.$mydate.$password);
350 $sha->add($nonce.$mydate.$password);
369 $sha->add($nonce.$mydate.$password);
[all …]
/dports/databases/grass7/grass-7.8.6/lib/python/temporal/
H A Ddatetime_math.py283 return mydate
303 year = mydate.year
304 month = mydate.month
311 dt1 = copy.copy(mydate)
325 year = mydate.year
326 month = mydate.month
426 hours = mydate.hour
427 days = mydate.day
429 months = mydate.month
430 years = mydate.year
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/
H A Ddatepicker.php194 $mydate = dol_get_first_day_week(1, $month, $year, true); // mydate = cursor date
201 if ($mydate < $firstdate) // At first run
211 $mydate = $firstdate;
218 if ($mydate["wday"] == $startday)
237 …cho " onMouseOver=\"dpHighlightDay(".$mydate["year"].",parseInt('".dol_print_date($thedate, "%m").…
238 …echo " onClick=\"dpClickDay(".$mydate["year"].",parseInt('".dol_print_date($thedate, "%m")."',10),…
239 echo ">".sprintf("%02s", $mydate["mday"])."</td>";
242 if (($mydate["wday"] + 1) % 7 == $startday) echo "</TR>\n";
251 $mydate = dol_getdate($thedate);
252 if ($firstdate["month"] != $mydate["month"]) $stoploop = 1;
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/
H A Ddatepicker.php228 $mydate = dol_get_first_day_week(1, $month, $year, true); // mydate = cursor date
236 if ($mydate < $firstdate) { // At first run
243 $mydate = $firstdate;
250 if ($mydate["wday"] == $startday) {
270 …cho " onMouseOver=\"dpHighlightDay(".$mydate["year"].",parseInt('".dol_print_date($thedate, "%m").…
271 …echo " onClick=\"dpClickDay(".$mydate["year"].",parseInt('".dol_print_date($thedate, "%m")."',10),…
272 echo ">".sprintf("%02s", $mydate["mday"])."</td>";
275 if (($mydate["wday"] + 1) % 7 == $startday) {
285 $mydate = dol_getdate($thedate);
286 if ($firstdate["month"] != $mydate["month"]) {
/dports/databases/pear-DB_DataObject_FormBuilder/DB_DataObject_FormBuilder-1.0.2/tests/
H A Darray2date.phpt8 $mydate = array(
16 echo DB_DataObject_FormBuilder::_array2date($mydate)."\n";
17 $mydate = array(
25 echo DB_DataObject_FormBuilder::_array2date($mydate)."\n";
26 $mydate = array(
34 echo DB_DataObject_FormBuilder::_array2date($mydate)."\n";
/dports/devel/p5-Date-EzDate/Date-EzDate-1.16/t/
H A Dtest.t73 $mydate->{'dmy'} = '25OCT2001';
76 {$mydate->{'epochday'}++}
87 my ($orgstr, $mydate, $settings);
90 $mydate = Date::EzDate->new($orgstr);
103 my ($mydate, $olddate, $oldhour);
106 $olddate = $mydate->{'full'};
107 $oldhour = $mydate->{'hour'};
109 while ($mydate->{'year'} <= 2033) {
110 $mydate->{'epochday'} += 13;
118 $oldhour = $mydate->{'hour'};
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/tests/libslic3r/
H A Dtest_timeutils.cpp33 std::string mydate = "20190710T085000Z"; variable
34 time_t t = Slic3r::Utils::parse_iso_utc_timestamp(mydate);
37 REQUIRE(date == mydate);
44 std::string mydate = "2019-07-10 at 08:50:00 UTC"; variable
45 time_t t = Slic3r::Utils::str2time(mydate, TimeZone::utc, TimeFormat::gcode);
48 REQUIRE(date == mydate);
/dports/textproc/multimarkdown/MultiMarkdown-6-6.6.0/texmf/tex/latex/mmd6/beamer/
H A Dmmd6-beamer-begin.tex19 \ifx\mydate\undefined
20 \def\mydate{\today}
22 \date{\mydate}
27 \date[\mydate]{\mydate~ / \event }
/dports/science/berkeleygw/BGW-2.0.0/Common/
H A Dio_utils.f90109 character(len=15) :: mydate, mytime local
137 call date_and_time(mydate,mytime)
170 character(len=15) :: mydate, mytime local
200 call date_and_time(mydate,mytime)
227 character(len=15) :: mydate, mytime local
232 call date_and_time(mydate,mytime)
256 character(len=15) :: mydate, mytime local
264 call date_and_time(mydate,mytime)
/dports/science/qmcpack/qmcpack-3.11.0/tests/test_automation/nightly_test_scripts/
H A Dnightly_Ye_dell.sh57 mydate=`date +%y_%m_%d`
58 if [ ! -e $place/log/$entry/$mydate ];
60 mkdir -p $place/log/$entry/$mydate
102 …CMake/ctest_script.cmake,release -VV --timeout 600 &> $place/log/$entry/$mydate/${QMCPACK_TEST_SUB…
H A Dnightly_alcf_theta.sh77 mydate=`date +%y_%m_%d`
78 if [ ! -e $place/log/$entry/$mydate ];
80 mkdir -p $place/log/$entry/$mydate
99 --timeout 400 &> $place/log/$entry/$mydate/${QMCPACK_TEST_SUBMIT_NAME}.log
H A Dnightly_Ye_ryzen.sh65 mydate=`date +%y_%m_%d`
66 if [ ! -e $place/log/$entry/$mydate ];
68 mkdir -p $place/log/$entry/$mydate
108 …CMake/ctest_script.cmake,release -VV --timeout 600 &> $place/log/$entry/$mydate/${QMCPACK_TEST_SUB…
/dports/databases/percona56-server/percona-server-5.6.51-91.0/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/percona56-client/percona-server-5.6.51-91.0/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/mysql57-client/mysql-5.7.36/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate
/dports/databases/mysql56-client/mysql-5.6.51/mysql-test/r/
H A Dfunc_isnull.result2 create table t1 (id int auto_increment primary key not null, mydate date not null);
5 select * from t1 where isnull(to_days(mydate));
6 id mydate

12345678910>>...16