Lines Matching refs:num_properties
1277 uint32_t num_properties; in ReadJSObject() local
1280 .To(&num_properties) || in ReadJSObject()
1282 num_properties != expected_num_properties) { in ReadJSObject()
1304 uint32_t num_properties; in ReadSparseJSArray() local
1308 .To(&num_properties) || in ReadSparseJSArray()
1311 num_properties != expected_num_properties || length != expected_length) { in ReadSparseJSArray()
1359 uint32_t num_properties; in ReadDenseJSArray() local
1363 .To(&num_properties) || in ReadDenseJSArray()
1366 num_properties != expected_num_properties || length != expected_length) { in ReadDenseJSArray()
1684 uint32_t num_properties = 0; in ReadJSObjectProperties() local
1768 num_properties = static_cast<uint32_t>(properties.size()); in ReadJSObjectProperties()
1778 num_properties++; in ReadJSObjectProperties()
1785 DCHECK_GE(num_properties, 1u); in ReadJSObjectProperties()
1789 for (;; num_properties++) { in ReadJSObjectProperties()
1794 return Just(num_properties); in ReadJSObjectProperties()
1846 uint32_t num_properties) { in SetPropertiesFromKeyValuePairs() argument
1847 for (unsigned i = 0; i < 2 * num_properties; i += 2) { in SetPropertiesFromKeyValuePairs()
1893 uint32_t num_properties; in ReadObjectUsingEntireBufferForLegacyFormat() local
1894 if (!ReadVarint<uint32_t>().To(&num_properties) || in ReadObjectUsingEntireBufferForLegacyFormat()
1895 stack.size() / 2 < num_properties) { in ReadObjectUsingEntireBufferForLegacyFormat()
1902 stack.size() - 2 * static_cast<size_t>(num_properties); in ReadObjectUsingEntireBufferForLegacyFormat()
1905 if (num_properties && in ReadObjectUsingEntireBufferForLegacyFormat()
1907 isolate_, js_object, &stack[begin_properties], num_properties) in ReadObjectUsingEntireBufferForLegacyFormat()
1921 uint32_t num_properties; in ReadObjectUsingEntireBufferForLegacyFormat() local
1923 if (!ReadVarint<uint32_t>().To(&num_properties) || in ReadObjectUsingEntireBufferForLegacyFormat()
1925 stack.size() / 2 < num_properties) { in ReadObjectUsingEntireBufferForLegacyFormat()
1935 stack.size() - 2 * static_cast<size_t>(num_properties); in ReadObjectUsingEntireBufferForLegacyFormat()
1936 if (num_properties && in ReadObjectUsingEntireBufferForLegacyFormat()
1938 isolate_, js_array, &stack[begin_properties], num_properties) in ReadObjectUsingEntireBufferForLegacyFormat()