Lines Matching defs:property

26 #include "src/objects/property-descriptor.h"
1464 // 3. For each value property of fieldNames, do
1469 Handle<String> property = Handle<String>::cast(property_obj);
1470 // a. Let value be ? Get(fields, property).
1473 isolate, value, JSReceiver::GetProperty(isolate, fields, property),
1482 // i. If requiredFields contains property, then
1484 String::Equals(isolate, property, factory->day_string())) ||
1487 String::Equals(isolate, property, factory->timeZone_string())) ||
1489 String::Equals(isolate, property, factory->offset_string()))) {
1495 // 1. If property is in the Property column of Table 13, then
1497 if (String::Equals(isolate, property, factory->hour_string()) ||
1498 String::Equals(isolate, property, factory->minute_string()) ||
1499 String::Equals(isolate, property, factory->second_string()) ||
1500 String::Equals(isolate, property, factory->millisecond_string()) ||
1501 String::Equals(isolate, property, factory->microsecond_string()) ||
1502 String::Equals(isolate, property, factory->nanosecond_string())) {
1509 // i. If property is in the Property column of Table 13 and there is a
1514 if (String::Equals(isolate, property, factory->month_string()) ||
1515 String::Equals(isolate, property, factory->day_string())) {
1518 } else if (String::Equals(isolate, property, factory->year_string()) ||
1519 String::Equals(isolate, property, factory->hour_string()) ||
1520 String::Equals(isolate, property, factory->minute_string()) ||
1521 String::Equals(isolate, property, factory->second_string()) ||
1522 String::Equals(isolate, property,
1524 String::Equals(isolate, property,
1526 String::Equals(isolate, property,
1528 String::Equals(isolate, property, factory->eraYear_string())) {
1531 } else if (String::Equals(isolate, property,
1533 String::Equals(isolate, property, factory->offset_string()) ||
1534 String::Equals(isolate, property, factory->era_string())) {
1540 // d. Perform ! CreateDataPropertyOrThrow(result, property, value).
1541 CHECK(JSReceiver::CreateDataProperty(isolate, result, property, value,
1572 Handle<String> property, InstanceType type) {
1575 isolate, function, Object::GetProperty(isolate, calendar, property), T);
1578 NewTypeError(MessageTemplate::kCalledNonCallable, property),
3115 /* 2. Let result be ? Invoke(calendar, property, « dateLike »). */ \
3346 // a. Let property be the Property value of the current row.
3347 // b. Let value be ? Get(temporalTimeLike, property).