Lines Matching refs:str1
221 inline ByteString operator+(const ByteStringView& str1,
223 return ByteString(str1, str2);
225 inline ByteString operator+(const ByteStringView& str1, const char* str2) {
226 return ByteString(str1, str2);
228 inline ByteString operator+(const char* str1, const ByteStringView& str2) {
229 return ByteString(str1, str2);
231 inline ByteString operator+(const ByteStringView& str1, char ch) {
232 return ByteString(str1, ByteStringView(ch));
237 inline ByteString operator+(const ByteString& str1, const ByteString& str2) {
238 return ByteString(str1.AsStringView(), str2.AsStringView());
240 inline ByteString operator+(const ByteString& str1, char ch) {
241 return ByteString(str1.AsStringView(), ByteStringView(ch));
246 inline ByteString operator+(const ByteString& str1, const char* str2) {
247 return ByteString(str1.AsStringView(), str2);
249 inline ByteString operator+(const char* str1, const ByteString& str2) {
250 return ByteString(str1, str2.AsStringView());
252 inline ByteString operator+(const ByteString& str1,
254 return ByteString(str1.AsStringView(), str2);
256 inline ByteString operator+(const ByteStringView& str1,
258 return ByteString(str1, str2.AsStringView());