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

  /external/v8/src/
lookup.h 226 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();
239 PropertyLocation location() const { return property_details().location(); }
240 PropertyConstness constness() const { return property_details().constness(); }
  /external/v8/src/compiler/
js-create-lowering.cc 1152 PropertyDetails const property_details = local
    [all...]
js-native-context-specialization.cc 330 PropertyDetails property_details = property_cell->property_details(); local
332 PropertyCellType property_cell_type = property_details.cell_type();
336 if (property_details.IsReadOnly()) {
371 if (!property_details.IsConfigurable() && property_details.IsReadOnly()) {
377 if (property_details.cell_type() != PropertyCellType::kMutable ||
378 property_details.IsConfigurable()) {
383 if (property_details.cell_type() == PropertyCellType::kConstant ||
384 property_details.cell_type() == PropertyCellType::kUndefined)
    [all...]

Completed in 116 milliseconds