• Home
  • Raw
  • Download

Lines Matching refs:hObject

89   v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance();  in SetObject()  local
90 FXJSE_UpdateObjectBinding(hObject, lpObject); in SetObject()
91 m_hValue.Reset(m_pIsolate, hObject); in SetObject()
122 v8::Local<v8::Value> hObject = in SetObjectProperty() local
124 if (!hObject->IsObject()) in SetObjectProperty()
129 return (bool)hObject.As<v8::Object>()->Set( in SetObjectProperty()
140 v8::Local<v8::Value> hObject = in GetObjectProperty() local
142 if (!hObject->IsObject()) in GetObjectProperty()
146 hObject.As<v8::Object>()->Get(v8::String::NewFromUtf8( in GetObjectProperty()
156 v8::Local<v8::Value> hObject = in SetObjectProperty() local
158 if (!hObject->IsObject()) in SetObjectProperty()
163 return (bool)hObject.As<v8::Object>()->Set(uPropIdx, hPropValue); in SetObjectProperty()
169 v8::Local<v8::Value> hObject = in GetObjectPropertyByIdx() local
171 if (!hObject->IsObject()) in GetObjectPropertyByIdx()
174 v8::Local<v8::Value> hPropValue = hObject.As<v8::Object>()->Get(uPropIdx); in GetObjectPropertyByIdx()
181 v8::Local<v8::Value> hObject = in DeleteObjectProperty() local
183 if (!hObject->IsObject()) in DeleteObjectProperty()
186 hObject.As<v8::Object>()->Delete(v8::String::NewFromUtf8( in DeleteObjectProperty()
195 v8::Local<v8::Value> hObject = in HasObjectOwnProperty() local
197 if (!hObject->IsObject()) in HasObjectOwnProperty()
203 return hObject.As<v8::Object>()->HasRealNamedProperty(hKey) || in HasObjectOwnProperty()
205 hObject.As<v8::Object>() in HasObjectOwnProperty()
214 v8::Local<v8::Value> hObject = in SetObjectOwnProperty() local
216 if (!hObject->IsObject()) in SetObjectOwnProperty()
221 return hObject.As<v8::Object>() in SetObjectOwnProperty()