Home | History | Annotate | Download | only in javascript

Lines Matching refs:CJS_Date

67 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, const CJS_Date& date)
184 bool CJS_Value::ConvertToDate(CJS_Runtime* pRuntime, CJS_Date& date) const {
295 void CJS_PropValue::operator>>(CJS_Date& date) const {
300 void CJS_PropValue::operator<<(CJS_Date& date) {
344 CJS_Date::CJS_Date() {}
346 CJS_Date::CJS_Date(CJS_Runtime* pRuntime, double dMsecTime)
349 CJS_Date::CJS_Date(CJS_Runtime* pRuntime,
358 CJS_Date::~CJS_Date() {}
360 bool CJS_Date::IsValidDate(CJS_Runtime* pRuntime) const {
364 void CJS_Date::Attach(v8::Local<v8::Date> pDate) {
368 int CJS_Date::GetYear(CJS_Runtime* pRuntime) const {
375 void CJS_Date::SetYear(CJS_Runtime* pRuntime, int iYear) {
381 int CJS_Date::GetMonth(CJS_Runtime* pRuntime) const {
388 void CJS_Date::SetMonth(CJS_Runtime* pRuntime, int iMonth) {
394 int CJS_Date::GetDay(CJS_Runtime* pRuntime) const {
401 void CJS_Date::SetDay(CJS_Runtime* pRuntime, int iDay) {
407 int CJS_Date::GetHours(CJS_Runtime* pRuntime) const {
414 void CJS_Date::SetHours(CJS_Runtime* pRuntime, int iHours) {
420 int CJS_Date::GetMinutes(CJS_Runtime* pRuntime) const {
427 void CJS_Date::SetMinutes(CJS_Runtime* pRuntime, int minutes) {
433 int CJS_Date::GetSeconds(CJS_Runtime* pRuntime) const {
440 void CJS_Date::SetSeconds(CJS_Runtime* pRuntime, int seconds) {
446 double CJS_Date::ToDouble(CJS_Runtime* pRuntime) const {
450 CFX_WideString CJS_Date::ToString(CJS_Runtime* pRuntime) const {
455 v8::Local<v8::Date> CJS_Date::ToV8Date(CJS_Runtime* pRuntime) const {