Home
last modified time | relevance | path

Searched refs:property_count (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/js/
Dprologue.js139 var property_count = (methods.length >> 1) + (fields ? fields.length : 0);
140 if (property_count >= 4) {
141 %OptimizeObjectForAddingMultipleProperties(prototype, property_count);
/external/v8/src/parsing/
Dparser.h233 int property_count() { return backing_[kPropertyCountIndex]; } in property_count() function
Dparser.cc4374 *expected_property_count = entry.property_count(); in SkipLazyFunctionBody()
/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp6364 unsigned int property_count) { in Write__prop_list_t_TypeDecl() argument
6369 Result += utostr(property_count); Result += "];\n"; in Write__prop_list_t_TypeDecl()
/external/v8/src/
Dobjects.cc5548 int property_count = real_size; in MigrateFastToSlow() local
5550 property_count += expected_additional_properties; in MigrateFastToSlow()
5552 property_count += 2; // Make space for two more properties. in MigrateFastToSlow()
5555 NameDictionary::New(isolate, property_count); in MigrateFastToSlow()