Lines Matching refs:str
303 return oss.str();
410 std::ostringstream str;
415 str << cur_info->ldinfo_filename << "(" << member_name << ")";
416 list.emplace_back(str.str());
417 str.str("");
461 char* str = new char[size];
463 CP_UTF8, 0, module_name, -1, str, size, nullptr, nullptr);
464 list.emplace_back(str);
476 void FWrite(FILE* file, const std::string& str) {
479 fwrite(str.data(), str.size(), 1, file);
498 int n = MultiByteToWideChar(CP_UTF8, 0, str.data(), str.size(), nullptr, 0);
501 MultiByteToWideChar(CP_UTF8, 0, str.data(), str.size(), wbuf.data(), n);
507 __android_log_print(ANDROID_LOG_ERROR, "nodejs", "%s", str.data());