Home | History | Annotate | Download | only in javascript

Lines Matching refs:CJS_PropValue

300 /* ---------------------------- CJS_PropValue ---------------------------- */
302 CJS_PropValue::CJS_PropValue(const CJS_Value &value) :
308 CJS_PropValue::CJS_PropValue(v8::Isolate* isolate) : CJS_Value(isolate),
313 CJS_PropValue::~CJS_PropValue()
317 FX_BOOL CJS_PropValue::IsSetting()
322 FX_BOOL CJS_PropValue::IsGetting()
327 void CJS_PropValue::operator <<(int iValue)
333 void CJS_PropValue::operator >>(int & iValue) const
340 void CJS_PropValue::operator <<(bool bValue)
346 void CJS_PropValue::operator >>(bool& bValue) const
352 void CJS_PropValue::operator <<(double dValue)
358 void CJS_PropValue::operator >>(double& dValue) const
364 void CJS_PropValue::operator <<(CJS_Object* pObj)
370 void CJS_PropValue::operator >>(CJS_Object*& ppObj) const
376 void CJS_PropValue::operator <<(CJS_Document* pJsDoc)
382 void CJS_PropValue::operator >>(CJS_Document*& ppJsDoc) const
388 void CJS_PropValue::operator<<(JSFXObject pObj)
394 void CJS_PropValue::operator>>(JSFXObject &ppObj) const
401 void CJS_PropValue::StartSetting()
406 void CJS_PropValue::StartGetting()
410 void CJS_PropValue::operator <<(CFX_ByteString string)
416 void CJS_PropValue::operator >>(CFX_ByteString &string) const
422 void CJS_PropValue::operator <<(FX_LPCWSTR c_string)
428 void CJS_PropValue::operator >>(CFX_WideString &wide_string) const
434 void CJS_PropValue::operator <<(CFX_WideString wide_string)
440 void CJS_PropValue::operator >>(CJS_Array &array) const
446 void CJS_PropValue::operator <<(CJS_Array &array)
452 void CJS_PropValue::operator>>(CJS_Date &date) const
458 void CJS_PropValue::operator<<(CJS_Date &date)
464 CJS_PropValue::operator v8::Local<v8::Value>() const