Lines Matching refs:ObjectFastOperator
164 return ObjectFastOperator::CallGetter(thread, receiver, holder, value); in CallGetter()
170 return ObjectFastOperator::CallSetter(thread, receiver, value, accessorValue); in CallSetter()
173 template<ObjectFastOperator::Status status>
176 return ObjectFastOperator::GetPropertyByIndex<status>(thread, receiver, index); in GetPropertyByIndex()
179 template<ObjectFastOperator::Status status>
182 return ObjectFastOperator::GetPropertyByValue<status>(thread, receiver, key); in GetPropertyByValue()
185 template<ObjectFastOperator::Status status>
188 return ObjectFastOperator::GetPropertyByName<status>(thread, receiver, key); in GetPropertyByName()
191 template<ObjectFastOperator::Status status>
196 return ObjectFastOperator::SetPropertyByName<status>(thread, receiver, key, value); in SetPropertyByName()
199 template<ObjectFastOperator::Status status>
204 return ObjectFastOperator::SetPropertyByIndex<status>(thread, receiver, index, value); in SetPropertyByIndex()
207 template<ObjectFastOperator::Status status>
212 return ObjectFastOperator::SetPropertyByValue<status>(thread, receiver, key, value); in SetPropertyByValue()