Home | History | Annotate | Download | only in javascript

Lines Matching defs:CJS_Date

209 void CJS_Value::operator=(CJS_Date& date) {
265 FX_BOOL CJS_Value::ConvertToDate(CJS_Date& date) const {
394 void CJS_PropValue::operator>>(CJS_Date& date) const {
399 void CJS_PropValue::operator<<(CJS_Date& date) {
450 CJS_Date::CJS_Date(CJS_Runtime* pRuntime) : m_pJSRuntime(pRuntime) {
453 CJS_Date::CJS_Date(CJS_Runtime* pRuntime, double dMsecTime)
458 CJS_Date::CJS_Date(CJS_Runtime* pRuntime,
470 double CJS_Date::MakeDate(int year,
481 CJS_Date::~CJS_Date() {}
483 FX_BOOL CJS_Date::IsValidDate() {
489 void CJS_Date::Attach(v8::Local<v8::Value> pDate) {
493 int CJS_Date::GetYear() {
501 void CJS_Date::SetYear(int iYear) {
507 int CJS_Date::GetMonth() {
515 void CJS_Date::SetMonth(int iMonth) {
521 int CJS_Date::GetDay() {
529 void CJS_Date::SetDay(int iDay) {
535 int CJS_Date::GetHours() {
543 void CJS_Date::SetHours(int iHours) {
549 int CJS_Date::GetMinutes() {
557 void CJS_Date::SetMinutes(int minutes) {
563 int CJS_Date::GetSeconds() {
571 void CJS_Date::SetSeconds(int seconds) {
577 CJS_Date::operator v8::Local<v8::Value>() {
581 CJS_Date::operator double() const {
587 CFX_WideString CJS_Date::ToString() const {