Home
last modified time | relevance | path

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

/external/qemu/android/
Dboot-properties.c246 uint32_t property_count = 0; in boot_property_save_count() local
248 property_count++; in boot_property_save_count()
251 qemu_put_be32(f, property_count); in boot_property_save_count()
281 uint32_t i, property_count = qemu_get_be32(f); in boot_property_load() local
282 for (i = 0; i < property_count; i++) { in boot_property_load()
/external/chromium_org/content/renderer/pepper/
Dplugin_object.cc177 uint32_t property_count = 0; in WrapperClass_Enumerate() local
181 &property_count, &properties, in WrapperClass_Enumerate()
187 if (property_count > 0) { in WrapperClass_Enumerate()
189 malloc(sizeof(NPIdentifier) * property_count)); in WrapperClass_Enumerate()
191 for (uint32_t i = 0; i < property_count; ++i) { in WrapperClass_Enumerate()
218 for (uint32_t i = 0; i < property_count; ++i) in WrapperClass_Enumerate()
Dppb_var_deprecated_impl.cc213 uint32_t* property_count, in EnumerateProperties() argument
217 *property_count = 0; in EnumerateProperties()
234 *property_count = count; in EnumerateProperties()
/external/chromium_org/base/mac/
Dobjc_property_releaser.mm104 unsigned int property_count = 0;
105 objc_property_t* properties = class_copyPropertyList(class_, &property_count);
108 property_index < property_count;
/external/chromium_org/ppapi/cpp/dev/
Dscriptable_object_deprecated.cc64 uint32_t* property_count, in GetAllPropertyNames() argument
72 *property_count = static_cast<uint32_t>(props.size()); in GetAllPropertyNames()
/external/chromium_org/ppapi/c/dev/
Dppp_class_deprecated.h84 uint32_t* property_count,
Dppb_var_deprecated.h139 uint32_t* property_count,
/external/chromium_org/ppapi/proxy/
Dppb_var_deprecated_proxy.cc124 uint32_t* property_count, in EnumerateProperties() argument
130 *property_count = 0; in EnumerateProperties()
136 property_count, properties); in EnumerateProperties()
Dppp_class_proxy.cc89 uint32_t* property_count, in GetAllPropertyNames() argument
/external/v8/src/
Dv8natives.js72 var property_count = (methods.length >> 1) + (fields ? fields.length : 0);
73 if (property_count >= 4) {
74 %OptimizeObjectForAddingMultipleProperties(prototype, property_count);
Dparser.h87 int property_count() { return backing_[kPropertyCountIndex]; } in property_count() function
Dobjects.cc3335 int property_count = map_of_this->NumberOfDescribedProperties(); in NormalizeProperties() local
3337 property_count += expected_additional_properties; in NormalizeProperties()
3339 property_count += 2; // Make space for two more properties. in NormalizeProperties()
3342 { MaybeObject* maybe_dictionary = StringDictionary::Allocate(property_count); in NormalizeProperties()
Dparser.cc4512 expected_property_count = entry.property_count(); in ParseFunctionLiteral()
/external/chromium_org/v8/src/
Dv8natives.js91 var property_count = (methods.length >> 1) + (fields ? fields.length : 0);
92 if (property_count >= 4) {
93 %OptimizeObjectForAddingMultipleProperties(prototype, property_count);
Dparser.h69 int property_count() { return backing_[kPropertyCountIndex]; } in property_count() function
Dobjects.cc4582 int property_count = real_size; in NormalizeProperties() local
4584 property_count += expected_additional_properties; in NormalizeProperties()
4586 property_count += 2; // Make space for two more properties. in NormalizeProperties()
4589 isolate->factory()->NewNameDictionary(property_count); in NormalizeProperties()
Dparser.cc4203 expected_property_count = entry.property_count(); in ParseFunctionLiteral()
/external/clang/lib/Rewrite/Frontend/
DRewriteModernObjC.cpp6480 unsigned int property_count) { in Write__prop_list_t_TypeDecl() argument
6485 Result += utostr(property_count); Result += "];\n"; in Write__prop_list_t_TypeDecl()