Home
last modified time | relevance | path

Searched refs:SetFrozenFunction (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_private.cpp192 void ContainersPrivate::SetFrozenFunction(JSThread *thread, const JSHandle<JSObject> &obj, const ch… in SetFrozenFunction() function in panda::ecmascript::containers::ContainersPrivate
294 SetFrozenFunction(thread, prototype, "add", ContainersArrayList::Add, FuncLength::ONE); in InitializeArrayList()
295 SetFrozenFunction(thread, prototype, "insert", ContainersArrayList::Insert, FuncLength::TWO); in InitializeArrayList()
296 SetFrozenFunction(thread, prototype, "clear", ContainersArrayList::Clear, FuncLength::ZERO); in InitializeArrayList()
297 SetFrozenFunction(thread, prototype, "clone", ContainersArrayList::Clone, FuncLength::ZERO); in InitializeArrayList()
298 SetFrozenFunction(thread, prototype, "has", ContainersArrayList::Has, FuncLength::ONE); in InitializeArrayList()
299SetFrozenFunction(thread, prototype, "getCapacity", ContainersArrayList::GetCapacity, FuncLength::… in InitializeArrayList()
300 SetFrozenFunction(thread, prototype, "increaseCapacityTo", in InitializeArrayList()
302 SetFrozenFunction(thread, prototype, "trimToCurrentLength", in InitializeArrayList()
304SetFrozenFunction(thread, prototype, "getIndexOf", ContainersArrayList::GetIndexOf, FuncLength::ON… in InitializeArrayList()
[all …]
Dcontainers_private.h55 …static void SetFrozenFunction(JSThread *thread, const JSHandle<JSObject> &obj, const char *key, Ec…
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.h308 …void SetFrozenFunction(const JSHandle<GlobalEnv> &env, const JSHandle<JSObject> &obj, const char *…
Dbuiltins.cpp2988 void Builtins::SetFrozenFunction(const JSHandle<GlobalEnv> &env, const JSHandle<JSObject> &obj, con… in SetFrozenFunction() function in panda::ecmascript::Builtins
3748 SetFrozenFunction(env, arkPrivate, "Load", ContainersPrivate::Load, FunctionLength::ZERO); in InitializeArkPrivate()