Lines Matching refs:pObj
55 auto pObj = JSGetObject<CJS_Global>(info.GetIsolate(), info.Holder()); in queryprop_static() local
56 if (!pObj) in queryprop_static()
60 if (pObj->HasProperty(bsProp)) in queryprop_static()
68 auto pObj = JSGetObject<CJS_Global>(info.GetIsolate(), info.Holder()); in getprop_static() local
69 if (!pObj) in getprop_static()
72 CJS_Runtime* pRuntime = pObj->GetRuntime(); in getprop_static()
77 CJS_Result result = pObj->GetProperty(pRuntime, bsProp); in getprop_static()
92 auto pObj = JSGetObject<CJS_Global>(info.GetIsolate(), info.Holder()); in putprop_static() local
93 if (!pObj) in putprop_static()
96 CJS_Runtime* pRuntime = pObj->GetRuntime(); in putprop_static()
101 CJS_Result result = pObj->SetProperty(pRuntime, bsProp, value); in putprop_static()
114 auto pObj = JSGetObject<CJS_Global>(info.GetIsolate(), info.Holder()); in delprop_static() local
115 if (!pObj) in delprop_static()
119 if (pObj->DelProperty(bsProp)) in delprop_static()
125 auto pObj = JSGetObject<CJS_Global>(info.GetIsolate(), info.Holder()); in enumprop_static() local
126 if (!pObj) in enumprop_static()
129 CJS_Runtime* pRuntime = pObj->GetRuntime(); in enumprop_static()
133 pObj->EnumProperties(pRuntime, info); in enumprop_static()
302 v8::Local<v8::Object> pObj = pRuntime->NewObject(); in UpdateGlobalPersistentVariables() local
303 if (!pObj.IsEmpty()) { in UpdateGlobalPersistentVariables()
304 PutObjectProperty(pObj, &pData->data); in UpdateGlobalPersistentVariables()
306 false, ByteString(), pObj, pData->bPersistent); in UpdateGlobalPersistentVariables()
308 pData->data.sKey.AsStringView(), pObj); in UpdateGlobalPersistentVariables()
364 v8::Local<v8::Object> pObj) { in ObjectToArray() argument
366 std::vector<WideString> pKeyList = pRuntime->GetObjectPropertyNames(pObj); in ObjectToArray()
370 pRuntime->GetObjectProperty(pObj, sKey.AsStringView()); in ObjectToArray()
414 void CJS_Global::PutObjectProperty(v8::Local<v8::Object> pObj, in PutObjectProperty() argument
424 pRuntime->PutObjectProperty(pObj, pObjData->sKey.AsStringView(), in PutObjectProperty()
428 pRuntime->PutObjectProperty(pObj, pObjData->sKey.AsStringView(), in PutObjectProperty()
433 pObj, pObjData->sKey.AsStringView(), in PutObjectProperty()
440 pRuntime->PutObjectProperty(pObj, pObjData->sKey.AsStringView(), in PutObjectProperty()
445 pRuntime->PutObjectProperty(pObj, pObjData->sKey.AsStringView(), in PutObjectProperty()