Lines Matching refs:pValue
660 v8::Local<v8::Value> pValue) { in FXJS_PutArrayElement() argument
663 if (pArray->Set(pIsolate->GetCurrentContext(), index, pValue).IsNothing()) in FXJS_PutArrayElement()
728 int FXJS_ToInt32(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToInt32() argument
729 if (pValue.IsEmpty()) in FXJS_ToInt32()
732 return pValue->ToInt32(context).ToLocalChecked()->Value(); in FXJS_ToInt32()
735 bool FXJS_ToBoolean(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToBoolean() argument
736 if (pValue.IsEmpty()) in FXJS_ToBoolean()
739 return pValue->ToBoolean(context).ToLocalChecked()->Value(); in FXJS_ToBoolean()
742 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToNumber() argument
743 if (pValue.IsEmpty()) in FXJS_ToNumber()
746 return pValue->ToNumber(context).ToLocalChecked()->Value(); in FXJS_ToNumber()
750 v8::Local<v8::Value> pValue) { in FXJS_ToObject() argument
751 if (pValue.IsEmpty()) in FXJS_ToObject()
754 return pValue->ToObject(context).ToLocalChecked(); in FXJS_ToObject()
758 v8::Local<v8::Value> pValue) { in FXJS_ToString() argument
759 if (pValue.IsEmpty()) in FXJS_ToString()
762 v8::String::Utf8Value s(pValue->ToString(context).ToLocalChecked()); in FXJS_ToString()
767 v8::Local<v8::Value> pValue) { in FXJS_ToArray() argument
768 if (pValue.IsEmpty()) in FXJS_ToArray()
771 return v8::Local<v8::Array>::Cast(pValue->ToObject(context).ToLocalChecked()); in FXJS_ToArray()