Lines Matching defs:prop
880 // i. Let prop be the property name.
881 // ii. Let value be ? Get(options, prop).
892 for (const auto& prop : props) {
893 // i. Let prop be the property name.
894 // ii. Let value be ? Get(options, prop)
895 Maybe<bool> maybe_undefined = IsPropertyUndefined(isolate, options, prop);
908 // i. Perform ? CreateDataPropertyOrThrow(options, prop, "numeric").
909 for (const auto& prop : props) {
912 isolate, options, factory->NewStringFromAsciiChecked(prop.c_str()),
1744 // i. Let prop be the name given in the Property column of the row.
1745 // ii. Let value be ? GetOption(options, prop, "string", « the strings
1756 // iii. Set opt.[[<prop>]] to value.
1812 // i. Let prop be the name given in the Property column of the row.
1813 // ii. Let p be opt.[[<prop>]].
1817 std::string prop;
1821 prop.assign(item.property);
1825 if (!prop.empty()) {
1829 if (prop.empty() && skeleton.find("S") != std::string::npos) {
1830 prop.assign("fractionalSecondDigits");
1832 if (!prop.empty()) {
1836 factory->NewStringFromAsciiChecked(prop.c_str()),