Lines Matching full:o
88 …// 13. Let O be OrdinaryCreateFromConstructor OrdinaryCreateFromConstructor(NewTarget, "%DataViewP… in DataViewConstructor()
92 // 14. ReturnIfAbrupt(O). in DataViewConstructor()
95 // 15. Set O’s [[DataView]] internal slot to true. in DataViewConstructor()
97 // 16. Set O’s [[ViewedArrayBuffer]] internal slot to buffer. in DataViewConstructor()
99 // 17. Set O’s [[ByteLength]] internal slot to viewByteLength. in DataViewConstructor()
101 // 18. Set O’s [[ByteOffset]] internal slot to offset. in DataViewConstructor()
103 // 19. Return O. in DataViewConstructor()
114 // 1. Let O be the this value. in GetBuffer()
116 // 2. f Type(O) is not Object, throw a TypeError exception. in GetBuffer()
118 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in GetBuffer()
120 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetBuffer()
122 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetBuffer()
125 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetBuffer()
138 // 1. Let O be the this value. in GetByteLength()
140 // 2. If Type(O) is not Object, throw a TypeError exception. in GetByteLength()
142 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in GetByteLength()
144 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetByteLength()
146 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetByteLength()
149 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetByteLength()
155 // 6. Let size be the value of O’s [[ByteLength]] internal slot. in GetByteLength()
168 // 1. Let O be the this value. in GetOffset()
170 // 2. If Type(O) is not Object, throw a TypeError exception. in GetOffset()
172 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in GetOffset()
174 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetOffset()
176 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetOffset()
179 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetOffset()
185 // 6. Let offset be the value of O’s [[ByteOffset]] internal slot. in GetOffset()
336 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in GetViewValue()
390 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in SetViewValue()