Lines Matching defs:data

57 // back without breaking compatibility with data stored on disk. It is
71 // changes. Note that the ValueSerializer data can be stored on disk.
91 // version:uint32_t (if at beginning of data, sets version > 0)
97 // Oddballs (no data).
114 // byteLength:uint32_t, then raw data
136 // Boolean object. No data.
143 // String object, UTF-8 encoding. byteLength:uint32_t, then raw data.
145 // Regular expression, UTF-8 encoding. byteLength:uint32_t, raw data,
156 // Array buffer. byteLength:uint32_t, then raw data.
174 // The delegate is responsible for processing all following data.
178 // SharedArrayBuffer tag and its data.
180 // A list of (subtag: ErrorTag, [subtag dependent data]). See ErrorTag for
195 // removed on the Chromium side because there should be no real user data
235 // The error is a EvalError. No accompanying data.
237 // The error is a RangeError. No accompanying data.
239 // The error is a ReferenceError. No accompanying data.
241 // The error is a SyntaxError. No accompanying data.
243 // The error is a TypeError. No accompanying data.
245 // The error is a URIError. No accompanying data.
634 // Write out fast properties as long as they are only data properties and the
1172 base::Vector<const uint8_t> data,
1176 position_(data.begin()),
1177 end_(data.end()),
1182 ValueDeserializer::ValueDeserializer(Isolate* isolate, const uint8_t* data,
1186 position_(data),
1187 end_(data + size),
1366 bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) {
1368 *data = position_;
1391 // We had a bug which produced invalid version 13 data (see
1392 // crbug.com/1284506). This compatibility mode tries to first read the data
1399 // The deserialization code doesn't throw errors for invalid data. It throws
2443 Handle<Object>* data,
2446 Handle<Object> key = data[i];
2448 Handle<Object> value = data[i + 1];