Home
last modified time | relevance | path

Searched refs:setDate (Results 26 – 50 of 89) sorted by relevance

1234

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Fcmdata/
H A DGoogleFirebaseFcmDataV1beta1AndroidDeliveryData.php80 public function setDate(GoogleTypeDate $date) function in Google\\Service\\Fcmdata\\GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DEvent.php38 public function setDate(Date $date) function in Google\\Service\\PeopleService\\Event
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2DateTime.php36 public function setDate(GoogleTypeDate $date) function in Google\\Service\\DLP\\GooglePrivacyDlpV2DateTime
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DHolidaysHoliday.php64 public function setDate($date) function in Google\\Service\\ShoppingContent\\HolidaysHoliday
H A DRepricingRuleReport.php69 public function setDate(Date $date) function in Google\\Service\\ShoppingContent\\RepricingRuleReport
H A DRepricingProductReport.php83 public function setDate(Date $date) function in Google\\Service\\ShoppingContent\\RepricingProductReport
H A DSegments.php278 public function setDate(Date $date) function in Google\\Service\\ShoppingContent\\Segments
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Reports/
H A DUsageReport.php43 public function setDate($date) function in Google\\Service\\Reports\\UsageReport
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AlertCenter/
H A DGmailMessageInfo.php73 public function setDate($date) function in Google\\Service\\AlertCenter\\GmailMessageInfo
/plugin/zotero/tests/
H A DZoteroEntryTest.php22 $this->e->setDate(self::DATE);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DReview.php90 public function setDate($date) function in Google\\Service\\Books\\Review
/plugin/zotero/
H A DZoteroEntry.php54 public function setDate($value) function in ZoteroEntry
H A DTextZoteroRepository.php60 $e->setDate($columns[self::COLUMN_DATE]);
H A DFeedZoteroRepository.php103 if (isset($data->date)) { $e->setDate(html_entity_decode($data->date)); }
/plugin/socialshareprivacy2/JC/
H A Djquery.cookie.js46 t.setDate(t.getDate() + days);
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DDayOfMonthField.php51 $target->setDate($currentYear, $currentMonth, $adjusted);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DInlineTest.php549 $expected->setDate($year, $month, $day);
574 $expected->setDate($year, $month, $day);
/plugin/calendoku/
H A Dhelper.php83 $date->setDate(intval($year), intval($month), intval($day));
433 $date->setDate(intval($year), intval($month), intval($day));
/plugin/davcal/datetimepicker-2.4.5/
H A Djquery.datetimepicker.js962 dateTest.setDate(dateTest.getDate() + 1);
1204 d.setDate(date.getDate());
1254 _this.currentTime.setDate(
1285 _this.currentTime.setDate(
1479 start.setDate(start.getDate() - 1);
1579 start.setDate(d + 1);
1701 currentTime.setDate(1);
1704 currentTime.setDate($this.data('date'));
/plugin/datepicker/script/jscalendar-1.0/
H A Dcalendar-setup.js174 cal.setDate(params.date);
/plugin/confmanager/
H A Dscript.js26 expirationDate.setDate(expirationDate.getDate()+365);
/plugin/swiftmail/Swift/
H A DMessage.php84 $this->setDate(time());
367 public function setDate($date) function in Swift_Message
/plugin/davcal/
H A Dhelper.php813 $dtStart->setDate(intval($startDate[0]), intval($startDate[1]), intval($startDate[2]));
822 $dtEnd->setDate(intval($endDate[0]), intval($endDate[1]), intval($endDate[2]));
1338 $dtStart->setDate(intval($startDate[0]), intval($startDate[1]), intval($startDate[2]));
1345 $dtEnd->setDate(intval($endDate[0]), intval($endDate[1]), intval($endDate[2]));
/plugin/authgoogle/google/contrib/
H A DGoogle_ReportsService.php370 public function setDate( $date) { function in Google_UsageReport
/plugin/abc2/abc-libraries/abc2svg/
H A Dpage-1.js233 function strftime(sFormat,date){if(!(date instanceof Date))date=new Date();var nDay=date.getDay(),nDate=date.getDate(),nMonth=date.getMonth(),nYear=date.getFullYear(),nHour=date.getHours(),aDays=['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],aMonths=['January','February','March','April','May','June','July','August','September','October','November','December'],aDayCount=[0,31,59,90,120,151,181,212,243,273,304,334],isLeapYear=function(){return(nYear%4===0&&nYear%100!==0)||nYear%400===0},getThursday=function(){var target=new Date(date);target.setDate(nDate-((nDay+6)%7)+3);return target},zeroPad=function(nNum,nPad){return((Math.pow(10,nPad)+nNum)+'').slice(1)};return sFormat.replace(/%[a-z]/gi,function(sMatch){return(({'%a':aDays[nDay].slice(0,3),'%A':aDays[nDay],'%b':aMonths[nMonth].slice(0,3),'%B':aMonths[nMonth],'%c':date.toUTCString(),'%C':Math.floor(nYear/100),'%d':zeroPad(nDate,2),'%e':nDate,'%F':date.toISOString().slice(0,10),'%G':getThursday().getFullYear(),'%g':(getThursday().getFullYear()+'').slice(2),'%H':zeroPad(nHour,2),'%I':zeroPad((nHour+11)%12+1,2),'%j':zeroPad(aDayCount[nMonth]+nDate+((nMonth>1&&isLeapYear())?1:0),3),'%k':nHour,'%l':(nHour+11)%12+1,'%m':zeroPad(nMonth+1,2),'%n':nMonth+1,'%M':zeroPad(date.getMinutes(),2),'%p':(nHour<12)?'AM':'PM','%P':(nHour<12)?'am':'pm','%s':Math.round(date.getTime()/1000),'%S':zeroPad(date.getSeconds(),2),'%u':nDay||7,'%V':(function(){var target=getThursday(),n1stThu=target.valueOf();target.setMonth(0,1);var nJan1=target.getDay();if(nJan1!==4)target.setMonth(0,1+((4-nJan1)+7)%7);return zeroPad(1+Math.ceil((n1stThu-target)/604800000),2)})(),'%w':nDay,'%x':date.toLocaleDateString(),'%X':date.toLocaleTimeString(),'%y':(nYear+'').slice(2),'%Y':nYear,'%z':date.toTimeString().replace(/.+GMT([+-]\d+).+/,'$1'),'%Z':date.toTimeString().replace(/.+\((.+?)\)$/,'$1')}[sMatch]||'')+'')||sMatch})}

1234