Searched refs:objFuncPrototypeVal (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_lazy_callback.cpp | 31 JSHandle<JSTaggedValue> objFuncPrototypeVal = env->GetObjectFunctionPrototype(); in Date() local 33 builtin.InitializeDate(env, objFuncPrototypeVal); in Date() 47 JSHandle<JSTaggedValue> objFuncPrototypeVal = env->GetObjectFunctionPrototype(); in Set() local 48 builtin.InitializeSet(env, objFuncPrototypeVal); in Set() 62 JSHandle<JSTaggedValue> objFuncPrototypeVal = env->GetObjectFunctionPrototype(); in Map() local 63 builtin.InitializeMap(env, objFuncPrototypeVal); in Map() 139 JSHandle<JSTaggedValue> objFuncPrototypeVal = env->GetObjectFunctionPrototype(); in TypedArray() local 140 builtin.InitializeTypedArray(env, objFuncPrototypeVal); in TypedArray() 182 JSHandle<JSTaggedValue> objFuncPrototypeVal = env->GetObjectFunctionPrototype(); in DataView() local 183 builtin.InitializeDataView(env, objFuncPrototypeVal); in DataView() [all...] |
H A D | builtins.h | 81 void InitializeFunction(const JSHandle<GlobalEnv> &env, JSHandle<JSTaggedValue> &objFuncPrototypeVal) const; 101 void InitializeDate(const JSHandle<GlobalEnv> &env, JSHandle<JSTaggedValue> objFuncPrototypeVal) const; 110 void InitializeArray(const JSHandle<GlobalEnv> &env, const JSHandle<JSTaggedValue> &objFuncPrototypeVal) const; 119 void InitializeTypedArray(const JSHandle<GlobalEnv> &env, JSHandle<JSTaggedValue> objFuncPrototypeVal) const; 197 void InitializeSet(const JSHandle<GlobalEnv> &env, JSHandle<JSTaggedValue> objFuncPrototypeVal) const; 200 void InitializeMap(const JSHandle<GlobalEnv> &env, JSHandle<JSTaggedValue> objFuncPrototypeVal) const; 216 void InitializeMath(const JSHandle<GlobalEnv> &env, const JSHandle<JSTaggedValue> &objFuncPrototypeVal) const; 218 void InitializeAtomics(const JSHandle<GlobalEnv> &env, const JSHandle<JSTaggedValue> &objFuncPrototypeVal) const; 220 void InitializeJson(const JSHandle<GlobalEnv> &env, const JSHandle<JSTaggedValue> &objFuncPrototypeVal) const; 223 const JSHandle<JSTaggedValue> &objFuncPrototypeVal) cons [all...] |
H A D | builtins.cpp | 202 JSHandle<JSTaggedValue> objFuncPrototypeVal(objFuncPrototype); in Initialize() 206 factory_->NewEcmaHClass(JSObject::SIZE, JSType::JS_OBJECT, objFuncPrototypeVal); in Initialize() 212 globalObjFuncClass->SetPrototype(thread_, objFuncPrototypeVal.GetTaggedValue()); in Initialize() 217 factory_->NewEcmaHClass(JSPrimitiveRef::SIZE, JSType::JS_PRIMITIVE_REF, objFuncPrototypeVal); in Initialize() 235 InitializeFunction(env, objFuncPrototypeVal); in Initialize() 294 InitializeArray(env, objFuncPrototypeVal); in Initialize() 308 InitializeDate(env, objFuncPrototypeVal); in Initialize() 309 InitializeSet(env, objFuncPrototypeVal); in Initialize() 310 InitializeMap(env, objFuncPrototypeVal); in Initialize() 315 InitializeTypedArray(env, objFuncPrototypeVal); in Initialize() [all...] |
Completed in 5 milliseconds