• Home
  • Raw
  • Download

Lines Matching full:slot

65     // 2. If arg has a [[ViewedArrayBuffer]] internal slot, return true.  in IsView()
92 // 3. If O does not have an [[ArrayBufferData]] internal slot, throw a TypeError exception. in GetByteLength()
94 THROW_TYPE_ERROR_AND_RETURN(thread, "don't have internal slot", JSTaggedValue::Exception()); in GetByteLength()
101 // 5. Let length be the value of O’s [[ArrayBufferByteLength]] internal slot. in GetByteLength()
122 // 3. If O does not have an [[ArrayBufferData]] internal slot, throw a TypeError exception. in Slice()
124 THROW_TYPE_ERROR_AND_RETURN(thread, "don't have internal slot", JSTaggedValue::Exception()); in Slice()
130 // 5. Let len be the value of O’s [[ArrayBufferByteLength]] internal slot. in Slice()
181 // 17. If new does not have an [[ArrayBufferData]] internal slot, throw a TypeError exception. in Slice()
183 …THROW_TYPE_ERROR_AND_RETURN(thread, "don't have bufferdata internal slot", JSTaggedValue::Exceptio… in Slice()
194 …// 20. If the value of new’s [[ArrayBufferByteLength]] internal slot < newLen, throw a TypeError e… in Slice()
205 // 23. Let fromBuf be the value of O’s [[ArrayBufferData]] internal slot. in Slice()
207 // 24. Let toBuf be the value of new’s [[ArrayBufferData]] internal slot. in Slice()
237 // 6. Set obj’s [[ArrayBufferData]] internal slot to block. in AllocateArrayBuffer()
239 // 7. Set obj’s [[ArrayBufferByteLength]] internal slot to byteLength. in AllocateArrayBuffer()
251 // 1. Assert: Type(arrayBuffer) is Object and it has an [[ArrayBufferData]] internal slot. in IsDetachedBuffer()
255 // 2. If arrayBuffer’s [[ArrayBufferData]] internal slot is null, return true. in IsDetachedBuffer()
265 // 1. Assert: Type(srcBuffer) is Object and it has an [[ArrayBufferData]] internal slot. in CloneArrayBuffer()
283 // 4. Let srcLength be the value of srcBuffer’s [[ArrayBufferByteLength]] internal slot. in CloneArrayBuffer()
298 // 11. Let targetBlock be the value of targetBuffer’s [[ArrayBufferData]] internal slot. in CloneArrayBuffer()
301 // 7. Let srcBlock be the value of srcBuffer’s [[ArrayBufferData]] internal slot. in CloneArrayBuffer()