• Home
  • Raw
  • Download

Lines Matching refs:CJS_Global

126 CJS_Global::JSGlobalData::JSGlobalData() = default;
128 CJS_Global::JSGlobalData::~JSGlobalData() = default;
130 const JSMethodSpec CJS_Global::MethodSpecs[] = {
133 int CJS_Global::ObjDefnID = -1;
136 void CJS_Global::setPersistent_static( in setPersistent_static()
138 JSMethod<CJS_Global, &CJS_Global::setPersistent>("setPersistent", "global", in setPersistent_static()
143 void CJS_Global::queryprop_static( in queryprop_static()
147 JSSpecialPropQuery<CJS_Global>( in queryprop_static()
155 void CJS_Global::getprop_static( in getprop_static()
159 JSSpecialPropGet<CJS_Global>( in getprop_static()
167 void CJS_Global::putprop_static( in putprop_static()
172 JSSpecialPropPut<CJS_Global>( in putprop_static()
180 void CJS_Global::delprop_static( in delprop_static()
184 JSSpecialPropDel<CJS_Global>( in delprop_static()
192 void CJS_Global::DefineAllProperties(CFXJS_Engine* pEngine) { in DefineAllProperties()
194 ObjDefnID, CJS_Global::queryprop_static, CJS_Global::getprop_static, in DefineAllProperties()
195 CJS_Global::putprop_static, CJS_Global::delprop_static); in DefineAllProperties()
199 int CJS_Global::GetObjDefnID() { in GetObjDefnID()
204 void CJS_Global::DefineJSObjects(CFXJS_Engine* pEngine) { in DefineJSObjects()
206 JSConstructor<CJS_Global>, JSDestructor); in DefineJSObjects()
211 CJS_Global::CJS_Global(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) in CJS_Global() function in CJS_Global
219 CJS_Global::~CJS_Global() { in ~CJS_Global()
224 CJS_Result CJS_Global::QueryProperty(const wchar_t* propname) { in QueryProperty()
231 CJS_Result CJS_Global::DelProperty(CJS_Runtime* pRuntime, in DelProperty()
241 CJS_Result CJS_Global::GetProperty(CJS_Runtime* pRuntime, in GetProperty()
270 CJS_Result CJS_Global::SetProperty(CJS_Runtime* pRuntime, in SetProperty()
304 CJS_Result CJS_Global::setPersistent( in setPersistent()
318 void CJS_Global::UpdateGlobalPersistentVariables() { in UpdateGlobalPersistentVariables()
374 void CJS_Global::CommitGlobalPersisitentVariables(CJS_Runtime* pRuntime) { in CommitGlobalPersisitentVariables()
411 void CJS_Global::ObjectToArray( in ObjectToArray()
462 void CJS_Global::PutObjectProperty(v8::Local<v8::Object> pObj, in PutObjectProperty()
502 void CJS_Global::DestroyGlobalPersisitentVariables() { in DestroyGlobalPersisitentVariables()
506 CJS_Result CJS_Global::SetGlobalVariables(const ByteString& propname, in SetGlobalVariables()