Home
last modified time | relevance | path

Searched defs:thread (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/ark/js_runtime/ecmascript/
Ddump.cpp295 static void DumpArrayClass(JSThread *thread, const TaggedArray *arr, std::ostream &os) in DumpArrayClass()
329 static void DumpHClass(JSThread *thread, const JSHClass *jshclass, std::ostream &os, bool withDetai… in DumpHClass()
364 static void DumpDynClass(JSThread *thread, TaggedObject *obj, std::ostream &os) in DumpDynClass()
402 static void DumpObject(JSThread *thread, TaggedObject *obj, std::ostream &os) in DumpObject()
669 void JSTaggedValue::DumpSpecialValue([[maybe_unused]] JSThread *thread, std::ostream &os) const in DumpSpecialValue()
698 void JSTaggedValue::DumpHeapObjectType([[maybe_unused]] JSThread *thread, std::ostream &os) const in DumpHeapObjectType()
721 void JSTaggedValue::DumpTaggedValue(JSThread *thread, std::ostream &os) const in DumpTaggedValue()
735 void JSTaggedValue::Dump(JSThread *thread, std::ostream &os) const in Dump()
765 void NumberDictionary::Dump(JSThread *thread, std::ostream &os) const in Dump()
783 void NameDictionary::Dump(JSThread *thread, std::ostream &os) const in Dump()
[all …]
Djs_tagged_value.cpp34 JSHandle<EcmaString> GetTypeString(JSThread *thread, PreferredPrimitiveType type) in GetTypeString()
46 JSHandle<JSTaggedValue> JSTaggedValue::ToPropertyKey(JSThread *thread, const JSHandle<JSTaggedValue… in ToPropertyKey()
112 bool JSTaggedValue::Equal(JSThread *thread, const JSHandle<JSTaggedValue> &x, const JSHandle<JSTagg… in Equal()
252 ComparisonResult JSTaggedValue::Compare(JSThread *thread, const JSHandle<JSTaggedValue> &x, in Compare()
322 JSTaggedValue JSTaggedValue::ToPrimitive(JSThread *thread, const JSHandle<JSTaggedValue> &tagged, in ToPrimitive()
349 JSTaggedValue JSTaggedValue::OrdinaryToPrimitive(JSThread *thread, const JSHandle<JSTaggedValue> &t… in OrdinaryToPrimitive()
374 JSHandle<EcmaString> JSTaggedValue::ToString(JSThread *thread, const JSHandle<JSTaggedValue> &tagge… in ToString()
421 JSTaggedValue JSTaggedValue::CanonicalNumericIndexString(JSThread *thread, const JSHandle<JSTaggedV… in CanonicalNumericIndexString()
436 JSHandle<JSObject> JSTaggedValue::ToObject(JSThread *thread, const JSHandle<JSTaggedValue> &tagged) in ToObject()
482 OperationResult JSTaggedValue::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in GetProperty()
[all …]
Dtagged_tree.cpp23 JSHandle<Derived> TaggedTree<Derived>::Create(const JSThread *thread, int numberOfElements) in Create()
40 void TaggedTree<Derived>::InsertRebalance(const JSThread *thread, int index) in InsertRebalance()
81 void TaggedTree<Derived>::LeftRotate(const JSThread *thread, int index) in LeftRotate()
108 void TaggedTree<Derived>::RightRotate(const JSThread *thread, int index) in RightRotate()
135 JSHandle<Derived> TaggedTree<Derived>::AdjustTaggedTree(const JSThread *thread, const JSHandle<Deri… in AdjustTaggedTree()
177 void TaggedTree<Derived>::Transplant(const JSThread *thread, int dst, int src) in Transplant()
193 void TaggedTree<Derived>::Remove(const JSThread *thread, const JSHandle<Derived> &tree, int entry) in Remove()
221 void TaggedTree<Derived>::DeleteRebalance(const JSThread *thread, int index) in DeleteRebalance()
310 int TaggedTree<Derived>::FindEntry(JSThread *thread, const JSHandle<Derived> &tree, const JSHandle<… in FindEntry()
335 JSHandle<TaggedArray> TaggedTree<Derived>::GetSortArray(const JSThread *thread, const JSHandle<Deri… in GetSortArray()
[all …]
Dlinked_hash_table.cpp24 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::Create(const JSThread *thread, int numberOf… in Create()
40 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::Insert(const JSThread *thread, const JSHand… in Insert()
65 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::InsertWeakRef(const JSThread *thread, in InsertWeakRef()
93 void LinkedHashTable<Derived, HashObject>::Rehash(const JSThread *thread, Derived *newTable) in Rehash()
129 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::GrowCapacity(const JSThread *thread, in GrowCapacity()
142 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::Remove(const JSThread *thread, const JSHand… in Remove()
155 JSHandle<Derived> LinkedHashTable<Derived, HashObject>::Shrink(const JSThread *thread, const JSHand… in Shrink()
170 JSHandle<LinkedHashMap> LinkedHashMap::Create(const JSThread *thread, int numberOfElements) in Create()
175 JSHandle<LinkedHashMap> LinkedHashMap::Delete(const JSThread *thread, const JSHandle<LinkedHashMap>… in Delete()
181 JSHandle<LinkedHashMap> LinkedHashMap::Set(const JSThread *thread, const JSHandle<LinkedHashMap> &o… in Set()
[all …]
Djs_hclass.cpp30 JSHandle<TransitionsDictionary> TransitionsDictionary::PutIfAbsent(const JSThread *thread, in PutIfAbsent()
81 JSHandle<TransitionsDictionary> TransitionsDictionary::Remove(const JSThread *thread, in Remove()
95 void TransitionsDictionary::Rehash(const JSThread *thread, TransitionsDictionary *newTable) in Rehash()
123 void JSHClass::Initialize(const JSThread *thread, uint32_t size, JSType type, uint32_t inlinedProps) in Initialize()
148 JSHandle<JSHClass> JSHClass::Clone(const JSThread *thread, const JSHandle<JSHClass> &jshclass, in Clone()
167 JSHandle<JSHClass> JSHClass::CloneWithoutInlinedProperties(const JSThread *thread, const JSHandle<J… in CloneWithoutInlinedProperties()
172 void JSHClass::TransitionElementsToDictionary(const JSThread *thread, const JSHandle<JSObject> &obj) in TransitionElementsToDictionary()
182 void JSHClass::AddProperty(const JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JS… in AddProperty()
227 JSHandle<JSHClass> JSHClass::TransitionExtension(const JSThread *thread, const JSHandle<JSHClass> &… in TransitionExtension()
254 JSHandle<JSHClass> JSHClass::TransitionProto(const JSThread *thread, const JSHandle<JSHClass> &jshc… in TransitionProto()
[all …]
Dtagged_tree-inl.h35 void TaggedTree<Derived>::SetRoot(JSThread *thread, int index, JSTaggedValue key, JSTaggedValue val… in SetRoot()
45 void TaggedTree<Derived>::SetKey(const JSThread *thread, uint32_t entry, JSTaggedValue key) in SetKey()
52 void TaggedTree<Derived>::SetValue(const JSThread *thread, uint32_t entry, JSTaggedValue value) in SetValue()
59 void TaggedTree<Derived>::SetColor(const JSThread *thread, int entry, TreeColor color) in SetColor()
68 void TaggedTree<Derived>::SetParent(const JSThread *thread, int entry, JSTaggedValue value) in SetParent()
78 void TaggedTree<Derived>::SetLeftChild(const JSThread *thread, uint32_t entry, JSTaggedValue value) in SetLeftChild()
85 void TaggedTree<Derived>::SetRightChild(const JSThread *thread, uint32_t entry, JSTaggedValue value) in SetRightChild()
92 void TaggedTree<Derived>::SetCompare(const JSThread *thread, JSTaggedValue fn) in SetCompare()
138 void TaggedTree<Derived>::SetElement(const JSThread *thread, uint32_t index, JSTaggedValue element) in SetElement()
164 void TaggedTree<Derived>::SetNumberOfElements(const JSThread *thread, int num) in SetNumberOfElements()
[all …]
Dtagged_hash_table-inl.h43 void TaggedHashTable<Derived>::IncreaseEntries(const JSThread *thread) in IncreaseEntries()
49 void TaggedHashTable<Derived>::IncreaseHoleEntriesCount(const JSThread *thread, int number) in IncreaseHoleEntriesCount()
56 void TaggedHashTable<Derived>::SetEntriesCount(const JSThread *thread, int nof) in SetEntriesCount()
62 void TaggedHashTable<Derived>::SetHoleEntriesCount(const JSThread *thread, int nod) in SetHoleEntriesCount()
68 void TaggedHashTable<Derived>::SetHashTableSize(const JSThread *thread, int size) in SetHashTableSize()
74 void TaggedHashTable<Derived>::GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray… in GetAllKeys()
134 JSHandle<Derived> TaggedHashTable<Derived>::Shrink(const JSThread *thread, const JSHandle<Derived> … in Shrink()
169 void TaggedHashTable<Derived>::AddElement(const JSThread *thread, int entry, const JSHandle<JSTagge… in AddElement()
178 void TaggedHashTable<Derived>::RemoveElement(const JSThread *thread, int entry) in RemoveElement()
187 JSHandle<Derived> TaggedHashTable<Derived>::Insert(const JSThread *thread, JSHandle<Derived> &table, in Insert()
[all …]
Djs_function.cpp34 void JSFunction::InitializeJSFunction(JSThread *thread, const JSHandle<JSFunction> &func, FunctionK… in InitializeJSFunction()
76 JSHandle<JSObject> JSFunction::NewJSFunctionPrototype(JSThread *thread, ObjectFactory *factory, in NewJSFunctionPrototype()
93 JSHClass *JSFunction::GetOrCreateInitialJSHClass(JSThread *thread, const JSHandle<JSFunction> &fun) in GetOrCreateInitialJSHClass()
113 JSTaggedValue JSFunction::PrototypeGetter(JSThread *thread, const JSHandle<JSObject> &self) in PrototypeGetter()
123 bool JSFunction::PrototypeSetter(JSThread *thread, const JSHandle<JSObject> &self, const JSHandle<J… in PrototypeSetter()
142 JSTaggedValue JSFunction::NameGetter(JSThread *thread, const JSHandle<JSObject> &self) in NameGetter()
163 bool JSFunction::OrdinaryHasInstance(JSThread *thread, const JSHandle<JSTaggedValue> &constructor, in OrdinaryHasInstance()
214 bool JSFunction::MakeConstructor(JSThread *thread, const JSHandle<JSFunction> &func, in MakeConstructor()
250 JSTaggedValue JSFunction::Call(JSThread *thread, const JSHandle<JSTaggedValue> &func, in Call()
275 JSTaggedValue JSFunction::Construct(JSThread *thread, const JSHandle<JSTaggedValue> &func, uint32_t… in Construct()
[all …]
Djs_array.cpp27 JSTaggedValue JSArray::LengthGetter([[maybe_unused]] JSThread *thread, const JSHandle<JSObject> &se… in LengthGetter()
32 bool JSArray::LengthSetter(JSThread *thread, const JSHandle<JSObject> &self, const JSHandle<JSTagge… in LengthSetter()
52 JSHandle<JSTaggedValue> JSArray::ArrayCreate(JSThread *thread, JSTaggedNumber length) in ArrayCreate()
60 JSHandle<JSTaggedValue> JSArray::ArrayCreate(JSThread *thread, JSTaggedNumber length, in ArrayCreate()
89 JSTaggedValue JSArray::ArraySpeciesCreate(JSThread *thread, const JSHandle<JSObject> &originalArray, in ArraySpeciesCreate()
172 void JSArray::SetCapacity(JSThread *thread, const JSHandle<JSObject> &array, uint32_t oldLen, uint3… in SetCapacity()
221 bool JSArray::ArraySetLength(JSThread *thread, const JSHandle<JSObject> &array, const PropertyDescr… in ArraySetLength()
292 bool JSArray::PropertyKeyToArrayIndex(JSThread *thread, const JSHandle<JSTaggedValue> &key, uint32_… in PropertyKeyToArrayIndex()
298 bool JSArray::DefineOwnProperty(JSThread *thread, const JSHandle<JSObject> &array, const JSHandle<J… in DefineOwnProperty()
322 bool JSArray::DefineOwnProperty(JSThread *thread, const JSHandle<JSObject> &array, uint32_t index, in DefineOwnProperty()
[all …]
Djs_api_arraylist.cpp25 bool JSAPIArrayList::Add(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in Add()
37 void JSAPIArrayList::Insert(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in Insert()
54 void JSAPIArrayList::Clear(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList) in Clear()
61 JSHandle<JSAPIArrayList> JSAPIArrayList::Clone(JSThread *thread, const JSHandle<JSAPIArrayList> &ob… in Clone()
77 uint32_t JSAPIArrayList::GetCapacity(JSThread *thread, const JSHandle<JSAPIArrayList> &obj) in GetCapacity()
85 void JSAPIArrayList::IncreaseCapacityTo(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in IncreaseCapacityTo()
99 void JSAPIArrayList::TrimToCurrentLength(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayLis… in TrimToCurrentLength()
108 JSTaggedValue JSAPIArrayList::Get(JSThread *thread, const uint32_t index) in Get()
123 int JSAPIArrayList::GetIndexOf(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in GetIndexOf()
139 int JSAPIArrayList::GetLastIndexOf(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in GetLastIndexOf()
[all …]
Dtagged_dictionary.cpp42 void NameDictionary::GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const in GetAllKeys() argument
62 void NameDictionary::GetAllEnumKeys(const JSThread *thread, int offset, TaggedArray *keyArray, uint… in GetAllEnumKeys() argument
85 JSHandle<NameDictionary> NameDictionary::Create(const JSThread *thread, int numberOfElements) in Create()
96 void NameDictionary::SetAttributes(const JSThread *thread, int entry, const PropertyAttributes &met… in SetAttributes()
102 void NameDictionary::SetEntry(const JSThread *thread, int entry, const JSTaggedValue &key, const JS… in SetEntry()
110 void NameDictionary::UpdateValueAndAttributes(const JSThread *thread, int entry, const JSTaggedValu… in UpdateValueAndAttributes()
117 void NameDictionary::UpdateValue(const JSThread *thread, int entry, const JSTaggedValue &value) in UpdateValue()
122 void NameDictionary::ClearEntry(const JSThread *thread, int entry) in ClearEntry()
155 void NumberDictionary::GetAllKeys(const JSThread *thread, const JSHandle<NumberDictionary> &obj, in… in GetAllKeys()
179 void NumberDictionary::GetAllEnumKeys(const JSThread *thread, const JSHandle<NumberDictionary> &obj… in GetAllEnumKeys()
[all …]
Djs_object.cpp69 JSHandle<TaggedArray> JSObject::GrowElementsCapacity(const JSThread *thread, const JSHandle<JSObjec… in GrowElementsCapacity()
82 bool JSObject::IsRegExp(JSThread *thread, const JSHandle<JSTaggedValue> &argument) in IsRegExp()
97 JSHandle<NameDictionary> JSObject::TransitionToDictionary(const JSThread *thread, const JSHandle<JS… in TransitionToDictionary()
147 void JSObject::ElementsToDictionary(const JSThread *thread, JSHandle<JSObject> obj) in ElementsToDictionary()
171 bool JSObject::IsArrayLengthWritable(JSThread *thread, const JSHandle<JSObject> &receiver) in IsArrayLengthWritable()
184 bool JSObject::AddElementInternal(JSThread *thread, const JSHandle<JSObject> &receiver, uint32_t in… in AddElementInternal()
228 void JSObject::DeletePropertyInternal(JSThread *thread, const JSHandle<JSObject> &obj, in DeletePropertyInternal()
254 void JSObject::GetAllKeys(const JSThread *thread, const JSHandle<JSObject> &obj, int offset, in GetAllKeys()
278 void JSObject::GetAllKeys(const JSThread *thread, const JSHandle<JSObject> &obj, in GetAllKeys()
296 JSHandle<TaggedArray> JSObject::GetAllEnumKeys(const JSThread *thread, const JSHandle<JSObject> &ob… in GetAllEnumKeys()
[all …]
Dgenerator_helper.cpp23 JSHandle<JSObject> GeneratorHelper::Next(JSThread *thread, const JSHandle<GeneratorContext> &genCon… in Next()
42 JSHandle<JSObject> GeneratorHelper::Return(JSThread *thread, const JSHandle<GeneratorContext> &genC… in Return()
59 JSHandle<JSObject> GeneratorHelper::Throw(JSThread *thread, const JSHandle<GeneratorContext> &genCo… in Throw()
80 void GeneratorHelper::ChangeGenContext(JSThread *thread, const JSHandle<GeneratorContext> &genConte… in ChangeGenContext()
87 void GeneratorHelper::ResumeContext(JSThread *thread) in ResumeContext()
/ark/runtime_core/runtime/
Dexceptions.cpp37 void ThrowException(LanguageContext ctx, ManagedThread *thread, const uint8_t *mutf8_name, const ui… in ThrowException()
42 static LanguageContext GetLanguageContext(ManagedThread *thread) in GetLanguageContext()
57 auto *thread = ManagedThread::GetCurrent(); in ThrowNullPointerException() local
62 void ThrowNullPointerException(LanguageContext ctx, ManagedThread *thread) in ThrowNullPointerException()
69 auto *thread = ManagedThread::GetCurrent(); in ThrowArrayIndexOutOfBoundsException() local
75 LanguageContext ctx, ManagedThread *thread) in ThrowArrayIndexOutOfBoundsException()
86 auto *thread = ManagedThread::GetCurrent(); in ThrowIndexOutOfBoundsException() local
97 auto *thread = ManagedThread::GetCurrent(); in ThrowIllegalStateException() local
104 auto *thread = ManagedThread::GetCurrent(); in ThrowStringIndexOutOfBoundsException() local
116 auto *thread = ManagedThread::GetCurrent(); in ThrowNegativeArraySizeException() local
[all …]
Dthread_manager.cpp78 MTManagedThread *thread = *i; in IsThreadExists() local
92 MTManagedThread *thread = *i; in GetThreadIdByInternalThreadId() local
105 MTManagedThread *thread = *i; in GetThreadByInternalThreadIdWithLockHeld() local
125 MTManagedThread *thread = *i; in DeregisterSuspendedThreads() local
174 for (const auto &thread : daemon_threads_) { in WaitForDeregistration() local
184 MTManagedThread *thread = *i; in StopDaemonThreads() local
213 [cur_thread](MTManagedThread *thread) { in SuspendAllThreads()
232 [cur_thread](MTManagedThread *thread) { in ResumeAllThreads()
241 bool ThreadManager::UnregisterExitedThread(MTManagedThread *thread) in UnregisterExitedThread()
287 for (const auto &thread : threads_) { in DumpUnattachedThreads() local
[all …]
/ark/runtime_core/runtime/tooling/
Dpt_hooks_wrapper.h102 void Breakpoint(PtThread thread, const PtLocation &location) override in Breakpoint()
138 void Exception(PtThread thread, const PtLocation &location, PtObject exceptionObject, in Exception()
151 …void ExceptionCatch(PtThread thread, const PtLocation &location, PtObject exceptionObject) override in ExceptionCatch()
163 …void PropertyAccess(PtThread thread, const PtLocation &location, PtObject object, PtProperty prope… in PropertyAccess()
175 …void PropertyModification(PtThread thread, const PtLocation &location, PtObject object, PtProperty… in PropertyModification()
188 void FramePop(PtThread thread, PtMethod method, bool wasPoppedByException) override in FramePop()
224 void MethodEntry(PtThread thread, PtMethod method) override in MethodEntry()
236 …void MethodExit(PtThread thread, PtMethod method, bool wasPoppedByException, PtValue returnValue) … in MethodExit()
248 void SingleStep(PtThread thread, const PtLocation &location) override in SingleStep()
260 void ThreadStart(PtThread thread) override in ThreadStart()
[all …]
/ark/js_runtime/ecmascript/containers/
Dcontainers_arraylist.cpp34 JSThread *thread = argv->GetThread(); in ArrayListConstructor() local
54 JSThread *thread = argv->GetThread(); in Add() local
70 JSThread *thread = argv->GetThread(); in Insert() local
92 JSThread *thread = argv->GetThread(); in Clear() local
109 JSThread *thread = argv->GetThread(); in Clone() local
126 JSThread *thread = argv->GetThread(); in Has() local
145 JSThread *thread = argv->GetThread(); in GetCapacity() local
161 JSThread *thread = argv->GetThread(); in IncreaseCapacityTo() local
184 JSThread *thread = argv->GetThread(); in TrimToCurrentLength() local
201 JSThread *thread = argv->GetThread(); in Get() local
[all …]
Dcontainers_treemap.cpp30 JSThread *thread = argv->GetThread(); in TreeMapConstructor() local
66 JSThread *thread = argv->GetThread(); in Set() local
87 JSThread *thread = argv->GetThread(); in Get() local
103 JSThread *thread = argv->GetThread(); in Remove() local
119 JSThread *thread = argv->GetThread(); in HasKey() local
138 JSThread *thread = argv->GetThread(); in HasValue() local
154 JSThread *thread = argv->GetThread(); in GetFirstKey() local
169 JSThread *thread = argv->GetThread(); in GetLastKey() local
184 JSThread *thread = argv->GetThread(); in SetAll() local
210 JSThread *thread = argv->GetThread(); in Clear() local
[all …]
Dcontainers_treeset.cpp30 JSThread *thread = argv->GetThread(); in TreeSetConstructor() local
65 JSThread *thread = argv->GetThread(); in Add() local
83 JSThread *thread = argv->GetThread(); in Remove() local
99 JSThread *thread = argv->GetThread(); in Has() local
118 JSThread *thread = argv->GetThread(); in GetFirstValue() local
133 JSThread *thread = argv->GetThread(); in GetLastValue() local
148 JSThread *thread = argv->GetThread(); in Clear() local
163 JSThread *thread = argv->GetThread(); in GetLowerValue() local
181 JSThread *thread = argv->GetThread(); in GetHigherValue() local
201 JSThread *thread = argv->GetThread(); in PopFirst() local
[all …]
/ark/js_runtime/ecmascript/builtins/
Dbuiltins_math.cpp34 JSThread *thread = argv->GetThread(); in Abs() local
52 JSThread *thread = argv->GetThread(); in Acos() local
70 JSThread *thread = argv->GetThread(); in Acosh() local
87 JSThread *thread = argv->GetThread(); in Asin() local
104 JSThread *thread = argv->GetThread(); in Asinh() local
122 JSThread *thread = argv->GetThread(); in Atan() local
140 JSThread *thread = argv->GetThread(); in Atanh() local
157 JSThread *thread = argv->GetThread(); in Atan2() local
186 JSThread *thread = argv->GetThread(); in Cbrt() local
204 JSThread *thread = argv->GetThread(); in Ceil() local
[all …]
Dbuiltins_reflect.cpp26 JSThread *thread = argv->GetThread(); in ReflectApply() local
52 JSThread *thread = argv->GetThread(); in ReflectConstruct() local
83 JSThread *thread = argv->GetThread(); in ReflectDefineProperty() local
107 JSThread *thread = argv->GetThread(); in ReflectDeleteProperty() local
126 JSThread *thread = argv->GetThread(); in ReflectGet() local
152 JSThread *thread = argv->GetThread(); in ReflectGetOwnPropertyDescriptor() local
178 JSThread *thread = argv->GetThread(); in ReflectGetPrototypeOf() local
195 JSThread *thread = argv->GetThread(); in ReflectHas() local
213 JSThread *thread = argv->GetThread(); in ReflectIsExtensible() local
229 JSThread *thread = argv->GetThread(); in ReflectOwnKeys() local
[all …]
Dbuiltins_object.cpp34 JSThread *thread = argv->GetThread(); in ObjectConstructor() local
65 JSThread *thread = argv->GetThread(); in Assign() local
130 JSTaggedValue BuiltinsObject::ObjectDefineProperties(JSThread *thread, const JSHandle<JSTaggedValue… in ObjectDefineProperties()
210 JSThread *thread = argv->GetThread(); in Create() local
239 JSThread *thread = argv->GetThread(); in DefineProperties() local
250 JSThread *thread = argv->GetThread(); in DefineProperty() local
294 JSThread *thread = argv->GetThread(); in Freeze() local
318 JSThread *thread = argv->GetThread(); in GetOwnPropertyDesciptor() local
348 JSTaggedValue BuiltinsObject::GetOwnPropertyKeys(JSThread *thread, const JSHandle<JSTaggedValue> &o… in GetOwnPropertyKeys()
434 JSThread *thread = argv->GetThread(); in GetPrototypeOf() local
[all …]
/ark/js_runtime/ecmascript/base/
Dtyped_array_helper-inl.h82 DataViewType TypedArrayHelper::GetTypeFromName(JSThread *thread, const JSHandle<JSTaggedValue> &typ… in GetTypeFromName()
112 JSHandle<JSTaggedValue> TypedArrayHelper::GetConstructor(JSThread *thread, const JSHandle<JSTaggedV… in GetConstructor()
138 JSHandle<JSFunction> TypedArrayHelper::GetConstructorFromName(JSThread *thread, const JSHandle<JSTa… in GetConstructorFromName()
169 int32_t TypedArrayHelper::GetSizeFromName(JSThread *thread, const JSHandle<JSTaggedValue> &typeName) in GetSizeFromName()
190 int32_t TypedArrayHelper::GetByteOffset(JSThread *thread, const JSHandle<JSObject> &obj) in GetByteOffset()
196 int32_t TypedArrayHelper::GetArrayLength(JSThread *thread, const JSHandle<JSObject> &obj) in GetArrayLength()
/ark/js_runtime/ecmascript/ic/
Dic_handler-inl.h25 JSHandle<JSTaggedValue> LoadHandler::LoadElement(const JSThread *thread) in LoadElement()
32 JSHandle<JSTaggedValue> LoadHandler::LoadProperty(const JSThread *thread, const ObjectOperator &op) in LoadProperty()
66 JSHandle<JSTaggedValue> PrototypeHandler::LoadPrototype(const JSThread *thread, in LoadPrototype()
82 JSHandle<JSTaggedValue> PrototypeHandler::StorePrototype(const JSThread *thread, in StorePrototype()
96 JSHandle<JSTaggedValue> StoreHandler::StoreElement(const JSThread *thread, JSHandle<JSTaggedValue> … in StoreElement()
107 JSHandle<JSTaggedValue> StoreHandler::StoreProperty(const JSThread *thread, const ObjectOperator &o… in StoreProperty()
134 JSHandle<JSTaggedValue> TransitionHandler::StoreTransition(const JSThread *thread, const ObjectOper… in StoreTransition()
/ark/js_runtime/ecmascript/interpreter/
Dslow_runtime_stub.cpp48 JSTaggedValue SlowRuntimeStub::CallSpreadDyn(JSThread *thread, JSTaggedValue func, JSTaggedValue ob… in CallSpreadDyn()
70 JSTaggedValue SlowRuntimeStub::NegDyn(JSThread *thread, JSTaggedValue value) in NegDyn()
96 JSTaggedValue SlowRuntimeStub::AsyncFunctionEnter(JSThread *thread) in AsyncFunctionEnter()
124 JSTaggedValue SlowRuntimeStub::ToNumber(JSThread *thread, JSTaggedValue value) in ToNumber()
134 JSTaggedValue SlowRuntimeStub::NotDyn(JSThread *thread, JSTaggedValue value) in NotDyn()
149 JSTaggedValue SlowRuntimeStub::IncDyn(JSThread *thread, JSTaggedValue value) in IncDyn()
165 JSTaggedValue SlowRuntimeStub::DecDyn(JSThread *thread, JSTaggedValue value) in DecDyn()
181 void SlowRuntimeStub::ThrowDyn(JSThread *thread, JSTaggedValue value) in ThrowDyn()
187 JSTaggedValue SlowRuntimeStub::GetPropIterator(JSThread *thread, JSTaggedValue value) in GetPropIterator()
198 void SlowRuntimeStub::ThrowConstAssignment(JSThread *thread, JSTaggedValue value) in ThrowConstAssignment()
[all …]

12345678910>>...15