Searched defs:property_details (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/compiler/
H A Djs-global-object-specialization.cc90 PropertyDetails property_details = property_cell->property_details(); local
95 if (!property_details.IsConfigurable() && property_details.IsReadOnly()) {
104 if (property_details.cell_type() != PropertyCellType::kMutable ||
105 property_details.IsConfigurable()) {
110 if (property_details.cell_type() == PropertyCellType::kConstant ||
111 property_details.cell_type() == PropertyCellType::kUndefined) {
120 if (property_details.cell_type() == PropertyCellType::kConstantType) {
171 PropertyDetails property_details local
[all...]
H A Djs-create-lowering.cc1082 PropertyDetails const property_details = local
1084 if (property_details.type() != DATA) continue;
1106 } else if (property_details.representation().IsDouble()) {
1124 } else if (property_details.representation().IsSmi()) {
/external/v8/src/
H A Dlookup.h226 PropertyDetails property_details() const { function in class:v8::internal::BASE_EMBEDDED
231 return property_details().attributes();
233 bool IsConfigurable() const { return property_details().IsConfigurable(); }
234 bool IsReadOnly() const { return property_details().IsReadOnly(); }
235 bool IsEnumerable() const { return property_details().IsEnumerable(); }
237 return property_details().representation();

Completed in 246 milliseconds