HomeSort by relevance Sort by last modified time
    Searched defs:CJS_Date (Results 1 - 2 of 2) sorted by null

  /external/pdfium/fpdfsdk/include/javascript/
JS_Value.h 11 class CJS_Date;
57 void operator = (CJS_Date &);
67 FX_BOOL ConvertToDate(CJS_Date &) const;
113 void operator<<(CJS_Date &date);
114 void operator>>(CJS_Date &date) const;
143 class CJS_Date
147 CJS_Date(v8::Isolate* isolate);
148 CJS_Date(v8::Isolate* isolate,double dMsec_time);
149 CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec);
150 virtual ~CJS_Date();
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 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)
    [all...]

Completed in 621 milliseconds