Lines Matching refs:CFXJSE_Value
67 CFXJSE_Value::CFXJSE_Value(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {} in CFXJSE_Value() function in CFXJSE_Value
69 CFXJSE_Value::~CFXJSE_Value() {} in ~CFXJSE_Value()
71 CFXJSE_HostObject* CFXJSE_Value::ToHostObject(CFXJSE_Class* lpClass) const { in ToHostObject()
84 void CFXJSE_Value::SetObject(CFXJSE_HostObject* lpObject, in SetObject()
94 void CFXJSE_Value::SetArray( in SetArray()
95 const std::vector<std::unique_ptr<CFXJSE_Value>>& values) { in SetArray()
106 void CFXJSE_Value::SetDate(double dDouble) { in SetDate()
112 void CFXJSE_Value::SetFloat(float fFloat) { in SetFloat()
118 bool CFXJSE_Value::SetObjectProperty(const ByteStringView& szPropName, in SetObjectProperty()
119 CFXJSE_Value* lpPropValue) { in SetObjectProperty()
136 bool CFXJSE_Value::GetObjectProperty(const ByteStringView& szPropName, in GetObjectProperty()
137 CFXJSE_Value* lpPropValue) { in GetObjectProperty()
153 bool CFXJSE_Value::SetObjectProperty(uint32_t uPropIdx, in SetObjectProperty()
154 CFXJSE_Value* lpPropValue) { in SetObjectProperty()
166 bool CFXJSE_Value::GetObjectPropertyByIdx(uint32_t uPropIdx, in GetObjectPropertyByIdx()
167 CFXJSE_Value* lpPropValue) { in GetObjectPropertyByIdx()
179 bool CFXJSE_Value::DeleteObjectProperty(const ByteStringView& szPropName) { in DeleteObjectProperty()
192 bool CFXJSE_Value::HasObjectOwnProperty(const ByteStringView& szPropName, in HasObjectOwnProperty()
210 bool CFXJSE_Value::SetObjectOwnProperty(const ByteStringView& szPropName, in SetObjectOwnProperty()
211 CFXJSE_Value* lpPropValue) { in SetObjectOwnProperty()
231 bool CFXJSE_Value::SetFunctionBind(CFXJSE_Value* lpOldFunction, in SetFunctionBind()
232 CFXJSE_Value* lpNewThis) { in SetFunctionBind()
264 bool CFXJSE_Value::IsUndefined() const { in IsUndefined()
273 bool CFXJSE_Value::IsNull() const { in IsNull()
282 bool CFXJSE_Value::IsBoolean() const { in IsBoolean()
291 bool CFXJSE_Value::IsString() const { in IsString()
300 bool CFXJSE_Value::IsNumber() const { in IsNumber()
309 bool CFXJSE_Value::IsInteger() const { in IsInteger()
318 bool CFXJSE_Value::IsObject() const { in IsObject()
327 bool CFXJSE_Value::IsArray() const { in IsArray()
336 bool CFXJSE_Value::IsFunction() const { in IsFunction()
345 bool CFXJSE_Value::IsDate() const { in IsDate()
354 bool CFXJSE_Value::ToBoolean() const { in ToBoolean()
361 float CFXJSE_Value::ToFloat() const { in ToFloat()
368 double CFXJSE_Value::ToDouble() const { in ToDouble()
375 int32_t CFXJSE_Value::ToInteger() const { in ToInteger()
382 ByteString CFXJSE_Value::ToString() const { in ToString()
391 void CFXJSE_Value::SetUndefined() { in SetUndefined()
397 void CFXJSE_Value::SetNull() { in SetNull()
403 void CFXJSE_Value::SetBoolean(bool bBoolean) { in SetBoolean()
409 void CFXJSE_Value::SetInteger(int32_t nInteger) { in SetInteger()
415 void CFXJSE_Value::SetDouble(double dDouble) { in SetDouble()
421 void CFXJSE_Value::SetString(const ByteStringView& szString) { in SetString()