Home | History | Annotate | Download | only in javascript

Lines Matching defs:CJS_Date

222 void CJS_Value::operator = (CJS_Date & date)

275 FX_BOOL CJS_Value::ConvertToDate(CJS_Date &date) const
433 void CJS_PropValue::operator>>(CJS_Date &date) const
439 void CJS_PropValue::operator<<(CJS_Date &date)
500 /* ======================================== CJS_Date ========================================= */
502 CJS_Date::CJS_Date(v8::Isolate* isolate) :m_isolate(isolate)
506 CJS_Date::CJS_Date(v8::Isolate* isolate,double dMsec_time)
512 CJS_Date::CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec)
518 double CJS_Date::MakeDate(int year, int mon, int day,int hour, int min, int sec,int ms)
523 CJS_Date::~CJS_Date()
527 FX_BOOL CJS_Date::IsValidDate()
533 void CJS_Date::Attach(v8::Handle<v8::Value> pDate)
538 int CJS_Date::GetYear()
546 void CJS_Date::SetYear(int iYear)
552 int CJS_Date::GetMonth()
560 void CJS_Date::SetMonth(int iMonth)
568 int CJS_Date::GetDay()
576 void CJS_Date::SetDay(int iDay)
584 int CJS_Date::GetHours()
592 void CJS_Date::SetHours(int iHours)
598 int CJS_Date::GetMinutes()
606 void CJS_Date::SetMinutes(int minutes)
612 int CJS_Date::GetSeconds()
620 void CJS_Date::SetSeconds(int seconds)
626 CJS_Date::operator v8::Handle<v8::Value>()
631 CJS_Date::operator double() const
638 CFX_WideString CJS_Date::ToString() const