Home
last modified time | relevance | path

Searched refs:number_of_properties (Results 1 – 7 of 7) sorted by relevance

/external/v8/test/mjsunit/regress/
Dregress-crbug-134055.js34 function base(number_of_properties) { argument
36 for (var i = 0; i < number_of_properties; i++) {
39 result.foo = number_of_properties;
/external/v8/src/runtime/
Druntime-literals.cc21 int number_of_properties = properties_length / 2; in ComputeObjectLiteralMap() local
28 number_of_properties--; in ComputeObjectLiteralMap()
33 context, number_of_properties, is_strong, is_result_from_cache); in ComputeObjectLiteralMap()
/external/v8/src/
Dapi-natives.cc164 for (int c = 0; c < data->number_of_properties(); c++) { in ConfigureInstance()
341 templ->set_number_of_properties(templ->number_of_properties() + 1); in AddPropertyToPropertyList()
Dfactory.cc2303 int number_of_properties, in ObjectLiteralMapFromCache() argument
2309 if (number_of_properties > kMapCacheSize || in ObjectLiteralMapFromCache()
2312 Handle<Map> map = Map::Create(isolate(), number_of_properties); in ObjectLiteralMapFromCache()
2317 if (number_of_properties == 0) { in ObjectLiteralMapFromCache()
2325 int cache_index = number_of_properties - 1; in ObjectLiteralMapFromCache()
2349 Handle<Map> map = Map::Create(isolate(), number_of_properties); in ObjectLiteralMapFromCache()
Dfactory.h650 int number_of_properties,
Dobjects.h10421 inline int number_of_properties() const;
Dobjects-inl.h5518 SMI_ACCESSORS(TemplateInfo, number_of_properties, kNumberOfProperties) in ACCESSORS()