Lines Matching defs:thread
27 GlobalIntlHelper::GlobalIntlHelper(JSThread *thread,
30 const GlobalEnvConstants *globalConst = thread->GlobalConstants();
133 std::map<std::string, std::string> GlobalIntlHelper::OptionsToMap(JSThread *thread,
141 optionsObject = JSTaggedValue::ToObject(thread, options);
157 OperationResult operationResult = JSObject::GetProperty(thread, optionsObject, opt.second);
159 std::string valueStr = std::string(EcmaConvertToStr(JSTaggedValue::ToString(thread,
205 std::vector<std::string> GlobalIntlHelper::LocalesToVector(JSThread *thread,
208 JSHandle<TaggedArray> tArray = intl::LocaleHelper::CanonicalizeLocaleList(thread, locales);
209 return TaggedArrayToVector(thread, tArray);
212 std::vector<std::string> GlobalIntlHelper::TaggedArrayToVector(JSThread *thread,
216 JSMutableHandle<EcmaString> availableItem(thread, JSTaggedValue::Undefined());
219 availableItem.Update(taggedarray->Get(thread, i));