Lines Matching refs:resultBuf
4239 std::ostringstream resultBuf; in Str() local
4243 resultBuf << '*'; in Str()
4246 resultBuf << '\0'; in Str()
4247 args.GetReturnValue()->SetString(ByteStringView(resultBuf.str().c_str())); in Str()
4255 resultBuf << '*'; in Str()
4261 resultBuf << ' '; in Str()
4264 resultBuf << pData; in Str()
4266 args.GetReturnValue()->SetString(ByteStringView(resultBuf.str().c_str())); in Str()
4276 resultBuf << ' '; in Str()
4281 resultBuf << pData[i]; in Str()
4285 resultBuf << '.'; in Str()
4293 resultBuf << pData[u]; in Str()
4298 resultBuf << '0'; in Str()
4301 resultBuf << '\0'; in Str()
4302 args.GetReturnValue()->SetString(ByteStringView(resultBuf.str().c_str())); in Str()