Lines Matching refs:property
179 JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledTypeString());
181 JSLocale::GetOptionOfString(thread, prOptions, property, { TypeOption::CARDINAL, TypeOption::ORDINAL },
311 JSHandle<JSTaggedValue> property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledLocaleString());
314 JSObject::DefineOwnProperty(thread, options, property, localeDesc);
317 property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledTypeString());
325 JSObject::DefineOwnProperty(thread, options, property, typeDesc);
328 property = JSHandle<JSTaggedValue>::Cast(globalConst->GetHandledMinimumIntegerDigitsString());
330 JSObject::CreateDataPropertyOrThrow(thread, options, property, minimumIntegerDigits);
336 property = globalConst->GetHandledMinimumSignificantDigitsString();
338 JSObject::CreateDataPropertyOrThrow(thread, options, property, minimumSignificantDigits);
341 property = globalConst->GetHandledMaximumSignificantDigitsString();
343 JSObject::CreateDataPropertyOrThrow(thread, options, property, maximumSignificantDigits);
347 property = globalConst->GetHandledMinimumFractionDigitsString();
349 JSObject::CreateDataPropertyOrThrow(thread, options, property, minimumFractionDigits);
352 property = globalConst->GetHandledMaximumFractionDigitsString();
354 JSObject::CreateDataPropertyOrThrow(thread, options, property, maximumFractionDigits);
377 property = globalConst->GetHandledPluralCategoriesString();
379 JSObject::CreateDataPropertyOrThrow(thread, options, property, JSHandle<JSTaggedValue>::Cast(jsPluralCategories));