Lines Matching refs:num_properties

1397   uint32_t num_properties;  in ReadJSObject()  local
1400 .To(&num_properties) || in ReadJSObject()
1402 num_properties != expected_num_properties) { in ReadJSObject()
1424 uint32_t num_properties; in ReadSparseJSArray() local
1428 .To(&num_properties) || in ReadSparseJSArray()
1431 num_properties != expected_num_properties || length != expected_length) { in ReadSparseJSArray()
1479 uint32_t num_properties; in ReadDenseJSArray() local
1483 .To(&num_properties) || in ReadDenseJSArray()
1486 num_properties != expected_num_properties || length != expected_length) { in ReadDenseJSArray()
1899 uint32_t num_properties = 0; in ReadJSObjectProperties() local
1986 num_properties = static_cast<uint32_t>(properties.size()); in ReadJSObjectProperties()
1996 num_properties++; in ReadJSObjectProperties()
2003 DCHECK_GE(num_properties, 1u); in ReadJSObjectProperties()
2007 for (;; num_properties++) { in ReadJSObjectProperties()
2012 return Just(num_properties); in ReadJSObjectProperties()
2064 uint32_t num_properties) { in SetPropertiesFromKeyValuePairs() argument
2065 for (unsigned i = 0; i < 2 * num_properties; i += 2) { in SetPropertiesFromKeyValuePairs()
2111 uint32_t num_properties; in ReadObjectUsingEntireBufferForLegacyFormat() local
2112 if (!ReadVarint<uint32_t>().To(&num_properties) || in ReadObjectUsingEntireBufferForLegacyFormat()
2113 stack.size() / 2 < num_properties) { in ReadObjectUsingEntireBufferForLegacyFormat()
2120 stack.size() - 2 * static_cast<size_t>(num_properties); in ReadObjectUsingEntireBufferForLegacyFormat()
2123 if (num_properties && in ReadObjectUsingEntireBufferForLegacyFormat()
2125 isolate_, js_object, &stack[begin_properties], num_properties) in ReadObjectUsingEntireBufferForLegacyFormat()
2139 uint32_t num_properties; in ReadObjectUsingEntireBufferForLegacyFormat() local
2141 if (!ReadVarint<uint32_t>().To(&num_properties) || in ReadObjectUsingEntireBufferForLegacyFormat()
2143 stack.size() / 2 < num_properties) { in ReadObjectUsingEntireBufferForLegacyFormat()
2153 stack.size() - 2 * static_cast<size_t>(num_properties); in ReadObjectUsingEntireBufferForLegacyFormat()
2154 if (num_properties && in ReadObjectUsingEntireBufferForLegacyFormat()
2156 isolate_, js_array, &stack[begin_properties], num_properties) in ReadObjectUsingEntireBufferForLegacyFormat()