• Home
  • Raw
  • Download

Lines Matching refs:ObjectFastOperator

49 std::pair<JSTaggedValue, bool> ObjectFastOperator::HasOwnProperty(JSThread *thread,  in HasOwnProperty()
112 template<ObjectFastOperator::Status status>
113 JSTaggedValue ObjectFastOperator::GetPropertyByName(JSThread *thread, JSTaggedValue receiver, in GetPropertyByName()
183 template<ObjectFastOperator::Status status>
184 JSTaggedValue ObjectFastOperator::SetPropertyByName(JSThread *thread, JSTaggedValue receiver, JSTag… in SetPropertyByName()
310 template<ObjectFastOperator::Status status>
311 JSTaggedValue ObjectFastOperator::GetPropertyByIndex(JSThread *thread, JSTaggedValue receiver, uint… in GetPropertyByIndex()
364 template<ObjectFastOperator::Status status>
365 JSTaggedValue ObjectFastOperator::SetPropertyByIndex(JSThread *thread, JSTaggedValue receiver, uint… in SetPropertyByIndex()
442 template<ObjectFastOperator::Status status>
443 JSTaggedValue ObjectFastOperator::GetPropertyByValue(JSThread *thread, JSTaggedValue receiver, JSTa… in GetPropertyByValue()
463 return ObjectFastOperator::GetPropertyByName<status>(thread, receiver, key); in GetPropertyByValue()
468 template<ObjectFastOperator::Status status>
469 JSTaggedValue ObjectFastOperator::SetPropertyByValue(JSThread *thread, JSTaggedValue receiver, JSTa… in SetPropertyByValue()
497 … return ObjectFastOperator::SetPropertyByName<status>(thread, receiver, key, value, sCheckMode); in SetPropertyByValue()
502 bool ObjectFastOperator::FastSetPropertyByValue(JSThread *thread, JSTaggedValue receiver, JSTaggedV… in FastSetPropertyByValue()
506 JSTaggedValue result = ObjectFastOperator::SetPropertyByValue(thread, receiver, key, value); in FastSetPropertyByValue()
516 bool ObjectFastOperator::FastSetPropertyByIndex(JSThread *thread, JSTaggedValue receiver, uint32_t … in FastSetPropertyByIndex()
520 JSTaggedValue result = ObjectFastOperator::SetPropertyByIndex(thread, receiver, index, value); in FastSetPropertyByIndex()
528 JSTaggedValue ObjectFastOperator::FastGetPropertyByName(JSThread *thread, JSTaggedValue receiver, in FastGetPropertyByName()
539 …JSTaggedValue result = ObjectFastOperator::GetPropertyByName<Status::GetInternal>(thread, receiver… in FastGetPropertyByName()
547 JSTaggedValue ObjectFastOperator::FastGetPropertyByValue(JSThread *thread, JSTaggedValue receiver, … in FastGetPropertyByValue()
550 JSTaggedValue result = ObjectFastOperator::GetPropertyByValue(thread, receiver, key); in FastGetPropertyByValue()
558 JSTaggedValue ObjectFastOperator::FastGetPropertyByIndex(JSThread *thread, JSTaggedValue receiver, … in FastGetPropertyByIndex()
561 JSTaggedValue result = ObjectFastOperator::GetPropertyByIndex(thread, receiver, index); in FastGetPropertyByIndex()
569 JSTaggedValue ObjectFastOperator::FastParseDate(const EcmaString *str) in FastParseDate()
600 PropertyAttributes ObjectFastOperator::AddPropertyByName(JSThread *thread, JSHandle<JSObject> objHa… in AddPropertyByName()
676 JSTaggedValue ObjectFastOperator::CallGetter(JSThread *thread, JSTaggedValue receiver, JSTaggedValu… in CallGetter()
691 JSTaggedValue ObjectFastOperator::CallSetter(JSThread *thread, JSTaggedValue receiver, JSTaggedValu… in CallSetter()
706 bool ObjectFastOperator::ShouldCallSetter(JSTaggedValue receiver, JSTaggedValue holder, JSTaggedVal… in ShouldCallSetter()
718 bool ObjectFastOperator::IsSpecialIndexedObj(JSType jsType) in IsSpecialIndexedObj()
723 bool ObjectFastOperator::IsFastTypeArray(JSType jsType) in IsFastTypeArray()
728 JSTaggedValue ObjectFastOperator::FastGetTypeArrayProperty(JSThread *thread, JSTaggedValue receiver, in FastGetTypeArrayProperty()
747 bool ObjectFastOperator::TryStringOrSymbolToIndex(JSTaggedValue key, uint32_t *output) in TryStringOrSymbolToIndex()
756 JSTaggedValue ObjectFastOperator::FastSetTypeArrayProperty(JSThread *thread, JSTaggedValue receiver, in FastSetTypeArrayProperty()
778 bool ObjectFastOperator::IsSpecialContainer(JSType jsType) in IsSpecialContainer()
783 JSTaggedValue ObjectFastOperator::GetContainerProperty(JSThread *thread, JSTaggedValue receiver, ui… in GetContainerProperty()
822 JSTaggedValue ObjectFastOperator::SetContainerProperty(JSThread *thread, JSTaggedValue receiver, ui… in SetContainerProperty()
863 JSTaggedValue ObjectFastOperator::AddPropertyByIndex(JSThread *thread, JSTaggedValue receiver, uint… in AddPropertyByIndex()
878 int64_t ObjectFastOperator::TryToElementsIndex(JSTaggedValue key) in TryToElementsIndex()
898 bool ObjectFastOperator::GetNumFromString(const char *str, int len, int *index, int *num) in GetNumFromString()