Lines Matching refs:str1
60 ByteString(ByteStringView str1, ByteStringView str2);
236 inline ByteString operator+(ByteStringView str1, ByteStringView str2) {
237 return ByteString(str1, str2);
239 inline ByteString operator+(ByteStringView str1, const char* str2) {
240 return ByteString(str1, str2);
242 inline ByteString operator+(const char* str1, ByteStringView str2) {
243 return ByteString(str1, str2);
245 inline ByteString operator+(ByteStringView str1, char ch) {
246 return ByteString(str1, ByteStringView(ch));
251 inline ByteString operator+(const ByteString& str1, const ByteString& str2) {
252 return ByteString(str1.AsStringView(), str2.AsStringView());
254 inline ByteString operator+(const ByteString& str1, char ch) {
255 return ByteString(str1.AsStringView(), ByteStringView(ch));
260 inline ByteString operator+(const ByteString& str1, const char* str2) {
261 return ByteString(str1.AsStringView(), str2);
263 inline ByteString operator+(const char* str1, const ByteString& str2) {
264 return ByteString(str1, str2.AsStringView());
266 inline ByteString operator+(const ByteString& str1, ByteStringView str2) {
267 return ByteString(str1.AsStringView(), str2);
269 inline ByteString operator+(ByteStringView str1, const ByteString& str2) {
270 return ByteString(str1, str2.AsStringView());