Lines Matching refs:span
1091 v8::MemorySpan<const uint8_t> span;
1092 if (it->second->wasmBytecode().To(&span)) {
1093 if (span.size() > kWasmBytecodeMaxLength) {
1096 *bytecode = protocol::Binary::fromSpan(span.data(), span.size());
1109 v8::MemorySpan<const uint8_t> span;
1110 if (!it->second->wasmBytecode().To(&span))
1113 if (span.size() > kWasmBytecodeMaxLength) {
1116 *bytecode = protocol::Binary::fromSpan(span.data(), span.size());
1607 v8_crdtp::span<uint16_t>(aux.characters16(), aux.length()), &cbor);
1962 v8::MemorySpan<const uint8_t> span;
1963 if (script->wasmBytecode().To(&span)) {
1964 bytecode.reserve(span.size());
1965 bytecode.insert(bytecode.begin(), span.data(), span.data() + span.size());