Lines Matching refs:CJS_PropValue
192 CJS_PropValue::CJS_PropValue(CJS_Runtime* pRuntime) in CJS_PropValue() function in CJS_PropValue
195 CJS_PropValue::CJS_PropValue(CJS_Runtime* pRuntime, const CJS_Value& value) in CJS_PropValue() function in CJS_PropValue
198 CJS_PropValue::~CJS_PropValue() {} in ~CJS_PropValue()
200 void CJS_PropValue::operator<<(int iValue) { in operator <<()
205 void CJS_PropValue::operator>>(int& iValue) const { in operator >>()
210 void CJS_PropValue::operator<<(bool bValue) { in operator <<()
215 void CJS_PropValue::operator>>(bool& bValue) const { in operator >>()
220 void CJS_PropValue::operator<<(double dValue) { in operator <<()
225 void CJS_PropValue::operator>>(double& dValue) const { in operator >>()
230 void CJS_PropValue::operator<<(CJS_Object* pObj) { in operator <<()
235 void CJS_PropValue::operator>>(CJS_Object*& ppObj) const { in operator >>()
240 void CJS_PropValue::operator<<(CJS_Document* pJsDoc) { in operator <<()
245 void CJS_PropValue::operator>>(CJS_Document*& ppJsDoc) const { in operator >>()
250 void CJS_PropValue::operator<<(v8::Local<v8::Object> pObj) { in operator <<()
255 void CJS_PropValue::operator>>(v8::Local<v8::Object>& ppObj) const { in operator >>()
260 void CJS_PropValue::operator<<(CFX_ByteString str) { in operator <<()
265 void CJS_PropValue::operator>>(CFX_ByteString& str) const { in operator >>()
270 void CJS_PropValue::operator<<(const FX_WCHAR* str) { in operator <<()
275 void CJS_PropValue::operator>>(CFX_WideString& wide_string) const { in operator >>()
280 void CJS_PropValue::operator<<(CFX_WideString wide_string) { in operator <<()
285 void CJS_PropValue::operator>>(CJS_Array& array) const { in operator >>()
290 void CJS_PropValue::operator<<(CJS_Array& array) { in operator <<()
295 void CJS_PropValue::operator>>(CJS_Date& date) const { in operator >>()
300 void CJS_PropValue::operator<<(CJS_Date& date) { in operator <<()