Lines Matching defs:temp
243 std::string temp;
248 name.toUTF8String(temp);
249 napi_create_string_utf8(env, PseudoLocalizationProcessor(temp).c_str(), NAPI_AUTO_LENGTH, &result);
336 LocaleInfo *temp = new LocaleInfo(*it);
337 if (LocaleMatcher::Match(requestLocale, temp)) {
338 candidateLocales.push_back(temp);
340 delete temp;
609 std::string temp;
610 unistr.toUTF8String(temp);
612 status = napi_create_string_utf8(env, temp.c_str(), NAPI_AUTO_LENGTH, &value);
643 const char *temp = nullptr;
647 while ((temp = strenum->next(nullptr, icuStatus)) != nullptr) {
652 napi_create_string_utf8(env, temp, strlen(temp), &val);
1262 std::string temp;
1263 obj->brkiter_->GetText(temp);
1264 status = napi_create_string_utf8(env, temp.c_str(), NAPI_AUTO_LENGTH, &value);