HomeSort by relevance Sort by last modified time
    Searched defs:property_details (Results 1 - 3 of 3) sorted by null

  /external/v8/src/compiler/
js-global-object-specialization.cc 79 PropertyDetails property_details = property_cell->property_details(); local
84 if (!property_details.IsConfigurable() && property_details.IsReadOnly()) {
93 if (property_details.cell_type() != PropertyCellType::kMutable ||
94 property_details.IsConfigurable()) {
99 if (property_details.cell_type() == PropertyCellType::kConstant ||
100 property_details.cell_type() == PropertyCellType::kUndefined) {
108 if (property_details.cell_type() == PropertyCellType::kConstantType) {
160 PropertyDetails property_details = property_cell->property_details() local
    [all...]
js-create-lowering.cc 929 PropertyDetails const property_details = local
    [all...]
  /external/v8/src/
lookup.h 235 PropertyDetails property_details() const { function in class:v8::internal::BASE_EMBEDDED
240 return property_details().attributes();
242 bool IsConfigurable() const { return property_details().IsConfigurable(); }
243 bool IsReadOnly() const { return property_details().IsReadOnly(); }
244 bool IsEnumerable() const { return property_details().IsEnumerable(); }
246 return property_details().representation();

Completed in 189 milliseconds